ETH Price: $3,232.54 (+2.85%)
Gas: 4 Gwei

Token

Meta Capital (MCAP)
 

Overview

Max Total Supply

1,000,000,000 MCAP

Holders

646

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Filtered by Token Holder
Wormhole Network Exploiter
Balance
0.92 MCAP

Value
$0.00
0x629e7da20197a5429d30da36e77d06cdf796b71a
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:
MCAP

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-01-04
*/

// 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 MCAP 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 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("Meta Capital", "MCAP") {

        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;

        /*
            _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 + 4 &&
            !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,
            DEAD_ADDRESS,
            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":"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"}]

608060405260036006556003600755600960085560098055670de0b6b3a7640000600c556200005b61271062000047600a600c54620003ea60201b620017c11790919060201c565b6200045160201b620018211790919060201c565b600d556200008261271062000047604b600c54620003ea60201b620017c11790919060201c565b600e55620000a9612710620000476096600c54620003ea60201b620017c11790919060201c565b600f55348015620000b957600080fd5b50604051620033a7380380620033a783398181016040526020811015620000df57600080fd5b5051604080518082018252600c81526b13595d184810d85c1a5d185b60a21b60208281019182528351808501909452600484526304d4341560e41b908401528151919291620001319160039162000b02565b5080516200014790600490602084019062000b02565b50505060006200015c6200049b60201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620001f857600080fd5b505afa1580156200020d573d6000803e3d6000fd5b505050506040513d60208110156200022457600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039092169163c9c65396913091737a250d5630b4cf539739df2c5dacb4c659f2488d9163ad5c4648916004808301926020929190829003018186803b1580156200028657600080fd5b505afa1580156200029b573d6000803e3d6000fd5b505050506040513d6020811015620002b257600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b1580156200030557600080fd5b505af11580156200031a573d6000803e3d6000fd5b505050506040513d60208110156200033157600080fd5b5051601180546001600160a01b0319166001600160a01b039092169190911790556200037530737a250d5630b4cf539739df2c5dacb4c659f2488d6000196200049f565b6200038b620003836200058f565b60016200059e565b620003983060016200059e565b601154620003b1906001600160a01b0316600162000622565b601080546001600160a01b0319166001600160a01b038316179055620003e3620003da6200058f565b600c5462000709565b5062000b9e565b600082620003fb575060006200044b565b828202828482816200040957fe5b0414620004485760405162461bcd60e51b81526004018080602001828103825260218152602001806200331c6021913960400191505060405180910390fd5b90505b92915050565b60006200044883836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506200081860201b60201c565b3390565b6001600160a01b038316620004e65760405162461bcd60e51b81526004018080602001828103825260248152602001806200335d6024913960400191505060405180910390fd5b6001600160a01b0382166200052d5760405162461bcd60e51b8152600401808060200182810382526022815260200180620032d86022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6005546001600160a01b031690565b620005a86200049b565b6005546001600160a01b03908116911614620005fa576040805162461bcd60e51b815260206004820181905260248201526000805160206200333d833981519152604482015290519081900360640190fd5b620006068282620008bf565b620006128282620009bb565b6200061e828262000622565b5050565b6200062c6200049b565b6005546001600160a01b039081169116146200067e576040805162461bcd60e51b815260206004820181905260248201526000805160206200333d833981519152604482015290519081900360640190fd5b6001600160a01b03821660009081526016602052604090205460ff1615158115151415620006de5760405162461bcd60e51b8152600401808060200182810382526026815260200180620033816026913960400191505060405180910390fd5b6001600160a01b03919091166000908152601660205260409020805460ff1916911515919091179055565b6001600160a01b03821662000765576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b620007736000838362000aa2565b6200078f8160025462000aa760201b620018631790919060201c565b6002556001600160a01b03821660009081526020818152604090912054620007c29183906200186362000aa7821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b60008183620008a85760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156200086c57818101518382015260200162000852565b50505050905090810190601f1680156200089a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581620008b557fe5b0495945050505050565b620008c96200049b565b6005546001600160a01b039081169116146200091b576040805162461bcd60e51b815260206004820181905260248201526000805160206200333d833981519152604482015290519081900360640190fd5b6001600160a01b03821660009081526014602052604090205460ff161515811515141562000990576040805162461bcd60e51b815260206004820152601f60248201527f466565733a20416c72656164792073657420746f20746869732076616c756500604482015290519081900360640190fd5b6001600160a01b03919091166000908152601460205260409020805460ff1916911515919091179055565b620009c56200049b565b6005546001600160a01b0390811691161462000a17576040805162461bcd60e51b815260206004820181905260248201526000805160206200333d833981519152604482015290519081900360640190fd5b6001600160a01b03821660009081526015602052604090205460ff161515811515141562000a775760405162461bcd60e51b8152600401808060200182810382526022815260200180620032fa6022913960400191505060405180910390fd5b6001600160a01b03919091166000908152601560205260409020805460ff1916911515919091179055565b505050565b60008282018381101562000448576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1062000b4557805160ff191683800117855562000b75565b8280016001018555821562000b75579182015b8281111562000b7557825182559160200191906001019062000b58565b5062000b8392915062000b87565b5090565b5b8082111562000b83576000815560010162000b88565b61272a8062000bae6000396000f3fe6080604052600436106102815760003560e01c80638036d5901161014f578063bf95793d116100c1578063eb91e6511161007a578063eb91e6511461092e578063f11a24d314610961578063f2fde38b14610976578063f6374342146109a9578063fb0ecfa4146109be578063fe575a87146109ee57610288565b8063bf95793d146107fa578063c02466681461082d578063cd49513f14610868578063dd62ed3e146108a3578063e16830a8146108de578063e9b786cb1461091957610288565b806395d89b411161011357806395d89b41146106f85780639cfe42da1461070d578063a457c2d714610740578063a9059cbb14610779578063af465a27146107b2578063b40f9469146107c757610288565b80638036d5901461068f57806386917524146106a45780638da5cb5b146106b9578063904236d1146106ce57806391cca3db146106e357610288565b806349bd5a5e116101f35780636ac9a870116101ac5780636ac9a870146105c35780636d7adcad146105f357806370a0823114610608578063715018a61461063b578063715492aa14610650578063728d41c91461066557610288565b806349bd5a5e146104fd5780634e6fd6c4146105125780634fbee193146105275780636402511e1461055a57806364f5a5bb1461058457806366a88d96146105ae57610288565b80631a8145bb116102455780631a8145bb146103f157806323b872dd1461040657806330280a7114610449578063307aebc914610484578063313ce5671461049957806339509351146104c457610288565b806306fdde031461028d578063095ea7b3146103175780631694505e1461036457806318160ddd146103955780631816467f146103bc57610288565b3661028857005b600080fd5b34801561029957600080fd5b506102a2610a21565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102dc5781810151838201526020016102c4565b50505050905090810190601f1680156103095780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561032357600080fd5b506103506004803603604081101561033a57600080fd5b506001600160a01b038135169060200135610ab7565b604080519115158252519081900360200190f35b34801561037057600080fd5b50610379610ad5565b604080516001600160a01b039092168252519081900360200190f35b3480156103a157600080fd5b506103aa610aed565b60408051918252519081900360200190f35b3480156103c857600080fd5b506103ef600480360360208110156103df57600080fd5b50356001600160a01b0316610af3565b005b3480156103fd57600080fd5b506103aa610b6d565b34801561041257600080fd5b506103506004803603606081101561042957600080fd5b506001600160a01b03813581169160208101359091169060400135610b73565b34801561045557600080fd5b506103ef6004803603604081101561046c57600080fd5b506001600160a01b0381351690602001351515610bfa565b34801561049057600080fd5b50610350610cdb565b3480156104a557600080fd5b506104ae610ce9565b6040805160ff9092168252519081900360200190f35b3480156104d057600080fd5b50610350600480360360408110156104e757600080fd5b506001600160a01b038135169060200135610cee565b34801561050957600080fd5b50610379610d3c565b34801561051e57600080fd5b50610379610d4b565b34801561053357600080fd5b506103506004803603602081101561054a57600080fd5b50356001600160a01b0316610d51565b34801561056657600080fd5b506103ef6004803603602081101561057d57600080fd5b5035610d66565b34801561059057600080fd5b506103ef600480360360208110156105a757600080fd5b5035610dc9565b3480156105ba57600080fd5b506103aa610e2c565b3480156105cf57600080fd5b506103ef600480360360408110156105e657600080fd5b5080359060200135610e32565b3480156105ff57600080fd5b506103aa610e95565b34801561061457600080fd5b506103aa6004803603602081101561062b57600080fd5b50356001600160a01b0316610e9b565b34801561064757600080fd5b506103ef610eb6565b34801561065c57600080fd5b506103ef610f58565b34801561067157600080fd5b506103ef6004803603602081101561068857600080fd5b5035611022565b34801561069b57600080fd5b506103aa611085565b3480156106b057600080fd5b506103aa61108b565b3480156106c557600080fd5b50610379611091565b3480156106da57600080fd5b506103aa6110a0565b3480156106ef57600080fd5b506103796110a6565b34801561070457600080fd5b506102a26110b5565b34801561071957600080fd5b506103ef6004803603602081101561073057600080fd5b50356001600160a01b0316611116565b34801561074c57600080fd5b506103506004803603604081101561076357600080fd5b506001600160a01b038135169060200135611245565b34801561078557600080fd5b506103506004803603604081101561079c57600080fd5b506001600160a01b0381351690602001356112ad565b3480156107be57600080fd5b506103aa6112c1565b3480156107d357600080fd5b50610350600480360360208110156107ea57600080fd5b50356001600160a01b03166112c7565b34801561080657600080fd5b506103506004803603602081101561081d57600080fd5b50356001600160a01b03166112dc565b34801561083957600080fd5b506103ef6004803603604081101561085057600080fd5b506001600160a01b03813516906020013515156112f1565b34801561087457600080fd5b506103ef6004803603604081101561088b57600080fd5b506001600160a01b03813516906020013515156113e8565b3480156108af57600080fd5b506103aa600480360360408110156108c657600080fd5b506001600160a01b0381358116916020013516611462565b3480156108ea57600080fd5b506103ef6004803603604081101561090157600080fd5b506001600160a01b038135169060200135151561148d565b34801561092557600080fd5b506103aa61156e565b34801561093a57600080fd5b506103ef6004803603602081101561095157600080fd5b50356001600160a01b0316611574565b34801561096d57600080fd5b506103aa611644565b34801561098257600080fd5b506103ef6004803603602081101561099957600080fd5b50356001600160a01b031661164a565b3480156109b557600080fd5b506103aa611743565b3480156109ca57600080fd5b506103ef600480360360408110156109e157600080fd5b5080359060200135611749565b3480156109fa57600080fd5b5061035060048036036020811015610a1157600080fd5b50356001600160a01b03166117ac565b60038054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610aad5780601f10610a8257610100808354040283529160200191610aad565b820191906000526020600020905b815481529060010190602001808311610a9057829003601f168201915b5050505050905090565b6000610acb610ac46118bd565b84846118c1565b5060015b92915050565b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b60025490565b610afb6118bd565b6005546001600160a01b03908116911614610b4b576040805162461bcd60e51b81526020600482018190526024820152600080516020612620833981519152604482015290519081900360640190fd5b601080546001600160a01b0319166001600160a01b0392909216919091179055565b600a5481565b6000610b808484846119ad565b610bf084610b8c6118bd565b610beb856040518060600160405280602881526020016125f8602891396001600160a01b038a16600090815260016020526040812090610bca6118bd565b6001600160a01b031681526020810191909152604001600020549190611ee4565b6118c1565b5060019392505050565b610c026118bd565b6005546001600160a01b03908116911614610c52576040805162461bcd60e51b81526020600482018190526024820152600080516020612620833981519152604482015290519081900360640190fd5b6001600160a01b03821660009081526015602052604090205460ff1615158115151415610cb05760405162461bcd60e51b81526004018080602001828103825260228152602001806125b56022913960400191505060405180910390fd5b6001600160a01b03919091166000908152601560205260409020805460ff1916911515919091179055565b601354610100900460ff1681565b600990565b6000610acb610cfb6118bd565b84610beb8560016000610d0c6118bd565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611863565b6011546001600160a01b031681565b61dead81565b60146020526000908152604090205460ff1681565b610d6e6118bd565b6005546001600160a01b03908116911614610dbe576040805162461bcd60e51b81526020600482018190526024820152600080516020612620833981519152604482015290519081900360640190fd5b633b9aca0002600d55565b610dd16118bd565b6005546001600160a01b03908116911614610e21576040805162461bcd60e51b81526020600482018190526024820152600080516020612620833981519152604482015290519081900360640190fd5b633b9aca0002600e55565b600f5481565b610e3a6118bd565b6005546001600160a01b03908116911614610e8a576040805162461bcd60e51b81526020600482018190526024820152600080516020612620833981519152604482015290519081900360640190fd5b600791909155600955565b600b5481565b6001600160a01b031660009081526020819052604090205490565b610ebe6118bd565b6005546001600160a01b03908116911614610f0e576040805162461bcd60e51b81526020600482018190526024820152600080516020612620833981519152604482015290519081900360640190fd5b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b610f606118bd565b6005546001600160a01b03908116911614610fb0576040805162461bcd60e51b81526020600482018190526024820152600080516020612620833981519152604482015290519081900360640190fd5b601354610100900460ff161561100d576040805162461bcd60e51b815260206004820152601c60248201527f436f6e747261637420697320616c7265616479206c61756e6368656400000000604482015290519081900360640190fd5b6013805461ff00191661010017905543601255565b61102a6118bd565b6005546001600160a01b0390811691161461107a576040805162461bcd60e51b81526020600482018190526024820152600080516020612620833981519152604482015290519081900360640190fd5b633b9aca0002600f55565b600e5481565b600d5481565b6005546001600160a01b031690565b60095481565b6010546001600160a01b031681565b60048054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610aad5780601f10610a8257610100808354040283529160200191610aad565b61111e6118bd565b6005546001600160a01b0390811691161461116e576040805162461bcd60e51b81526020600482018190526024820152600080516020612620833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526017602052604090205460ff16156111dc576040805162461bcd60e51b815260206004820152601e60248201527f426c61636b6c6973743a20416c726561647920626c61636b6c69737465640000604482015290519081900360640190fd5b6011546001600160a01b0382811691161415611237576040805162461bcd60e51b815260206004820152601560248201527421b0b73737ba10313630b1b5b634b9ba103830b4b960591b604482015290519081900360640190fd5b611242816001611f7b565b50565b6000610acb6112526118bd565b84610beb856040518060600160405280602581526020016126d0602591396001600061127c6118bd565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611ee4565b6000610acb6112ba6118bd565b84846119ad565b600c5481565b60166020526000908152604090205460ff1681565b60156020526000908152604090205460ff1681565b6112f96118bd565b6005546001600160a01b03908116911614611349576040805162461bcd60e51b81526020600482018190526024820152600080516020612620833981519152604482015290519081900360640190fd5b6001600160a01b03821660009081526014602052604090205460ff16151581151514156113bd576040805162461bcd60e51b815260206004820152601f60248201527f466565733a20416c72656164792073657420746f20746869732076616c756500604482015290519081900360640190fd5b6001600160a01b03919091166000908152601460205260409020805460ff1916911515919091179055565b6113f06118bd565b6005546001600160a01b03908116911614611440576040805162461bcd60e51b81526020600482018190526024820152600080516020612620833981519152604482015290519081900360640190fd5b61144a82826112f1565b6114548282610bfa565b61145e828261148d565b5050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6114956118bd565b6005546001600160a01b039081169116146114e5576040805162461bcd60e51b81526020600482018190526024820152600080516020612620833981519152604482015290519081900360640190fd5b6001600160a01b03821660009081526016602052604090205460ff16151581151514156115435760405162461bcd60e51b81526004018080602001828103825260268152602001806126aa6026913960400191505060405180910390fd5b6001600160a01b03919091166000908152601660205260409020805460ff1916911515919091179055565b60085481565b61157c6118bd565b6005546001600160a01b039081169116146115cc576040805162461bcd60e51b81526020600482018190526024820152600080516020612620833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526017602052604090205460ff16611639576040805162461bcd60e51b815260206004820152601a60248201527f426c61636b6c6973743a204e6f7420626c61636b6c6973746564000000000000604482015290519081900360640190fd5b611242816000611f7b565b60065481565b6116526118bd565b6005546001600160a01b039081169116146116a2576040805162461bcd60e51b81526020600482018190526024820152600080516020612620833981519152604482015290519081900360640190fd5b6001600160a01b0381166116e75760405162461bcd60e51b81526004018080602001828103825260268152602001806125476026913960400191505060405180910390fd5b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b60075481565b6117516118bd565b6005546001600160a01b039081169116146117a1576040805162461bcd60e51b81526020600482018190526024820152600080516020612620833981519152604482015290519081900360640190fd5b600691909155600855565b60176020526000908152604090205460ff1681565b6000826117d057506000610acf565b828202828482816117dd57fe5b041461181a5760405162461bcd60e51b81526004018080602001828103825260218152602001806125d76021913960400191505060405180910390fd5b9392505050565b600061181a83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611fa6565b60008282018381101561181a576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b3390565b6001600160a01b0383166119065760405162461bcd60e51b81526004018080602001828103825260248152602001806126866024913960400191505060405180910390fd5b6001600160a01b03821661194b5760405162461bcd60e51b815260040180806020018281038252602281526020018061256d6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316611a08576040805162461bcd60e51b815260206004820152601e60248201527f7472616e736665722066726f6d20746865207a65726f20616464726573730000604482015290519081900360640190fd5b6001600160a01b038216611a63576040805162461bcd60e51b815260206004820152601c60248201527f7472616e7366657220746f20746865207a65726f206164647265737300000000604482015290519081900360640190fd5b600e5481111580611a8c57506001600160a01b03831660009081526015602052604090205460ff165b80611aaf57506001600160a01b03821660009081526015602052604090205460ff165b611af6576040805162461bcd60e51b8152602060048201526013602482015272547820416d6f756e7420746f6f206c6172676560681b604482015290519081900360640190fd5b600f54611b0c82611b0685610e9b565b90611863565b111580611b3157506001600160a01b03821660009081526016602052604090205460ff165b611b6c5760405162461bcd60e51b81526004018080602001828103825260218152602001806126406021913960400191505060405180910390fd5b601354610100900460ff1680611b9a57506001600160a01b03831660009081526014602052604090205460ff165b80611bbd57506001600160a01b03821660009081526014602052604090205460ff165b611c03576040805162461bcd60e51b815260206004820152601260248201527157616974696e6720746f20676f206c69766560701b604482015290519081900360640190fd5b6001600160a01b03831660009081526017602052604090205460ff1615611c69576040805162461bcd60e51b815260206004820152601560248201527414d95b99195c881a5cc8189b1858dadb1a5cdd1959605a1b604482015290519081900360640190fd5b80611c7f57611c7a8383600061200b565b611edf565b600b54600a54600d546011549190920191821015906001600160a01b03868116911614801590611cac5750805b8015611cbb575060135460ff16155b15611ce5576013805460ff19166001179055611cd682612166565b6013805460ff19169055611d55565b6011546001600160a01b038681169116148015611d1057506011546001600160a01b03858116911614155b8015611d20575060125460040143105b8015611d4557506001600160a01b03841660009081526014602052604090205460ff16155b15611d5557611d55846001611f7b565b6013546001600160a01b03861660009081526014602052604090205460ff91821615911680611d9c57506001600160a01b03851660009081526014602052604090205460ff165b15611da5575060005b8015611ed0576011546000906001600160a01b0387811691161415611e48576000611ddd60095460075461186390919063ffffffff16565b9050611df46064611dee88846117c1565b90611821565b9150611e1b611e1282611dee600754866117c190919063ffffffff16565b600a5490611863565b600a55600954611e3f90611e36908390611dee9086906117c1565b600b5490611863565b600b5550611eb0565b6000611e6160085460065461186390919063ffffffff16565b9050611e726064611dee88846117c1565b9150611e90611e1282611dee600654866117c190919063ffffffff16565b600a55600854611eab90611e36908390611dee9086906117c1565b600b55505b8015611ece57611ec187308361200b565b611ecb858261226c565b94505b505b611edb86868661200b565b5050505b505050565b60008184841115611f735760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611f38578181015183820152602001611f20565b50505050905090810190601f168015611f655780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b03919091166000908152601760205260409020805460ff1916911515919091179055565b60008183611ff55760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611f38578181015183820152602001611f20565b50600083858161200157fe5b0495945050505050565b6001600160a01b0383166120505760405162461bcd60e51b81526004018080602001828103825260258152602001806126616025913960400191505060405180910390fd5b6001600160a01b0382166120955760405162461bcd60e51b81526004018080602001828103825260238152602001806125246023913960400191505060405180910390fd5b6120a0838383611edf565b6120dd8160405180606001604052806026815260200161258f602691396001600160a01b0386166000908152602081905260409020549190611ee4565b6001600160a01b03808516600090815260208190526040808220939093559084168152205461210c9082611863565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000600d549050600061218d6002611dee85611dee600a54876117c190919063ffffffff16565b905060006121a58261219f858261226c565b9061226c565b905060006121b3848461226c565b90506121be816122ae565b4760006121cf83611dee84876117c1565b905060006121dd838361226c565b90506121f66121ed8760026117c1565b600a549061226c565b600a5561221a61221161220a8860026117c1565b899061226c565b600b549061226c565b600b556010546040516001600160a01b039091169083156108fc029084906000818181858888f19350505050158015612257573d6000803e3d6000fd5b50612262868261247a565b5050505050505050565b600061181a83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611ee4565b604080516002808252606080830184529260208301908036833701905050905030816000815181106122dc57fe5b60200260200101906001600160a01b031690816001600160a01b031681525050737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561234957600080fd5b505afa15801561235d573d6000803e3d6000fd5b505050506040513d602081101561237357600080fd5b505181518290600190811061238457fe5b60200260200101906001600160a01b031690816001600160a01b031681525050737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b8381101561243d578181015183820152602001612425565b505050509050019650505050505050600060405180830381600087803b15801561246657600080fd5b505af1158015611edb573d6000803e3d6000fd5b6040805163f305d71960e01b815230600482015260248101849052600060448201819052606482015261dead60848201524260a48201529051737a250d5630b4cf539739df2c5dacb4c659f2488d9163f305d71991849160c48082019260609290919082900301818588803b1580156124f257600080fd5b505af1158015612506573d6000803e3d6000fd5b50505050506040513d606081101561251d57600080fd5b5050505056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636554784c696d69743a20416c72656164792073657420746f20746869732076616c7565536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e736665722077696c6c206578636565642077616c6c6574206c696d697445524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737357616c6c65744c696d69743a20416c72656164792073657420746f20746869732076616c756545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122016f99131154ed728668ac98118b4bc5be6fde07aa3b353aa5a8b7e663fb5696364736f6c634300060c003345524332303a20617070726f766520746f20746865207a65726f206164647265737354784c696d69743a20416c72656164792073657420746f20746869732076616c7565536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a20617070726f76652066726f6d20746865207a65726f206164647265737357616c6c65744c696d69743a20416c72656164792073657420746f20746869732076616c7565000000000000000000000000486d8fc3fa7975fab537150caf25f8f26c2d58f3

Deployed Bytecode

0x6080604052600436106102815760003560e01c80638036d5901161014f578063bf95793d116100c1578063eb91e6511161007a578063eb91e6511461092e578063f11a24d314610961578063f2fde38b14610976578063f6374342146109a9578063fb0ecfa4146109be578063fe575a87146109ee57610288565b8063bf95793d146107fa578063c02466681461082d578063cd49513f14610868578063dd62ed3e146108a3578063e16830a8146108de578063e9b786cb1461091957610288565b806395d89b411161011357806395d89b41146106f85780639cfe42da1461070d578063a457c2d714610740578063a9059cbb14610779578063af465a27146107b2578063b40f9469146107c757610288565b80638036d5901461068f57806386917524146106a45780638da5cb5b146106b9578063904236d1146106ce57806391cca3db146106e357610288565b806349bd5a5e116101f35780636ac9a870116101ac5780636ac9a870146105c35780636d7adcad146105f357806370a0823114610608578063715018a61461063b578063715492aa14610650578063728d41c91461066557610288565b806349bd5a5e146104fd5780634e6fd6c4146105125780634fbee193146105275780636402511e1461055a57806364f5a5bb1461058457806366a88d96146105ae57610288565b80631a8145bb116102455780631a8145bb146103f157806323b872dd1461040657806330280a7114610449578063307aebc914610484578063313ce5671461049957806339509351146104c457610288565b806306fdde031461028d578063095ea7b3146103175780631694505e1461036457806318160ddd146103955780631816467f146103bc57610288565b3661028857005b600080fd5b34801561029957600080fd5b506102a2610a21565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102dc5781810151838201526020016102c4565b50505050905090810190601f1680156103095780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561032357600080fd5b506103506004803603604081101561033a57600080fd5b506001600160a01b038135169060200135610ab7565b604080519115158252519081900360200190f35b34801561037057600080fd5b50610379610ad5565b604080516001600160a01b039092168252519081900360200190f35b3480156103a157600080fd5b506103aa610aed565b60408051918252519081900360200190f35b3480156103c857600080fd5b506103ef600480360360208110156103df57600080fd5b50356001600160a01b0316610af3565b005b3480156103fd57600080fd5b506103aa610b6d565b34801561041257600080fd5b506103506004803603606081101561042957600080fd5b506001600160a01b03813581169160208101359091169060400135610b73565b34801561045557600080fd5b506103ef6004803603604081101561046c57600080fd5b506001600160a01b0381351690602001351515610bfa565b34801561049057600080fd5b50610350610cdb565b3480156104a557600080fd5b506104ae610ce9565b6040805160ff9092168252519081900360200190f35b3480156104d057600080fd5b50610350600480360360408110156104e757600080fd5b506001600160a01b038135169060200135610cee565b34801561050957600080fd5b50610379610d3c565b34801561051e57600080fd5b50610379610d4b565b34801561053357600080fd5b506103506004803603602081101561054a57600080fd5b50356001600160a01b0316610d51565b34801561056657600080fd5b506103ef6004803603602081101561057d57600080fd5b5035610d66565b34801561059057600080fd5b506103ef600480360360208110156105a757600080fd5b5035610dc9565b3480156105ba57600080fd5b506103aa610e2c565b3480156105cf57600080fd5b506103ef600480360360408110156105e657600080fd5b5080359060200135610e32565b3480156105ff57600080fd5b506103aa610e95565b34801561061457600080fd5b506103aa6004803603602081101561062b57600080fd5b50356001600160a01b0316610e9b565b34801561064757600080fd5b506103ef610eb6565b34801561065c57600080fd5b506103ef610f58565b34801561067157600080fd5b506103ef6004803603602081101561068857600080fd5b5035611022565b34801561069b57600080fd5b506103aa611085565b3480156106b057600080fd5b506103aa61108b565b3480156106c557600080fd5b50610379611091565b3480156106da57600080fd5b506103aa6110a0565b3480156106ef57600080fd5b506103796110a6565b34801561070457600080fd5b506102a26110b5565b34801561071957600080fd5b506103ef6004803603602081101561073057600080fd5b50356001600160a01b0316611116565b34801561074c57600080fd5b506103506004803603604081101561076357600080fd5b506001600160a01b038135169060200135611245565b34801561078557600080fd5b506103506004803603604081101561079c57600080fd5b506001600160a01b0381351690602001356112ad565b3480156107be57600080fd5b506103aa6112c1565b3480156107d357600080fd5b50610350600480360360208110156107ea57600080fd5b50356001600160a01b03166112c7565b34801561080657600080fd5b506103506004803603602081101561081d57600080fd5b50356001600160a01b03166112dc565b34801561083957600080fd5b506103ef6004803603604081101561085057600080fd5b506001600160a01b03813516906020013515156112f1565b34801561087457600080fd5b506103ef6004803603604081101561088b57600080fd5b506001600160a01b03813516906020013515156113e8565b3480156108af57600080fd5b506103aa600480360360408110156108c657600080fd5b506001600160a01b0381358116916020013516611462565b3480156108ea57600080fd5b506103ef6004803603604081101561090157600080fd5b506001600160a01b038135169060200135151561148d565b34801561092557600080fd5b506103aa61156e565b34801561093a57600080fd5b506103ef6004803603602081101561095157600080fd5b50356001600160a01b0316611574565b34801561096d57600080fd5b506103aa611644565b34801561098257600080fd5b506103ef6004803603602081101561099957600080fd5b50356001600160a01b031661164a565b3480156109b557600080fd5b506103aa611743565b3480156109ca57600080fd5b506103ef600480360360408110156109e157600080fd5b5080359060200135611749565b3480156109fa57600080fd5b5061035060048036036020811015610a1157600080fd5b50356001600160a01b03166117ac565b60038054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610aad5780601f10610a8257610100808354040283529160200191610aad565b820191906000526020600020905b815481529060010190602001808311610a9057829003601f168201915b5050505050905090565b6000610acb610ac46118bd565b84846118c1565b5060015b92915050565b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b60025490565b610afb6118bd565b6005546001600160a01b03908116911614610b4b576040805162461bcd60e51b81526020600482018190526024820152600080516020612620833981519152604482015290519081900360640190fd5b601080546001600160a01b0319166001600160a01b0392909216919091179055565b600a5481565b6000610b808484846119ad565b610bf084610b8c6118bd565b610beb856040518060600160405280602881526020016125f8602891396001600160a01b038a16600090815260016020526040812090610bca6118bd565b6001600160a01b031681526020810191909152604001600020549190611ee4565b6118c1565b5060019392505050565b610c026118bd565b6005546001600160a01b03908116911614610c52576040805162461bcd60e51b81526020600482018190526024820152600080516020612620833981519152604482015290519081900360640190fd5b6001600160a01b03821660009081526015602052604090205460ff1615158115151415610cb05760405162461bcd60e51b81526004018080602001828103825260228152602001806125b56022913960400191505060405180910390fd5b6001600160a01b03919091166000908152601560205260409020805460ff1916911515919091179055565b601354610100900460ff1681565b600990565b6000610acb610cfb6118bd565b84610beb8560016000610d0c6118bd565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611863565b6011546001600160a01b031681565b61dead81565b60146020526000908152604090205460ff1681565b610d6e6118bd565b6005546001600160a01b03908116911614610dbe576040805162461bcd60e51b81526020600482018190526024820152600080516020612620833981519152604482015290519081900360640190fd5b633b9aca0002600d55565b610dd16118bd565b6005546001600160a01b03908116911614610e21576040805162461bcd60e51b81526020600482018190526024820152600080516020612620833981519152604482015290519081900360640190fd5b633b9aca0002600e55565b600f5481565b610e3a6118bd565b6005546001600160a01b03908116911614610e8a576040805162461bcd60e51b81526020600482018190526024820152600080516020612620833981519152604482015290519081900360640190fd5b600791909155600955565b600b5481565b6001600160a01b031660009081526020819052604090205490565b610ebe6118bd565b6005546001600160a01b03908116911614610f0e576040805162461bcd60e51b81526020600482018190526024820152600080516020612620833981519152604482015290519081900360640190fd5b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b610f606118bd565b6005546001600160a01b03908116911614610fb0576040805162461bcd60e51b81526020600482018190526024820152600080516020612620833981519152604482015290519081900360640190fd5b601354610100900460ff161561100d576040805162461bcd60e51b815260206004820152601c60248201527f436f6e747261637420697320616c7265616479206c61756e6368656400000000604482015290519081900360640190fd5b6013805461ff00191661010017905543601255565b61102a6118bd565b6005546001600160a01b0390811691161461107a576040805162461bcd60e51b81526020600482018190526024820152600080516020612620833981519152604482015290519081900360640190fd5b633b9aca0002600f55565b600e5481565b600d5481565b6005546001600160a01b031690565b60095481565b6010546001600160a01b031681565b60048054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610aad5780601f10610a8257610100808354040283529160200191610aad565b61111e6118bd565b6005546001600160a01b0390811691161461116e576040805162461bcd60e51b81526020600482018190526024820152600080516020612620833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526017602052604090205460ff16156111dc576040805162461bcd60e51b815260206004820152601e60248201527f426c61636b6c6973743a20416c726561647920626c61636b6c69737465640000604482015290519081900360640190fd5b6011546001600160a01b0382811691161415611237576040805162461bcd60e51b815260206004820152601560248201527421b0b73737ba10313630b1b5b634b9ba103830b4b960591b604482015290519081900360640190fd5b611242816001611f7b565b50565b6000610acb6112526118bd565b84610beb856040518060600160405280602581526020016126d0602591396001600061127c6118bd565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611ee4565b6000610acb6112ba6118bd565b84846119ad565b600c5481565b60166020526000908152604090205460ff1681565b60156020526000908152604090205460ff1681565b6112f96118bd565b6005546001600160a01b03908116911614611349576040805162461bcd60e51b81526020600482018190526024820152600080516020612620833981519152604482015290519081900360640190fd5b6001600160a01b03821660009081526014602052604090205460ff16151581151514156113bd576040805162461bcd60e51b815260206004820152601f60248201527f466565733a20416c72656164792073657420746f20746869732076616c756500604482015290519081900360640190fd5b6001600160a01b03919091166000908152601460205260409020805460ff1916911515919091179055565b6113f06118bd565b6005546001600160a01b03908116911614611440576040805162461bcd60e51b81526020600482018190526024820152600080516020612620833981519152604482015290519081900360640190fd5b61144a82826112f1565b6114548282610bfa565b61145e828261148d565b5050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6114956118bd565b6005546001600160a01b039081169116146114e5576040805162461bcd60e51b81526020600482018190526024820152600080516020612620833981519152604482015290519081900360640190fd5b6001600160a01b03821660009081526016602052604090205460ff16151581151514156115435760405162461bcd60e51b81526004018080602001828103825260268152602001806126aa6026913960400191505060405180910390fd5b6001600160a01b03919091166000908152601660205260409020805460ff1916911515919091179055565b60085481565b61157c6118bd565b6005546001600160a01b039081169116146115cc576040805162461bcd60e51b81526020600482018190526024820152600080516020612620833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526017602052604090205460ff16611639576040805162461bcd60e51b815260206004820152601a60248201527f426c61636b6c6973743a204e6f7420626c61636b6c6973746564000000000000604482015290519081900360640190fd5b611242816000611f7b565b60065481565b6116526118bd565b6005546001600160a01b039081169116146116a2576040805162461bcd60e51b81526020600482018190526024820152600080516020612620833981519152604482015290519081900360640190fd5b6001600160a01b0381166116e75760405162461bcd60e51b81526004018080602001828103825260268152602001806125476026913960400191505060405180910390fd5b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b60075481565b6117516118bd565b6005546001600160a01b039081169116146117a1576040805162461bcd60e51b81526020600482018190526024820152600080516020612620833981519152604482015290519081900360640190fd5b600691909155600855565b60176020526000908152604090205460ff1681565b6000826117d057506000610acf565b828202828482816117dd57fe5b041461181a5760405162461bcd60e51b81526004018080602001828103825260218152602001806125d76021913960400191505060405180910390fd5b9392505050565b600061181a83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611fa6565b60008282018381101561181a576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b3390565b6001600160a01b0383166119065760405162461bcd60e51b81526004018080602001828103825260248152602001806126866024913960400191505060405180910390fd5b6001600160a01b03821661194b5760405162461bcd60e51b815260040180806020018281038252602281526020018061256d6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316611a08576040805162461bcd60e51b815260206004820152601e60248201527f7472616e736665722066726f6d20746865207a65726f20616464726573730000604482015290519081900360640190fd5b6001600160a01b038216611a63576040805162461bcd60e51b815260206004820152601c60248201527f7472616e7366657220746f20746865207a65726f206164647265737300000000604482015290519081900360640190fd5b600e5481111580611a8c57506001600160a01b03831660009081526015602052604090205460ff165b80611aaf57506001600160a01b03821660009081526015602052604090205460ff165b611af6576040805162461bcd60e51b8152602060048201526013602482015272547820416d6f756e7420746f6f206c6172676560681b604482015290519081900360640190fd5b600f54611b0c82611b0685610e9b565b90611863565b111580611b3157506001600160a01b03821660009081526016602052604090205460ff165b611b6c5760405162461bcd60e51b81526004018080602001828103825260218152602001806126406021913960400191505060405180910390fd5b601354610100900460ff1680611b9a57506001600160a01b03831660009081526014602052604090205460ff165b80611bbd57506001600160a01b03821660009081526014602052604090205460ff165b611c03576040805162461bcd60e51b815260206004820152601260248201527157616974696e6720746f20676f206c69766560701b604482015290519081900360640190fd5b6001600160a01b03831660009081526017602052604090205460ff1615611c69576040805162461bcd60e51b815260206004820152601560248201527414d95b99195c881a5cc8189b1858dadb1a5cdd1959605a1b604482015290519081900360640190fd5b80611c7f57611c7a8383600061200b565b611edf565b600b54600a54600d546011549190920191821015906001600160a01b03868116911614801590611cac5750805b8015611cbb575060135460ff16155b15611ce5576013805460ff19166001179055611cd682612166565b6013805460ff19169055611d55565b6011546001600160a01b038681169116148015611d1057506011546001600160a01b03858116911614155b8015611d20575060125460040143105b8015611d4557506001600160a01b03841660009081526014602052604090205460ff16155b15611d5557611d55846001611f7b565b6013546001600160a01b03861660009081526014602052604090205460ff91821615911680611d9c57506001600160a01b03851660009081526014602052604090205460ff165b15611da5575060005b8015611ed0576011546000906001600160a01b0387811691161415611e48576000611ddd60095460075461186390919063ffffffff16565b9050611df46064611dee88846117c1565b90611821565b9150611e1b611e1282611dee600754866117c190919063ffffffff16565b600a5490611863565b600a55600954611e3f90611e36908390611dee9086906117c1565b600b5490611863565b600b5550611eb0565b6000611e6160085460065461186390919063ffffffff16565b9050611e726064611dee88846117c1565b9150611e90611e1282611dee600654866117c190919063ffffffff16565b600a55600854611eab90611e36908390611dee9086906117c1565b600b55505b8015611ece57611ec187308361200b565b611ecb858261226c565b94505b505b611edb86868661200b565b5050505b505050565b60008184841115611f735760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611f38578181015183820152602001611f20565b50505050905090810190601f168015611f655780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b03919091166000908152601760205260409020805460ff1916911515919091179055565b60008183611ff55760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611f38578181015183820152602001611f20565b50600083858161200157fe5b0495945050505050565b6001600160a01b0383166120505760405162461bcd60e51b81526004018080602001828103825260258152602001806126616025913960400191505060405180910390fd5b6001600160a01b0382166120955760405162461bcd60e51b81526004018080602001828103825260238152602001806125246023913960400191505060405180910390fd5b6120a0838383611edf565b6120dd8160405180606001604052806026815260200161258f602691396001600160a01b0386166000908152602081905260409020549190611ee4565b6001600160a01b03808516600090815260208190526040808220939093559084168152205461210c9082611863565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000600d549050600061218d6002611dee85611dee600a54876117c190919063ffffffff16565b905060006121a58261219f858261226c565b9061226c565b905060006121b3848461226c565b90506121be816122ae565b4760006121cf83611dee84876117c1565b905060006121dd838361226c565b90506121f66121ed8760026117c1565b600a549061226c565b600a5561221a61221161220a8860026117c1565b899061226c565b600b549061226c565b600b556010546040516001600160a01b039091169083156108fc029084906000818181858888f19350505050158015612257573d6000803e3d6000fd5b50612262868261247a565b5050505050505050565b600061181a83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611ee4565b604080516002808252606080830184529260208301908036833701905050905030816000815181106122dc57fe5b60200260200101906001600160a01b031690816001600160a01b031681525050737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561234957600080fd5b505afa15801561235d573d6000803e3d6000fd5b505050506040513d602081101561237357600080fd5b505181518290600190811061238457fe5b60200260200101906001600160a01b031690816001600160a01b031681525050737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b8381101561243d578181015183820152602001612425565b505050509050019650505050505050600060405180830381600087803b15801561246657600080fd5b505af1158015611edb573d6000803e3d6000fd5b6040805163f305d71960e01b815230600482015260248101849052600060448201819052606482015261dead60848201524260a48201529051737a250d5630b4cf539739df2c5dacb4c659f2488d9163f305d71991849160c48082019260609290919082900301818588803b1580156124f257600080fd5b505af1158015612506573d6000803e3d6000fd5b50505050506040513d606081101561251d57600080fd5b5050505056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636554784c696d69743a20416c72656164792073657420746f20746869732076616c7565536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e736665722077696c6c206578636565642077616c6c6574206c696d697445524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737357616c6c65744c696d69743a20416c72656164792073657420746f20746869732076616c756545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122016f99131154ed728668ac98118b4bc5be6fde07aa3b353aa5a8b7e663fb5696364736f6c634300060c0033

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

000000000000000000000000486d8fc3fa7975fab537150caf25f8f26c2d58f3

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

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000486d8fc3fa7975fab537150caf25f8f26c2d58f3


Deployed Bytecode Sourcemap

29236:8886:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20633:100;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22799:169;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;22799:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;29371:115;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;29371:115:0;;;;;;;;;;;;;;21752:108;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;33020:99;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33020:99:0;-1:-1:-1;;;;;33020:99:0;;:::i;:::-;;29647:33;;;;;;;;;;;;;:::i;23450:355::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;23450:355:0;;;;;;;;;;;;;;;;;:::i;31593:230::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;31593:230:0;;;;;;;;;;:::i;30213:22::-;;;;;;;;;;;;;:::i;21595:92::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;24214:218;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;24214:218:0;;;;;;;;:::i;30114:28::-;;;;;;;;;;;;;:::i;29310:54::-;;;;;;;;;;;;;:::i;30270:51::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30270:51:0;-1:-1:-1;;;;;30270:51:0;;:::i;32888:124::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32888:124:0;;:::i;32640:112::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32640:112:0;;:::i;29993:59::-;;;;;;;;;;;;;:::i;32476:156::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32476:156:0;;;;;;;:::i;29687:27::-;;;;;;;;;;;;;:::i;21923:127::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;21923:127:0;-1:-1:-1;;;;;21923:127:0;;:::i;5384:148::-;;;;;;;;;;;;;:::i;33579:178::-;;;;;;;;;;;;;:::i;32760:120::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32760:120:0;;:::i;29899:54::-;;;;;;;;;;;;;:::i;29805:56::-;;;;;;;;;;;;;:::i;4742:79::-;;;;;;;;;;;;;:::i;29612:28::-;;;;;;;;;;;;;:::i;30089:18::-;;;;;;;;;;;;;:::i;20852:104::-;;;;;;;;;;;;;:::i;33127:253::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33127:253:0;-1:-1:-1;;;;;33127:253:0;;:::i;24935:269::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;24935:269:0;;;;;;;;:::i;22263:175::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;22263:175:0;;;;;;;;:::i;29723:38::-;;;;;;;;;;;;;:::i;30475:58::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30475:58:0;-1:-1:-1;;;;;30475:58:0;;:::i;30374:54::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30374:54:0;-1:-1:-1;;;;;30374:54:0;;:::i;31367:218::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;31367:218:0;;;;;;;;;;:::i;32085:222::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;32085:222:0;;;;;;;;;;:::i;22501:151::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;22501:151:0;;;;;;;;;;:::i;31831:246::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;31831:246:0;;;;;;;;;;:::i;29578:27::-;;;;;;;;;;;;;:::i;33388:183::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33388:183:0;-1:-1:-1;;;;;33388:183:0;;:::i;29495:34::-;;;;;;;;;;;;;:::i;5687:244::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5687:244:0;-1:-1:-1;;;;;5687:244:0;;:::i;29536:35::-;;;;;;;;;;;;;:::i;32315:153::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32315:153:0;;;;;;;:::i;30597:46::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30597:46:0;-1:-1:-1;;;;;30597:46:0;;:::i;20633:100::-;20720:5;20713:12;;;;;;;;-1:-1:-1;;20713:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20687:13;;20713:12;;20720:5;;20713:12;;20720:5;20713:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20633:100;:::o;22799:169::-;22882:4;22899:39;22908:12;:10;:12::i;:::-;22922:7;22931:6;22899:8;:39::i;:::-;-1:-1:-1;22956:4:0;22799:169;;;;;:::o;29371:115::-;29443:42;29371:115;:::o;21752:108::-;21840:12;;21752:108;:::o;33020:99::-;4964:12;:10;:12::i;:::-;4954:6;;-1:-1:-1;;;;;4954:6:0;;;:22;;;4946:67;;;;;-1:-1:-1;;;4946:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4946:67:0;;;;;;;;;;;;;;;33096:3:::1;:15:::0;;-1:-1:-1;;;;;;33096:15:0::1;-1:-1:-1::0;;;;;33096:15:0;;;::::1;::::0;;;::::1;::::0;;33020:99::o;29647:33::-;;;;:::o;23450:355::-;23590:4;23607:36;23617:6;23625:9;23636:6;23607:9;:36::i;:::-;23654:121;23663:6;23671:12;:10;:12::i;:::-;23685:89;23723:6;23685:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23685:19:0;;;;;;:11;:19;;;;;;23705:12;:10;:12::i;:::-;-1:-1:-1;;;;;23685:33:0;;;;;;;;;;;;-1:-1:-1;23685:33:0;;;:89;:37;:89::i;:::-;23654:8;:121::i;:::-;-1:-1:-1;23793:4:0;23450:355;;;;;:::o;31593:230::-;4964:12;:10;:12::i;:::-;4954:6;;-1:-1:-1;;;;;4954:6:0;;;:22;;;4946:67;;;;;-1:-1:-1;;;4946:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4946:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;31688:30:0;::::1;;::::0;;;:21:::1;:30;::::0;;;;;::::1;;:39;;::::0;::::1;;;;31680:86;;;;-1:-1:-1::0;;;31680:86:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;31777:30:0;;;::::1;;::::0;;;:21:::1;:30;::::0;;;;:38;;-1:-1:-1;;31777:38:0::1;::::0;::::1;;::::0;;;::::1;::::0;;31593:230::o;30213:22::-;;;;;;;;;:::o;21595:92::-;21678:1;21595:92;:::o;24214:218::-;24302:4;24319:83;24328:12;:10;:12::i;:::-;24342:7;24351:50;24390:10;24351:11;:25;24363:12;:10;:12::i;:::-;-1:-1:-1;;;;;24351:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;24351:25:0;;;:34;;;;;;;;;;;:38;:50::i;30114:28::-;;;-1:-1:-1;;;;;30114:28:0;;:::o;29310:54::-;29357:6;29310:54;:::o;30270:51::-;;;;;;;;;;;;;;;:::o;32888:124::-;4964:12;:10;:12::i;:::-;4954:6;;-1:-1:-1;;;;;4954:6:0;;;:22;;;4946:67;;;;;-1:-1:-1;;;4946:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4946:67:0;;;;;;;;;;;;;;;32998:5:::1;32982:22;32967:12;:37:::0;32888:124::o;32640:112::-;4964:12;:10;:12::i;:::-;4954:6;;-1:-1:-1;;;;;4954:6:0;;;:22;;;4946:67;;;;;-1:-1:-1;;;4946:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4946:67:0;;;;;;;;;;;;;;;32738:5:::1;32726:18;32713:10;:31:::0;32640:112::o;29993:59::-;;;;:::o;32476:156::-;4964:12;:10;:12::i;:::-;4954:6;;-1:-1:-1;;;;;4954:6:0;;;:22;;;4946:67;;;;;-1:-1:-1;;;4946:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4946:67:0;;;;;;;;;;;;;;;32565:16:::1;:31:::0;;;;32607:9:::1;:17:::0;32476:156::o;29687:27::-;;;;:::o;21923:127::-;-1:-1:-1;;;;;22024:18:0;21997:7;22024:18;;;;;;;;;;;;21923:127::o;5384:148::-;4964:12;:10;:12::i;:::-;4954:6;;-1:-1:-1;;;;;4954:6:0;;;:22;;;4946:67;;;;;-1:-1:-1;;;4946:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4946:67:0;;;;;;;;;;;;;;;5475:6:::1;::::0;5454:40:::1;::::0;5491:1:::1;::::0;-1:-1:-1;;;;;5475:6:0::1;::::0;5454:40:::1;::::0;5491:1;;5454:40:::1;5505:6;:19:::0;;-1:-1:-1;;;;;;5505:19:0::1;::::0;;5384:148::o;33579:178::-;4964:12;:10;:12::i;:::-;4954:6;;-1:-1:-1;;;;;4954:6:0;;;:22;;;4946:67;;;;;-1:-1:-1;;;4946:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4946:67:0;;;;;;;;;;;;;;;33641:10:::1;::::0;::::1;::::0;::::1;;;33640:11;33632:52;;;::::0;;-1:-1:-1;;;33632:52:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;33695:10;:17:::0;;-1:-1:-1;;33695:17:0::1;;;::::0;;33737:12:::1;33723:11;:26:::0;33579:178::o;32760:120::-;4964:12;:10;:12::i;:::-;4954:6;;-1:-1:-1;;;;;4954:6:0;;;:22;;;4946:67;;;;;-1:-1:-1;;;4946:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4946:67:0;;;;;;;;;;;;;;;32866:5:::1;32854:18;32837:14;:35:::0;32760:120::o;29899:54::-;;;;:::o;29805:56::-;;;;:::o;4742:79::-;4807:6;;-1:-1:-1;;;;;4807:6:0;4742:79;:::o;29612:28::-;;;;:::o;30089:18::-;;;-1:-1:-1;;;;;30089:18:0;;:::o;20852:104::-;20941:7;20934:14;;;;;;;;-1:-1:-1;;20934:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20908:13;;20934:14;;20941:7;;20934:14;;20941:7;20934:14;;;;;;;;;;;;;;;;;;;;;;;;33127:253;4964:12;:10;:12::i;:::-;4954:6;;-1:-1:-1;;;;;4954:6:0;;;:22;;;4946:67;;;;;-1:-1:-1;;;4946:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4946:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;33207:22:0;::::1;;::::0;;;:13:::1;:22;::::0;;;;;::::1;;33206:23;33198:66;;;::::0;;-1:-1:-1;;;33198:66:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;33294:13;::::0;-1:-1:-1;;;;;33283:24:0;;::::1;33294:13:::0;::::1;33283:24;;33275:58;;;::::0;;-1:-1:-1;;;33275:58:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;33275:58:0;;;;;;;;;;;;;::::1;;33344:28;33358:7;33367:4;33344:13;:28::i;:::-;33127:253:::0;:::o;24935:269::-;25028:4;25045:129;25054:12;:10;:12::i;:::-;25068:7;25077:96;25116:15;25077:96;;;;;;;;;;;;;;;;;:11;:25;25089:12;:10;:12::i;:::-;-1:-1:-1;;;;;25077:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;25077:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;22263:175::-;22349:4;22366:42;22376:12;:10;:12::i;:::-;22390:9;22401:6;22366:9;:42::i;29723:38::-;;;;:::o;30475:58::-;;;;;;;;;;;;;;;:::o;30374:54::-;;;;;;;;;;;;;;;:::o;31367:218::-;4964:12;:10;:12::i;:::-;4954:6;;-1:-1:-1;;;;;4954:6:0;;;:22;;;4946:67;;;;;-1:-1:-1;;;4946:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4946:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;31459:27:0;::::1;;::::0;;;:18:::1;:27;::::0;;;;;::::1;;:36;;::::0;::::1;;;;31451:80;;;::::0;;-1:-1:-1;;;31451:80:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;31542:27:0;;;::::1;;::::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;31542:35:0::1;::::0;::::1;;::::0;;;::::1;::::0;;31367:218::o;32085:222::-;4964:12;:10;:12::i;:::-;4954:6;;-1:-1:-1;;;;;4954:6:0;;;:22;;;4946:67;;;;;-1:-1:-1;;;4946:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4946:67:0;;;;;;;;;;;;;;;32174:31:::1;32190:7;32199:5;32174:15;:31::i;:::-;32216:34;32235:7;32244:5;32216:18;:34::i;:::-;32261:38;32284:7;32293:5;32261:22;:38::i;:::-;32085:222:::0;;:::o;22501:151::-;-1:-1:-1;;;;;22617:18:0;;;22590:7;22617:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;22501:151::o;31831:246::-;4964:12;:10;:12::i;:::-;4954:6;;-1:-1:-1;;;;;4954:6:0;;;:22;;;4946:67;;;;;-1:-1:-1;;;4946:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4946:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;31930:34:0;::::1;;::::0;;;:25:::1;:34;::::0;;;;;::::1;;:43;;::::0;::::1;;;;31922:94;;;;-1:-1:-1::0;;;31922:94:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;32027:34:0;;;::::1;;::::0;;;:25:::1;:34;::::0;;;;:42;;-1:-1:-1;;32027:42:0::1;::::0;::::1;;::::0;;;::::1;::::0;;31831:246::o;29578:27::-;;;;:::o;33388:183::-;4964:12;:10;:12::i;:::-;4954:6;;-1:-1:-1;;;;;4954:6:0;;;:22;;;4946:67;;;;;-1:-1:-1;;;4946:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4946:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;33470:22:0;::::1;;::::0;;;:13:::1;:22;::::0;;;;;::::1;;33462:61;;;::::0;;-1:-1:-1;;;33462:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;33534:29;33548:7;33557:5;33534:13;:29::i;29495:34::-:0;;;;:::o;5687:244::-;4964:12;:10;:12::i;:::-;4954:6;;-1:-1:-1;;;;;4954:6:0;;;:22;;;4946:67;;;;;-1:-1:-1;;;4946:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4946:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;5776:22:0;::::1;5768:73;;;;-1:-1:-1::0;;;5768:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5878:6;::::0;5857:38:::1;::::0;-1:-1:-1;;;;;5857:38:0;;::::1;::::0;5878:6:::1;::::0;5857:38:::1;::::0;5878:6:::1;::::0;5857:38:::1;5906:6;:17:::0;;-1:-1:-1;;;;;;5906:17:0::1;-1:-1:-1::0;;;;;5906:17:0;;;::::1;::::0;;;::::1;::::0;;5687:244::o;29536:35::-;;;;:::o;32315:153::-;4964:12;:10;:12::i;:::-;4954:6;;-1:-1:-1;;;;;4954:6:0;;;:22;;;4946:67;;;;;-1:-1:-1;;;4946:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4946:67:0;;;;;;;;;;;;;;;32403:15:::1;:30:::0;;;;32444:8:::1;:16:::0;32315:153::o;30597:46::-;;;;;;;;;;;;;;;:::o;7555:471::-;7613:7;7858:6;7854:47;;-1:-1:-1;7888:1:0;7881:8;;7854:47;7925:5;;;7929:1;7925;:5;:1;7949:5;;;;;:10;7941:56;;;;-1:-1:-1;;;7941:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8017:1;7555:471;-1:-1:-1;;;7555:471:0:o;8502:132::-;8560:7;8587:39;8591:1;8594;8587:39;;;;;;;;;;;;;;;;;:3;:39::i;6201:181::-;6259:7;6291:5;;;6315:6;;;;6307:46;;;;;-1:-1:-1;;;6307:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;3895:98;3975:10;3895:98;:::o;28121:380::-;-1:-1:-1;;;;;28257:19:0;;28249:68;;;;-1:-1:-1;;;28249:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28336:21:0;;28328:68;;;;-1:-1:-1;;;28328:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28409:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;28461:32;;;;;;;;;;;;;;;;;28121:380;;;:::o;33765:2565::-;-1:-1:-1;;;;;33863:18:0;;33855:61;;;;;-1:-1:-1;;;33855:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;33935:16:0;;33927:57;;;;;-1:-1:-1;;;33927:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;34013:10;;34003:6;:20;;:51;;;-1:-1:-1;;;;;;34027:27:0;;;;;;:21;:27;;;;;;;;34003:51;:80;;;-1:-1:-1;;;;;;34058:25:0;;;;;;:21;:25;;;;;;;;34003:80;33995:112;;;;;-1:-1:-1;;;33995:112:0;;;;;;;;;;;;-1:-1:-1;;;33995:112:0;;;;;;;;;;;;;;;34155:14;;34126:25;34144:6;34126:13;34136:2;34126:9;:13::i;:::-;:17;;:25::i;:::-;:43;;:76;;;-1:-1:-1;;;;;;34173:29:0;;;;;;:25;:29;;;;;;;;34126:76;34118:122;;;;-1:-1:-1;;;34118:122:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34259:10;;;;;;;;:38;;-1:-1:-1;;;;;;34273:24:0;;;;;;:18;:24;;;;;;;;34259:38;:64;;;-1:-1:-1;;;;;;34301:22:0;;;;;;:18;:22;;;;;;;;34259:64;34251:95;;;;;-1:-1:-1;;;34251:95:0;;;;;;;;;;;;-1:-1:-1;;;34251:95:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;34366:19:0;;;;;;:13;:19;;;;;;;;34365:20;34357:54;;;;;-1:-1:-1;;;34357:54:0;;;;;;;;;;;;-1:-1:-1;;;34357:54:0;;;;;;;;;;;;;;;34427:11;34424:92;;34455:28;34471:4;34477:2;34481:1;34455:15;:28::i;:::-;34498:7;;34424:92;34577:12;;34556:18;;34636:12;;34686:13;;34556:33;;;;;34615;;;;-1:-1:-1;;;;;34678:21:0;;;34686:13;;34678:21;;;;:45;;;34716:7;34678:45;:71;;;;-1:-1:-1;34741:8:0;;;;34740:9;34678:71;34661:444;;;34776:8;:15;;-1:-1:-1;;34776:15:0;34787:4;34776:15;;;34806:27;34815:17;34806:8;:27::i;:::-;34848:8;:16;;-1:-1:-1;;34848:16:0;;;34661:444;;;34907:13;;-1:-1:-1;;;;;34899:21:0;;;34907:13;;34899:21;:57;;;;-1:-1:-1;34943:13:0;;-1:-1:-1;;;;;34937:19:0;;;34943:13;;34937:19;;34899:57;:104;;;;;34988:11;;35002:1;34988:15;34973:12;:30;34899:104;:144;;;;-1:-1:-1;;;;;;35021:22:0;;;;;;:18;:22;;;;;;;;35020:23;34899:144;34882:223;;;35070:23;35084:2;35088:4;35070:13;:23::i;:::-;35133:8;;-1:-1:-1;;;;;35157:24:0;;35117:12;35157:24;;;:18;:24;;;;;;35133:8;;;;35132:9;;35157:24;;:50;;-1:-1:-1;;;;;;35185:22:0;;;;;;:18;:22;;;;;;;;35157:50;35154:97;;;-1:-1:-1;35234:5:0;35154:97;35266:7;35263:1014;;;35351:13;;35290:12;;-1:-1:-1;;;;;35345:19:0;;;35351:13;;35345:19;35341:776;;;35385:21;35409:31;35430:9;;35409:16;;:20;;:31;;;;:::i;:::-;35385:55;-1:-1:-1;35466:34:0;35496:3;35466:25;:6;35385:55;35466:10;:25::i;:::-;:29;;:34::i;:::-;35459:41;;35540:69;35563:45;35594:13;35563:26;35572:16;;35563:4;:8;;:26;;;;:::i;:45::-;35540:18;;;:22;:69::i;:::-;35519:18;:90;35669:9;;35643:56;;35660:38;;35684:13;;35660:19;;:4;;:8;:19::i;:38::-;35643:12;;;:16;:56::i;:::-;35628:12;:71;-1:-1:-1;35341:776:0;;;35795:20;35818:29;35838:8;;35818:15;;:19;;:29;;;;:::i;:::-;35795:52;-1:-1:-1;35873:33:0;35902:3;35873:24;:6;35795:52;35873:10;:24::i;:33::-;35866:40;;35946:67;35969:43;35999:12;35969:25;35978:15;;35969:4;:8;;:25;;;;:::i;35946:67::-;35925:18;:88;36073:8;;36047:54;;36064:36;;36087:12;;36064:18;;:4;;:8;:18::i;36047:54::-;36032:12;:69;-1:-1:-1;35341:776:0;36136:8;;36133:133;;36164:42;36180:4;36194;36201;36164:15;:42::i;:::-;36234:16;:6;36245:4;36234:10;:16::i;:::-;36225:25;;36133:133;35263:1014;;36289:33;36305:4;36311:2;36315:6;36289:15;:33::i;:::-;33765:2565;;;;;;;:::o;7104:192::-;7190:7;7226:12;7218:6;;;;7210:29;;;;-1:-1:-1;;;7210:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;7262:5:0;;;7104:192::o;37972:110::-;-1:-1:-1;;;;;38044:22:0;;;;;;;;:13;:22;;;;;:30;;-1:-1:-1;;38044:30:0;;;;;;;;;;37972:110::o;9130:278::-;9216:7;9251:12;9244:5;9236:28;;;;-1:-1:-1;;;9236:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9275:9;9291:1;9287;:5;;;;;;;9130:278;-1:-1:-1;;;;;9130:278:0:o;25694:573::-;-1:-1:-1;;;;;25834:20:0;;25826:70;;;;-1:-1:-1;;;25826:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25915:23:0;;25907:71;;;;-1:-1:-1;;;25907:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25991:47;26012:6;26020:9;26031:6;25991:20;:47::i;:::-;26071:71;26093:6;26071:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;26071:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;26051:17:0;;;:9;:17;;;;;;;;;;;:91;;;;26176:20;;;;;;;:32;;26201:6;26176:24;:32::i;:::-;-1:-1:-1;;;;;26153:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;26224:35;;;;;;;26153:20;;26224:35;;;;;;;;;;;;;25694:573;;;:::o;36338:912::-;36402:14;36419:12;;36402:29;;36493:23;36519:60;36577:1;36519:53;36554:17;36519:30;36530:18;;36519:6;:10;;:30;;;;:::i;:60::-;36493:86;-1:-1:-1;36590:17:0;36610:48;36493:86;36610:27;:6;36493:86;36610:10;:27::i;:::-;:31;;:48::i;:::-;36590:68;-1:-1:-1;36669:26:0;36698:27;:6;36709:15;36698:10;:27::i;:::-;36669:56;;36738:37;36756:18;36738:17;:37::i;:::-;36809:21;36788:18;36861:49;36891:18;36861:25;36809:21;36876:9;36861:14;:25::i;:49::-;36841:69;-1:-1:-1;36921:23:0;36947:25;:10;36841:69;36947:14;:25::i;:::-;36921:51;-1:-1:-1;37006:46:0;37029:22;:15;37049:1;37029:19;:22::i;:::-;37006:18;;;:22;:46::i;:::-;36985:18;:67;37078:52;37095:34;37106:22;:15;37126:1;37106:19;:22::i;:::-;37095:6;;:10;:34::i;:::-;37078:12;;;:16;:52::i;:::-;37063:12;:67;37159:3;;37143:41;;-1:-1:-1;;;;;37159:3:0;;;;37143:41;;;;;37174:9;;37159:3;37143:41;37159:3;37143:41;37174:9;37159:3;37143:41;;;;;;;;;;;;;;;;;;;;;37195:47;37209:15;37226;37195:13;:47::i;:::-;36338:912;;;;;;;;:::o;6665:136::-;6723:7;6750:43;6754:1;6757;6750:43;;;;;;;;;;;;;;;;;:3;:43::i;37561:403::-;37654:16;;;37668:1;37654:16;;;37630:21;37654:16;;;;;37630:21;37654:16;;;;;;;;;;-1:-1:-1;37654:16:0;37630:40;;37699:4;37681;37686:1;37681:7;;;;;;;;;;;;;:23;-1:-1:-1;;;;;37681:23:0;;;-1:-1:-1;;;;;37681:23:0;;;;;29443:42;-1:-1:-1;;;;;37725:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37725:22:0;37715:7;;:4;;37720:1;;37715:7;;;;;;;;;;;:32;-1:-1:-1;;;;;37715:32:0;;;-1:-1:-1;;;;;37715:32:0;;;;;29443:42;-1:-1:-1;;;;;37760:66:0;;37841:11;37867:1;37883:4;37910;37930:15;37760:196;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;37760:196:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37258:295;37342:203;;;-1:-1:-1;;;37342:203:0;;37414:4;37342:203;;;;;;;;;;37460:1;37342:203;;;;;;;;;;29357:6;37342:203;;;;37519:15;37342:203;;;;;;29443:42;;37342:31;;37381:9;;37342:203;;;;;;;;;;;;;;;37381:9;29443:42;37342:203;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;37258:295:0:o

Swarm Source

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