ETH Price: $2,360.01 (+1.28%)

Token

Vision of Medusa (VOM)
 

Overview

Max Total Supply

100,000 VOM

Holders

106

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
38.768546659199128415 VOM

Value
$0.00
0x8a7aded0ed1dba033068172831196db9f0637cfa
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:
VisionOfMedusa

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-20
*/

/**

Vision Of Medusa - $VOM

An equal opportunity for everyone to thrive in the crypto market.

https://t.me/VisionOfMedusa 
https://twitter.com/VisionOfMedusa 
https://link.medium.com/q7LhOU1zfub
https://visionofmedusa.xyz/

*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
pragma experimental ABIEncoderV2;

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

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

abstract contract Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    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 {
        _transferOwnership(address(0));
    }

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

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

////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

/* pragma solidity ^0.8.0; */

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

////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol)

/* pragma solidity ^0.8.0; */

/* import "../IERC20.sol"; */

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

////// lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol)

/* pragma solidity ^0.8.0; */

/* import "./IERC20.sol"; */
/* import "./extensions/IERC20Metadata.sol"; */
/* import "../../utils/Context.sol"; */

/**
 * @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 Contracts guidelines: functions revert
 * instead 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 {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This 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);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(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 += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, 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 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 {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol
// OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol)

/* pragma solidity ^0.8.0; */

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

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

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

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

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

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

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

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

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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

    function createPair(address tokenA, address tokenB)
        external
        returns (address pair);
}

interface IUniswapV2Router02 {
    function factory() external pure returns (address);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}

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

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

    bool private swapping;

    address public devWallet;

    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;

    bool public limitsInEffect = true;
    bool public tradingActive = false;
    bool public swapEnabled = false;

    uint256 public buyTotalFees;
    uint256 public buyDevFee;
    uint256 public buyLiquidityFee;

    uint256 public sellTotalFees;
    uint256 public sellDevFee;
    uint256 public sellLiquidityFee;

    /******************/

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


    event ExcludeFromFees(address indexed account, bool isExcluded);

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

    constructor() ERC20("Vision of Medusa", "VOM") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;

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


        uint256 _buyDevFee = 10;
        uint256 _buyLiquidityFee = 0;

        uint256 _sellDevFee = 20;
        uint256 _sellLiquidityFee = 0;

        uint256 totalSupply = 100_000 * 1e18;

        maxTransactionAmount =  totalSupply * 10 / 1000; // 1% from total supply maxTransactionAmountTxn
        maxWallet = totalSupply * 20 / 1000; // 2% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% swap wallet

        buyDevFee = _buyDevFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyTotalFees = buyDevFee + buyLiquidityFee;

        sellDevFee = _sellDevFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellTotalFees = sellDevFee + sellLiquidityFee;

        devWallet = address(0xeDC7349737EFF98efeEd2e32A044cAB351513B40);

        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(devWallet, true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(devWallet, true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);

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

    receive() external payable {}

    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
    }

    // remove limits after token is stable
    function removeLimits() external returns (bool) {
        require(msg.sender == owner() || msg.sender == devWallet, "Not authorised");
        limitsInEffect = false;
        return true;
    }

    // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint256 newAmount)
        external
        onlyOwner
        returns (bool)
    {
        require(
            newAmount >= (totalSupply() * 1) / 100000,
            "Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            newAmount <= (totalSupply() * 5) / 1000,
            "Swap amount cannot be higher than 0.5% total supply."
        );
        swapTokensAtAmount = newAmount;
        return true;
    }

    function updateMaxTxnAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 1) / 1000) / 1e18,
            "Cannot set maxTransactionAmount lower than 0.1%"
        );
        maxTransactionAmount = newNum * (10**18);
    }

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 5) / 1000) / 1e18,
            "Cannot set maxWallet lower than 0.5%"
        );
        maxWallet = newNum * (10**18);
    }

    function excludeFromMaxTransaction(address updAds, bool isEx)
        public
        onlyOwner
    {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

    // only use to disable contract sales if absolutely necessary (emergency use only)
    function updateSwapEnabled(bool enabled) external onlyOwner {
        swapEnabled = enabled;
    }

    function updateBuyFees(
        uint256 _devFee,
        uint256 _liquidityFee
    ) external {
        require(msg.sender == owner() || msg.sender == devWallet, "Not authorised");
        buyDevFee = _devFee;
        buyLiquidityFee = _liquidityFee;
        buyTotalFees = buyDevFee + buyLiquidityFee;
        require(buyTotalFees <= 7, "Must keep fees at 7% or less");
    }

    function updateSellFees(
        uint256 _devFee,
        uint256 _liquidityFee
    ) external {
        require(msg.sender == owner() || msg.sender == devWallet, "Not authorised");
        sellDevFee = _devFee;
        sellLiquidityFee = _liquidityFee;
        sellTotalFees = sellDevFee + sellLiquidityFee;
        require(sellTotalFees <= 7, "Must keep fees at 7% or less");
    }

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

    function updateDevWallet(address newDevWallet)
        external
        onlyOwner
    {
        emit devWalletUpdated(newDevWallet, devWallet);
        devWallet = newDevWallet;
    }


    function isExcludedFromFees(address account) public view returns (bool) {
        return _isExcludedFromFees[account];
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

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

        if (limitsInEffect) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ) {
                if (!tradingActive) {
                    require(
                        _isExcludedFromFees[from] || _isExcludedFromFees[to],
                        "Trading is not active."
                    );
                }

                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.
                //when buy
                if (
                    from == uniswapV2Pair &&
                    !_isExcludedMaxTransactionAmount[to]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Buy transfer amount exceeds the maxTransactionAmount."
                    );
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
                else if (!_isExcludedMaxTransactionAmount[to]) {
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;
        uint256 tokensForLiquidity = 0;
        uint256 tokensForDev = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (to == uniswapV2Pair && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity = (fees * sellLiquidityFee) / sellTotalFees;
                tokensForDev = (fees * sellDevFee) / sellTotalFees;
            }
            // on buy
            else if (from == uniswapV2Pair && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity = (fees * buyLiquidityFee) / buyTotalFees; 
                tokensForDev = (fees * buyDevFee) / buyTotalFees;
            }

            if (fees> 0) {
                super._transfer(from, address(this), fees);
            }
            if (tokensForLiquidity > 0) {
                super._transfer(address(this), uniswapV2Pair, tokensForLiquidity);
            }

            amount -= fees;
        }

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

    function swapTokensForETH(uint256 tokenAmount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = WETH;

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

        // make the swap
        uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            devWallet,
            block.timestamp
        );
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        if (contractBalance == 0) {
            return;
        }

        if (contractBalance > swapTokensAtAmount * 20) {
            contractBalance = swapTokensAtAmount * 20;
        }

        swapTokensForETH(contractBalance);
    }

    function airdropToWallets(
        address[] memory airdropWallets,
        uint256[] memory amount
    ) external onlyOwner {
        require(airdropWallets.length == amount.length, "Arrays must be the same length");
        require(airdropWallets.length <= 100, "Wallets list length must be <= 100");
        for (uint256 i = 0; i < airdropWallets.length; i++) {
            address wallet = airdropWallets[i];
            uint256 airdropAmount = amount[i] * (10**decimals());
            super._transfer(msg.sender, wallet, airdropAmount);
        }
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"inputs":[],"name":"WETH","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"airdropWallets","type":"address[]"},{"internalType":"uint256[]","name":"amount","type":"uint256[]"}],"name":"airdropToWallets","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":"buyDevFee","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":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","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":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"uint256","name":"_devFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newDevWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_devFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600680546001600160a01b03191673c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2179055600b805462ffffff191660011790553480156200004657600080fd5b506040518060400160405280601081526020016f566973696f6e206f66204d656475736160801b81525060405180604001604052806003815260200162564f4d60e81b81525081600390816200009d91906200067d565b506004620000ac82826200067d565b505050620000c9620000c36200037560201b60201c565b62000379565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000eb816001620003cb565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000136573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200015c919062000749565b6006546040516364e329cb60e11b81523060048201526001600160a01b03918216602482015291169063c9c65396906044016020604051808303816000875af1158015620001ae573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001d4919062000749565b6001600160a01b031660a0819052620001ef906001620003cb565b600a600060148169152d02c7e14af68000006103e862000210828762000791565b6200021c9190620007b1565b6008556103e86200022f82601462000791565b6200023b9190620007b1565b600a556127106200024e82600562000791565b6200025a9190620007b1565b600955600d859055600e849055620002738486620007d4565b600c55601083905560118290556200028c8284620007d4565b600f55600780546001600160a01b03191673edc7349737eff98efeed2e32a044cab351513b40179055620002d4620002cc6005546001600160a01b031690565b600162000445565b600754620002ed906001600160a01b0316600162000445565b620002fa30600162000445565b6200030961dead600162000445565b62000328620003206005546001600160a01b031690565b6001620003cb565b60075462000341906001600160a01b03166001620003cb565b6200034e306001620003cb565b6200035d61dead6001620003cb565b620003693382620004ef565b505050505050620007ea565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b031633146200041a5760405162461bcd60e51b8152602060048201819052602482015260008051602062002bd783398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601360205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314620004905760405162461bcd60e51b8152602060048201819052602482015260008051602062002bd7833981519152604482015260640162000411565b6001600160a01b038216600081815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620005475760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000411565b80600260008282546200055b9190620007d4565b90915550506001600160a01b038216600090815260208190526040812080548392906200058a908490620007d4565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200060457607f821691505b6020821081036200062557634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620005d457600081815260208120601f850160051c81016020861015620006545750805b601f850160051c820191505b81811015620006755782815560010162000660565b505050505050565b81516001600160401b03811115620006995762000699620005d9565b620006b181620006aa8454620005ef565b846200062b565b602080601f831160018114620006e95760008415620006d05750858301515b600019600386901b1c1916600185901b17855562000675565b600085815260208120601f198616915b828110156200071a57888601518255948401946001909101908401620006f9565b5085821015620007395787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200075c57600080fd5b81516001600160a01b03811681146200077457600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620007ab57620007ab6200077b565b92915050565b600082620007cf57634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115620007ab57620007ab6200077b565b60805160a0516123966200084160003960008181610448015281816116300152818161184101528181611951015281816119fa0152611ab401526000818161032b01528181611c430152611c8201526123966000f3fe6080604052600436106102605760003560e01c80637571336a11610144578063c0246668116100b6578063dd62ed3e1161007a578063dd62ed3e14610732578063e2f4560514610778578063f11a24d31461078e578063f2fde38b146107a4578063f6374342146107c4578063f8b45b05146107da57600080fd5b8063c0246668146106a6578063c18bc195146106c6578063c8c8ebe4146106e6578063d257b34f146106fc578063d85ba0631461071c57600080fd5b806395d89b411161010857806395d89b41146106065780639c3b4fdc1461061b578063a0d82dc514610631578063a9059cbb14610647578063ad5c464814610667578063bbc0c7421461068757600080fd5b80637571336a146105735780638a8c523c146105935780638da5cb5b146105a85780638ea5220f146105c6578063924de9b7146105e657600080fd5b806327c8f835116101dd57806366ca9b83116101a157806366ca9b83146104bd5780636a486a8e146104dd5780636ddd1713146104f357806370a0823114610513578063715018a614610549578063751039fc1461055e57600080fd5b806327c8f83514610404578063313ce5671461041a57806349bd5a5e146104365780634a62bb651461046a5780634fbee1931461048457600080fd5b806318160ddd1161022457806318160ddd146103655780631816467f14610384578063203e727e146103a45780632307b441146103c457806323b872dd146103e457600080fd5b806302dbd8f81461026c57806306fdde031461028e578063095ea7b3146102b957806310d5de53146102e95780631694505e1461031957600080fd5b3661026757005b600080fd5b34801561027857600080fd5b5061028c610287366004611cfa565b6107f0565b005b34801561029a57600080fd5b506102a36108a5565b6040516102b09190611d1c565b60405180910390f35b3480156102c557600080fd5b506102d96102d4366004611d81565b610937565b60405190151581526020016102b0565b3480156102f557600080fd5b506102d9610304366004611dab565b60136020526000908152604090205460ff1681565b34801561032557600080fd5b5061034d7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016102b0565b34801561037157600080fd5b506002545b6040519081526020016102b0565b34801561039057600080fd5b5061028c61039f366004611dab565b61094e565b3480156103b057600080fd5b5061028c6103bf366004611dc6565b6109d5565b3480156103d057600080fd5b5061028c6103df366004611eb5565b610ab2565b3480156103f057600080fd5b506102d96103ff366004611f75565b610c14565b34801561041057600080fd5b5061034d61dead81565b34801561042657600080fd5b50604051601281526020016102b0565b34801561044257600080fd5b5061034d7f000000000000000000000000000000000000000000000000000000000000000081565b34801561047657600080fd5b50600b546102d99060ff1681565b34801561049057600080fd5b506102d961049f366004611dab565b6001600160a01b031660009081526012602052604090205460ff1690565b3480156104c957600080fd5b5061028c6104d8366004611cfa565b610cbe565b3480156104e957600080fd5b50610376600f5481565b3480156104ff57600080fd5b50600b546102d99062010000900460ff1681565b34801561051f57600080fd5b5061037661052e366004611dab565b6001600160a01b031660009081526020819052604090205490565b34801561055557600080fd5b5061028c610d66565b34801561056a57600080fd5b506102d9610d9c565b34801561057f57600080fd5b5061028c61058e366004611fc1565b610e05565b34801561059f57600080fd5b5061028c610e5a565b3480156105b457600080fd5b506005546001600160a01b031661034d565b3480156105d257600080fd5b5060075461034d906001600160a01b031681565b3480156105f257600080fd5b5061028c610601366004611ff4565b610e97565b34801561061257600080fd5b506102a3610edd565b34801561062757600080fd5b50610376600d5481565b34801561063d57600080fd5b5061037660105481565b34801561065357600080fd5b506102d9610662366004611d81565b610eec565b34801561067357600080fd5b5060065461034d906001600160a01b031681565b34801561069357600080fd5b50600b546102d990610100900460ff1681565b3480156106b257600080fd5b5061028c6106c1366004611fc1565b610ef9565b3480156106d257600080fd5b5061028c6106e1366004611dc6565b610f82565b3480156106f257600080fd5b5061037660085481565b34801561070857600080fd5b506102d9610717366004611dc6565b611053565b34801561072857600080fd5b50610376600c5481565b34801561073e57600080fd5b5061037661074d36600461200f565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561078457600080fd5b5061037660095481565b34801561079a57600080fd5b50610376600e5481565b3480156107b057600080fd5b5061028c6107bf366004611dab565b6111aa565b3480156107d057600080fd5b5061037660115481565b3480156107e657600080fd5b50610376600a5481565b6005546001600160a01b031633148061081357506007546001600160a01b031633145b6108385760405162461bcd60e51b815260040161082f90612039565b60405180910390fd5b6010829055601181905561084c8183612077565b600f819055600710156108a15760405162461bcd60e51b815260206004820152601c60248201527f4d757374206b6565702066656573206174203725206f72206c65737300000000604482015260640161082f565b5050565b6060600380546108b49061208a565b80601f01602080910402602001604051908101604052809291908181526020018280546108e09061208a565b801561092d5780601f106109025761010080835404028352916020019161092d565b820191906000526020600020905b81548152906001019060200180831161091057829003601f168201915b5050505050905090565b6000610944338484611245565b5060015b92915050565b6005546001600160a01b031633146109785760405162461bcd60e51b815260040161082f906120c4565b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146109ff5760405162461bcd60e51b815260040161082f906120c4565b670de0b6b3a76400006103e8610a1460025490565b610a1f9060016120f9565b610a299190612110565b610a339190612110565b811015610a9a5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b606482015260840161082f565b610aac81670de0b6b3a76400006120f9565b60085550565b6005546001600160a01b03163314610adc5760405162461bcd60e51b815260040161082f906120c4565b8051825114610b2d5760405162461bcd60e51b815260206004820152601e60248201527f417272617973206d757374206265207468652073616d65206c656e6774680000604482015260640161082f565b606482511115610b8a5760405162461bcd60e51b815260206004820152602260248201527f57616c6c657473206c697374206c656e677468206d757374206265203c3d2031604482015261030360f41b606482015260840161082f565b60005b8251811015610c0f576000838281518110610baa57610baa612132565b602002602001015190506000610bbe601290565b610bc990600a61222c565b848481518110610bdb57610bdb612132565b6020026020010151610bed91906120f9565b9050610bfa338383611369565b50508080610c079061223b565b915050610b8d565b505050565b6000610c218484846114be565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610ca65760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161082f565b610cb38533858403611245565b506001949350505050565b6005546001600160a01b0316331480610ce157506007546001600160a01b031633145b610cfd5760405162461bcd60e51b815260040161082f90612039565b600d829055600e819055610d118183612077565b600c819055600710156108a15760405162461bcd60e51b815260206004820152601c60248201527f4d757374206b6565702066656573206174203725206f72206c65737300000000604482015260640161082f565b6005546001600160a01b03163314610d905760405162461bcd60e51b815260040161082f906120c4565b610d9a6000611afc565b565b6000610db06005546001600160a01b031690565b6001600160a01b0316336001600160a01b03161480610dd957506007546001600160a01b031633145b610df55760405162461bcd60e51b815260040161082f90612039565b50600b805460ff19169055600190565b6005546001600160a01b03163314610e2f5760405162461bcd60e51b815260040161082f906120c4565b6001600160a01b03919091166000908152601360205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610e845760405162461bcd60e51b815260040161082f906120c4565b600b805462ffff00191662010100179055565b6005546001600160a01b03163314610ec15760405162461bcd60e51b815260040161082f906120c4565b600b8054911515620100000262ff000019909216919091179055565b6060600480546108b49061208a565b60006109443384846114be565b6005546001600160a01b03163314610f235760405162461bcd60e51b815260040161082f906120c4565b6001600160a01b038216600081815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610fac5760405162461bcd60e51b815260040161082f906120c4565b670de0b6b3a76400006103e8610fc160025490565b610fcc9060056120f9565b610fd69190612110565b610fe09190612110565b81101561103b5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b606482015260840161082f565b61104d81670de0b6b3a76400006120f9565b600a5550565b6005546000906001600160a01b031633146110805760405162461bcd60e51b815260040161082f906120c4565b620186a061108d60025490565b6110989060016120f9565b6110a29190612110565b82101561110f5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b606482015260840161082f565b6103e861111b60025490565b6111269060056120f9565b6111309190612110565b82111561119c5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b606482015260840161082f565b50600981905560015b919050565b6005546001600160a01b031633146111d45760405162461bcd60e51b815260040161082f906120c4565b6001600160a01b0381166112395760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161082f565b61124281611afc565b50565b6001600160a01b0383166112a75760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161082f565b6001600160a01b0382166113085760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161082f565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661138f5760405162461bcd60e51b815260040161082f90612254565b6001600160a01b0382166113b55760405162461bcd60e51b815260040161082f90612299565b6001600160a01b0383166000908152602081905260409020548181101561142d5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161082f565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611464908490612077565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114b091815260200190565b60405180910390a350505050565b6001600160a01b0383166114e45760405162461bcd60e51b815260040161082f90612254565b6001600160a01b03821661150a5760405162461bcd60e51b815260040161082f90612299565b8060000361151e57610c0f83836000611369565b600b5460ff16156117f6576005546001600160a01b0384811691161480159061155557506005546001600160a01b03838116911614155b801561156957506001600160a01b03821615155b801561158057506001600160a01b03821661dead14155b80156115965750600654600160a01b900460ff16155b156117f657600b54610100900460ff1661162e576001600160a01b03831660009081526012602052604090205460ff16806115e957506001600160a01b03821660009081526012602052604090205460ff165b61162e5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604482015260640161082f565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031614801561168857506001600160a01b03821660009081526013602052604090205460ff16155b1561176c576008548111156116fd5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b606482015260840161082f565b600a546001600160a01b0383166000908152602081905260409020546117239083612077565b11156117675760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161082f565b6117f6565b6001600160a01b03821660009081526013602052604090205460ff166117f657600a546001600160a01b0383166000908152602081905260409020546117b29083612077565b11156117f65760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161082f565b30600090815260208190526040902054600954811080159081906118225750600b5462010000900460ff165b80156118385750600654600160a01b900460ff16155b801561187557507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b0316145b801561189a57506001600160a01b03851660009081526012602052604090205460ff16155b80156118bf57506001600160a01b03841660009081526012602052604090205460ff16155b156118ed576006805460ff60a01b1916600160a01b1790556118df611b4e565b6006805460ff60a01b191690555b6006546001600160a01b03861660009081526012602052604090205460ff600160a01b90920482161591168061193b57506001600160a01b03851660009081526012602052604090205460ff165b15611944575060005b60008060008315611ae6577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316886001600160a01b031614801561199257506000600f54115b156119f8576119b760646119b1600f548a611b9890919063ffffffff16565b90611bab565b9250600f54601154846119ca91906120f9565b6119d49190612110565b9150600f54601054846119e791906120f9565b6119f19190612110565b9050611a97565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316896001600160a01b0316148015611a3b57506000600c54115b15611a9757611a5a60646119b1600c548a611b9890919063ffffffff16565b9250600c54600e5484611a6d91906120f9565b611a779190612110565b9150600c54600d5484611a8a91906120f9565b611a949190612110565b90505b8215611aa857611aa8893085611369565b8115611ad957611ad9307f000000000000000000000000000000000000000000000000000000000000000084611369565b611ae383886122dc565b96505b611af1898989611369565b505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b3060009081526020819052604081205490819003611b695750565b600954611b779060146120f9565b811115611b8f57600954611b8c9060146120f9565b90505b61124281611bb7565b6000611ba482846120f9565b9392505050565b6000611ba48284612110565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611bec57611bec612132565b6001600160a01b039283166020918202929092010152600654825191169082906001908110611c1d57611c1d612132565b60200260200101906001600160a01b031690816001600160a01b031681525050611c68307f000000000000000000000000000000000000000000000000000000000000000084611245565b600754604051635c11d79560e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811692635c11d79592611cc49287926000928892919091169042906004016122ef565b600060405180830381600087803b158015611cde57600080fd5b505af1158015611cf2573d6000803e3d6000fd5b505050505050565b60008060408385031215611d0d57600080fd5b50508035926020909101359150565b600060208083528351808285015260005b81811015611d4957858101830151858201604001528201611d2d565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146111a557600080fd5b60008060408385031215611d9457600080fd5b611d9d83611d6a565b946020939093013593505050565b600060208284031215611dbd57600080fd5b611ba482611d6a565b600060208284031215611dd857600080fd5b5035919050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715611e1e57611e1e611ddf565b604052919050565b600067ffffffffffffffff821115611e4057611e40611ddf565b5060051b60200190565b600082601f830112611e5b57600080fd5b81356020611e70611e6b83611e26565b611df5565b82815260059290921b84018101918181019086841115611e8f57600080fd5b8286015b84811015611eaa5780358352918301918301611e93565b509695505050505050565b60008060408385031215611ec857600080fd5b823567ffffffffffffffff80821115611ee057600080fd5b818501915085601f830112611ef457600080fd5b81356020611f04611e6b83611e26565b82815260059290921b84018101918181019089841115611f2357600080fd5b948201945b83861015611f4857611f3986611d6a565b82529482019490820190611f28565b96505086013592505080821115611f5e57600080fd5b50611f6b85828601611e4a565b9150509250929050565b600080600060608486031215611f8a57600080fd5b611f9384611d6a565b9250611fa160208501611d6a565b9150604084013590509250925092565b803580151581146111a557600080fd5b60008060408385031215611fd457600080fd5b611fdd83611d6a565b9150611feb60208401611fb1565b90509250929050565b60006020828403121561200657600080fd5b611ba482611fb1565b6000806040838503121561202257600080fd5b61202b83611d6a565b9150611feb60208401611d6a565b6020808252600e908201526d139bdd08185d5d1a1bdc9a5cd95960921b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b8082018082111561094857610948612061565b600181811c9082168061209e57607f821691505b6020821081036120be57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b808202811582820484141761094857610948612061565b60008261212d57634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b600181815b8085111561218357816000190482111561216957612169612061565b8085161561217657918102915b93841c939080029061214d565b509250929050565b60008261219a57506001610948565b816121a757506000610948565b81600181146121bd57600281146121c7576121e3565b6001915050610948565b60ff8411156121d8576121d8612061565b50506001821b610948565b5060208310610133831016604e8410600b8410161715612206575081810a610948565b6122108383612148565b806000190482111561222457612224612061565b029392505050565b6000611ba460ff84168361218b565b60006001820161224d5761224d612061565b5060010190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8181038181111561094857610948612061565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561233f5784516001600160a01b03168352938301939183019160010161231a565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212203bcfc835d31adc69cc6f09b7d7bfd81406c50bb30469293f7521389211b10a9264736f6c634300081100334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106102605760003560e01c80637571336a11610144578063c0246668116100b6578063dd62ed3e1161007a578063dd62ed3e14610732578063e2f4560514610778578063f11a24d31461078e578063f2fde38b146107a4578063f6374342146107c4578063f8b45b05146107da57600080fd5b8063c0246668146106a6578063c18bc195146106c6578063c8c8ebe4146106e6578063d257b34f146106fc578063d85ba0631461071c57600080fd5b806395d89b411161010857806395d89b41146106065780639c3b4fdc1461061b578063a0d82dc514610631578063a9059cbb14610647578063ad5c464814610667578063bbc0c7421461068757600080fd5b80637571336a146105735780638a8c523c146105935780638da5cb5b146105a85780638ea5220f146105c6578063924de9b7146105e657600080fd5b806327c8f835116101dd57806366ca9b83116101a157806366ca9b83146104bd5780636a486a8e146104dd5780636ddd1713146104f357806370a0823114610513578063715018a614610549578063751039fc1461055e57600080fd5b806327c8f83514610404578063313ce5671461041a57806349bd5a5e146104365780634a62bb651461046a5780634fbee1931461048457600080fd5b806318160ddd1161022457806318160ddd146103655780631816467f14610384578063203e727e146103a45780632307b441146103c457806323b872dd146103e457600080fd5b806302dbd8f81461026c57806306fdde031461028e578063095ea7b3146102b957806310d5de53146102e95780631694505e1461031957600080fd5b3661026757005b600080fd5b34801561027857600080fd5b5061028c610287366004611cfa565b6107f0565b005b34801561029a57600080fd5b506102a36108a5565b6040516102b09190611d1c565b60405180910390f35b3480156102c557600080fd5b506102d96102d4366004611d81565b610937565b60405190151581526020016102b0565b3480156102f557600080fd5b506102d9610304366004611dab565b60136020526000908152604090205460ff1681565b34801561032557600080fd5b5061034d7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016102b0565b34801561037157600080fd5b506002545b6040519081526020016102b0565b34801561039057600080fd5b5061028c61039f366004611dab565b61094e565b3480156103b057600080fd5b5061028c6103bf366004611dc6565b6109d5565b3480156103d057600080fd5b5061028c6103df366004611eb5565b610ab2565b3480156103f057600080fd5b506102d96103ff366004611f75565b610c14565b34801561041057600080fd5b5061034d61dead81565b34801561042657600080fd5b50604051601281526020016102b0565b34801561044257600080fd5b5061034d7f000000000000000000000000a1b9b85045b6f9f45b91ac2815a6d5871f3218dd81565b34801561047657600080fd5b50600b546102d99060ff1681565b34801561049057600080fd5b506102d961049f366004611dab565b6001600160a01b031660009081526012602052604090205460ff1690565b3480156104c957600080fd5b5061028c6104d8366004611cfa565b610cbe565b3480156104e957600080fd5b50610376600f5481565b3480156104ff57600080fd5b50600b546102d99062010000900460ff1681565b34801561051f57600080fd5b5061037661052e366004611dab565b6001600160a01b031660009081526020819052604090205490565b34801561055557600080fd5b5061028c610d66565b34801561056a57600080fd5b506102d9610d9c565b34801561057f57600080fd5b5061028c61058e366004611fc1565b610e05565b34801561059f57600080fd5b5061028c610e5a565b3480156105b457600080fd5b506005546001600160a01b031661034d565b3480156105d257600080fd5b5060075461034d906001600160a01b031681565b3480156105f257600080fd5b5061028c610601366004611ff4565b610e97565b34801561061257600080fd5b506102a3610edd565b34801561062757600080fd5b50610376600d5481565b34801561063d57600080fd5b5061037660105481565b34801561065357600080fd5b506102d9610662366004611d81565b610eec565b34801561067357600080fd5b5060065461034d906001600160a01b031681565b34801561069357600080fd5b50600b546102d990610100900460ff1681565b3480156106b257600080fd5b5061028c6106c1366004611fc1565b610ef9565b3480156106d257600080fd5b5061028c6106e1366004611dc6565b610f82565b3480156106f257600080fd5b5061037660085481565b34801561070857600080fd5b506102d9610717366004611dc6565b611053565b34801561072857600080fd5b50610376600c5481565b34801561073e57600080fd5b5061037661074d36600461200f565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561078457600080fd5b5061037660095481565b34801561079a57600080fd5b50610376600e5481565b3480156107b057600080fd5b5061028c6107bf366004611dab565b6111aa565b3480156107d057600080fd5b5061037660115481565b3480156107e657600080fd5b50610376600a5481565b6005546001600160a01b031633148061081357506007546001600160a01b031633145b6108385760405162461bcd60e51b815260040161082f90612039565b60405180910390fd5b6010829055601181905561084c8183612077565b600f819055600710156108a15760405162461bcd60e51b815260206004820152601c60248201527f4d757374206b6565702066656573206174203725206f72206c65737300000000604482015260640161082f565b5050565b6060600380546108b49061208a565b80601f01602080910402602001604051908101604052809291908181526020018280546108e09061208a565b801561092d5780601f106109025761010080835404028352916020019161092d565b820191906000526020600020905b81548152906001019060200180831161091057829003601f168201915b5050505050905090565b6000610944338484611245565b5060015b92915050565b6005546001600160a01b031633146109785760405162461bcd60e51b815260040161082f906120c4565b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146109ff5760405162461bcd60e51b815260040161082f906120c4565b670de0b6b3a76400006103e8610a1460025490565b610a1f9060016120f9565b610a299190612110565b610a339190612110565b811015610a9a5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b606482015260840161082f565b610aac81670de0b6b3a76400006120f9565b60085550565b6005546001600160a01b03163314610adc5760405162461bcd60e51b815260040161082f906120c4565b8051825114610b2d5760405162461bcd60e51b815260206004820152601e60248201527f417272617973206d757374206265207468652073616d65206c656e6774680000604482015260640161082f565b606482511115610b8a5760405162461bcd60e51b815260206004820152602260248201527f57616c6c657473206c697374206c656e677468206d757374206265203c3d2031604482015261030360f41b606482015260840161082f565b60005b8251811015610c0f576000838281518110610baa57610baa612132565b602002602001015190506000610bbe601290565b610bc990600a61222c565b848481518110610bdb57610bdb612132565b6020026020010151610bed91906120f9565b9050610bfa338383611369565b50508080610c079061223b565b915050610b8d565b505050565b6000610c218484846114be565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610ca65760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161082f565b610cb38533858403611245565b506001949350505050565b6005546001600160a01b0316331480610ce157506007546001600160a01b031633145b610cfd5760405162461bcd60e51b815260040161082f90612039565b600d829055600e819055610d118183612077565b600c819055600710156108a15760405162461bcd60e51b815260206004820152601c60248201527f4d757374206b6565702066656573206174203725206f72206c65737300000000604482015260640161082f565b6005546001600160a01b03163314610d905760405162461bcd60e51b815260040161082f906120c4565b610d9a6000611afc565b565b6000610db06005546001600160a01b031690565b6001600160a01b0316336001600160a01b03161480610dd957506007546001600160a01b031633145b610df55760405162461bcd60e51b815260040161082f90612039565b50600b805460ff19169055600190565b6005546001600160a01b03163314610e2f5760405162461bcd60e51b815260040161082f906120c4565b6001600160a01b03919091166000908152601360205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610e845760405162461bcd60e51b815260040161082f906120c4565b600b805462ffff00191662010100179055565b6005546001600160a01b03163314610ec15760405162461bcd60e51b815260040161082f906120c4565b600b8054911515620100000262ff000019909216919091179055565b6060600480546108b49061208a565b60006109443384846114be565b6005546001600160a01b03163314610f235760405162461bcd60e51b815260040161082f906120c4565b6001600160a01b038216600081815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610fac5760405162461bcd60e51b815260040161082f906120c4565b670de0b6b3a76400006103e8610fc160025490565b610fcc9060056120f9565b610fd69190612110565b610fe09190612110565b81101561103b5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b606482015260840161082f565b61104d81670de0b6b3a76400006120f9565b600a5550565b6005546000906001600160a01b031633146110805760405162461bcd60e51b815260040161082f906120c4565b620186a061108d60025490565b6110989060016120f9565b6110a29190612110565b82101561110f5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b606482015260840161082f565b6103e861111b60025490565b6111269060056120f9565b6111309190612110565b82111561119c5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b606482015260840161082f565b50600981905560015b919050565b6005546001600160a01b031633146111d45760405162461bcd60e51b815260040161082f906120c4565b6001600160a01b0381166112395760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161082f565b61124281611afc565b50565b6001600160a01b0383166112a75760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161082f565b6001600160a01b0382166113085760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161082f565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661138f5760405162461bcd60e51b815260040161082f90612254565b6001600160a01b0382166113b55760405162461bcd60e51b815260040161082f90612299565b6001600160a01b0383166000908152602081905260409020548181101561142d5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161082f565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611464908490612077565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114b091815260200190565b60405180910390a350505050565b6001600160a01b0383166114e45760405162461bcd60e51b815260040161082f90612254565b6001600160a01b03821661150a5760405162461bcd60e51b815260040161082f90612299565b8060000361151e57610c0f83836000611369565b600b5460ff16156117f6576005546001600160a01b0384811691161480159061155557506005546001600160a01b03838116911614155b801561156957506001600160a01b03821615155b801561158057506001600160a01b03821661dead14155b80156115965750600654600160a01b900460ff16155b156117f657600b54610100900460ff1661162e576001600160a01b03831660009081526012602052604090205460ff16806115e957506001600160a01b03821660009081526012602052604090205460ff165b61162e5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604482015260640161082f565b7f000000000000000000000000a1b9b85045b6f9f45b91ac2815a6d5871f3218dd6001600160a01b0316836001600160a01b031614801561168857506001600160a01b03821660009081526013602052604090205460ff16155b1561176c576008548111156116fd5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b606482015260840161082f565b600a546001600160a01b0383166000908152602081905260409020546117239083612077565b11156117675760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161082f565b6117f6565b6001600160a01b03821660009081526013602052604090205460ff166117f657600a546001600160a01b0383166000908152602081905260409020546117b29083612077565b11156117f65760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161082f565b30600090815260208190526040902054600954811080159081906118225750600b5462010000900460ff165b80156118385750600654600160a01b900460ff16155b801561187557507f000000000000000000000000a1b9b85045b6f9f45b91ac2815a6d5871f3218dd6001600160a01b0316846001600160a01b0316145b801561189a57506001600160a01b03851660009081526012602052604090205460ff16155b80156118bf57506001600160a01b03841660009081526012602052604090205460ff16155b156118ed576006805460ff60a01b1916600160a01b1790556118df611b4e565b6006805460ff60a01b191690555b6006546001600160a01b03861660009081526012602052604090205460ff600160a01b90920482161591168061193b57506001600160a01b03851660009081526012602052604090205460ff165b15611944575060005b60008060008315611ae6577f000000000000000000000000a1b9b85045b6f9f45b91ac2815a6d5871f3218dd6001600160a01b0316886001600160a01b031614801561199257506000600f54115b156119f8576119b760646119b1600f548a611b9890919063ffffffff16565b90611bab565b9250600f54601154846119ca91906120f9565b6119d49190612110565b9150600f54601054846119e791906120f9565b6119f19190612110565b9050611a97565b7f000000000000000000000000a1b9b85045b6f9f45b91ac2815a6d5871f3218dd6001600160a01b0316896001600160a01b0316148015611a3b57506000600c54115b15611a9757611a5a60646119b1600c548a611b9890919063ffffffff16565b9250600c54600e5484611a6d91906120f9565b611a779190612110565b9150600c54600d5484611a8a91906120f9565b611a949190612110565b90505b8215611aa857611aa8893085611369565b8115611ad957611ad9307f000000000000000000000000a1b9b85045b6f9f45b91ac2815a6d5871f3218dd84611369565b611ae383886122dc565b96505b611af1898989611369565b505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b3060009081526020819052604081205490819003611b695750565b600954611b779060146120f9565b811115611b8f57600954611b8c9060146120f9565b90505b61124281611bb7565b6000611ba482846120f9565b9392505050565b6000611ba48284612110565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611bec57611bec612132565b6001600160a01b039283166020918202929092010152600654825191169082906001908110611c1d57611c1d612132565b60200260200101906001600160a01b031690816001600160a01b031681525050611c68307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611245565b600754604051635c11d79560e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d811692635c11d79592611cc49287926000928892919091169042906004016122ef565b600060405180830381600087803b158015611cde57600080fd5b505af1158015611cf2573d6000803e3d6000fd5b505050505050565b60008060408385031215611d0d57600080fd5b50508035926020909101359150565b600060208083528351808285015260005b81811015611d4957858101830151858201604001528201611d2d565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146111a557600080fd5b60008060408385031215611d9457600080fd5b611d9d83611d6a565b946020939093013593505050565b600060208284031215611dbd57600080fd5b611ba482611d6a565b600060208284031215611dd857600080fd5b5035919050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715611e1e57611e1e611ddf565b604052919050565b600067ffffffffffffffff821115611e4057611e40611ddf565b5060051b60200190565b600082601f830112611e5b57600080fd5b81356020611e70611e6b83611e26565b611df5565b82815260059290921b84018101918181019086841115611e8f57600080fd5b8286015b84811015611eaa5780358352918301918301611e93565b509695505050505050565b60008060408385031215611ec857600080fd5b823567ffffffffffffffff80821115611ee057600080fd5b818501915085601f830112611ef457600080fd5b81356020611f04611e6b83611e26565b82815260059290921b84018101918181019089841115611f2357600080fd5b948201945b83861015611f4857611f3986611d6a565b82529482019490820190611f28565b96505086013592505080821115611f5e57600080fd5b50611f6b85828601611e4a565b9150509250929050565b600080600060608486031215611f8a57600080fd5b611f9384611d6a565b9250611fa160208501611d6a565b9150604084013590509250925092565b803580151581146111a557600080fd5b60008060408385031215611fd457600080fd5b611fdd83611d6a565b9150611feb60208401611fb1565b90509250929050565b60006020828403121561200657600080fd5b611ba482611fb1565b6000806040838503121561202257600080fd5b61202b83611d6a565b9150611feb60208401611d6a565b6020808252600e908201526d139bdd08185d5d1a1bdc9a5cd95960921b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b8082018082111561094857610948612061565b600181811c9082168061209e57607f821691505b6020821081036120be57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b808202811582820484141761094857610948612061565b60008261212d57634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b600181815b8085111561218357816000190482111561216957612169612061565b8085161561217657918102915b93841c939080029061214d565b509250929050565b60008261219a57506001610948565b816121a757506000610948565b81600181146121bd57600281146121c7576121e3565b6001915050610948565b60ff8411156121d8576121d8612061565b50506001821b610948565b5060208310610133831016604e8410600b8410161715612206575081810a610948565b6122108383612148565b806000190482111561222457612224612061565b029392505050565b6000611ba460ff84168361218b565b60006001820161224d5761224d612061565b5060010190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8181038181111561094857610948612061565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561233f5784516001600160a01b03168352938301939183019160010161231a565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212203bcfc835d31adc69cc6f09b7d7bfd81406c50bb30469293f7521389211b10a9264736f6c63430008110033

Deployed Bytecode Sourcemap

23559:11626:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29076:392;;;;;;;;;;-1:-1:-1;29076:392:0;;;;;:::i;:::-;;:::i;:::-;;8415:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10582:169;;;;;;;;;;-1:-1:-1;10582:169:0;;;;;:::i;:::-;;:::i;:::-;;;1422:14:1;;1415:22;1397:41;;1385:2;1370:18;10582:169:0;1257:187:1;24528:63:0;;;;;;;;;;-1:-1:-1;24528:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;23643:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1830:32:1;;;1812:51;;1800:2;1785:18;23643:51:0;1640:229:1;9535:108:0;;;;;;;;;;-1:-1:-1;9623:12:0;;9535:108;;;2020:25:1;;;2008:2;1993:18;9535:108:0;1874:177:1;29666:189:0;;;;;;;;;;-1:-1:-1;29666:189:0;;;;;:::i;:::-;;:::i;27765:275::-;;;;;;;;;;-1:-1:-1;27765:275:0;;;;;:::i;:::-;;:::i;34611:569::-;;;;;;;;;;-1:-1:-1;34611:569:0;;;;;:::i;:::-;;:::i;11233:492::-;;;;;;;;;;-1:-1:-1;11233:492:0;;;;;:::i;:::-;;:::i;23746:53::-;;;;;;;;;;;;23792:6;23746:53;;9377:93;;;;;;;;;;-1:-1:-1;9377:93:0;;9460:2;5342:36:1;;5330:2;5315:18;9377:93:0;5200:184:1;23701:38:0;;;;;;;;;;;;;;;24057:33;;;;;;;;;;-1:-1:-1;24057:33:0;;;;;;;;29865:126;;;;;;;;;;-1:-1:-1;29865:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;29955:28:0;29931:4;29955:28;;;:19;:28;;;;;;;;;29865:126;28683:385;;;;;;;;;;-1:-1:-1;28683:385:0;;;;;:::i;:::-;;:::i;24281:28::-;;;;;;;;;;;;;;;;24137:31;;;;;;;;;;-1:-1:-1;24137:31:0;;;;;;;;;;;9706:127;;;;;;;;;;-1:-1:-1;9706:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;9807:18:0;9780:7;9807:18;;;;;;;;;;;;9706:127;1650:103;;;;;;;;;;;;;:::i;26993:197::-;;;;;;;;;;;;;:::i;28312:167::-;;;;;;;;;;-1:-1:-1;28312:167:0;;;;;:::i;:::-;;:::i;26829:112::-;;;;;;;;;;;;;:::i;999:87::-;;;;;;;;;;-1:-1:-1;1072:6:0;;-1:-1:-1;;;;;1072:6:0;999:87;;23909:24;;;;;;;;;;-1:-1:-1;23909:24:0;;;;-1:-1:-1;;;;;23909:24:0;;;28575:100;;;;;;;;;;-1:-1:-1;28575:100:0;;;;;:::i;:::-;;:::i;8634:104::-;;;;;;;;;;;;;:::i;24211:24::-;;;;;;;;;;;;;;;;24316:25;;;;;;;;;;;;;;;;10046:175;;;;;;;;;;-1:-1:-1;10046:175:0;;;;;:::i;:::-;;:::i;23806:64::-;;;;;;;;;;-1:-1:-1;23806:64:0;;;;-1:-1:-1;;;;;23806:64:0;;;24097:33;;;;;;;;;;-1:-1:-1;24097:33:0;;;;;;;;;;;29476:182;;;;;;;;;;-1:-1:-1;29476:182:0;;;;;:::i;:::-;;:::i;28048:256::-;;;;;;;;;;-1:-1:-1;28048:256:0;;;;;:::i;:::-;;:::i;23942:35::-;;;;;;;;;;;;;;;;27260:497;;;;;;;;;;-1:-1:-1;27260:497:0;;;;;:::i;:::-;;:::i;24177:27::-;;;;;;;;;;;;;;;;10284:151;;;;;;;;;;-1:-1:-1;10284:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;10400:18:0;;;10373:7;10400:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10284:151;23984:33;;;;;;;;;;;;;;;;24242:30;;;;;;;;;;;;;;;;1908:201;;;;;;;;;;-1:-1:-1;1908:201:0;;;;;:::i;:::-;;:::i;24348:31::-;;;;;;;;;;;;;;;;24024:24;;;;;;;;;;;;;;;;29076:392;1072:6;;-1:-1:-1;;;;;1072:6:0;29193:10;:21;;:48;;-1:-1:-1;29232:9:0;;-1:-1:-1;;;;;29232:9:0;29218:10;:23;29193:48;29185:75;;;;-1:-1:-1;;;29185:75:0;;;;;;;:::i;:::-;;;;;;;;;29271:10;:20;;;29302:16;:32;;;29361:29;29321:13;29284:7;29361:29;:::i;:::-;29345:13;:45;;;29426:1;-1:-1:-1;29409:18:0;29401:59;;;;-1:-1:-1;;;29401:59:0;;7070:2:1;29401:59:0;;;7052:21:1;7109:2;7089:18;;;7082:30;7148;7128:18;;;7121:58;7196:18;;29401:59:0;6868:352:1;29401:59:0;29076:392;;:::o;8415:100::-;8469:13;8502:5;8495:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8415:100;:::o;10582:169::-;10665:4;10682:39;453:10;10705:7;10714:6;10682:8;:39::i;:::-;-1:-1:-1;10739:4:0;10582:169;;;;;:::o;29666:189::-;1072:6;;-1:-1:-1;;;;;1072:6:0;453:10;1219:23;1211:68;;;;-1:-1:-1;;;1211:68:0;;;;;;;:::i;:::-;29802:9:::1;::::0;29771:41:::1;::::0;-1:-1:-1;;;;;29802:9:0;;::::1;::::0;29771:41;::::1;::::0;::::1;::::0;29802:9:::1;::::0;29771:41:::1;29823:9;:24:::0;;-1:-1:-1;;;;;;29823:24:0::1;-1:-1:-1::0;;;;;29823:24:0;;;::::1;::::0;;;::::1;::::0;;29666:189::o;27765:275::-;1072:6;;-1:-1:-1;;;;;1072:6:0;453:10;1219:23;1211:68;;;;-1:-1:-1;;;1211:68:0;;;;;;;:::i;:::-;27902:4:::1;27894;27873:13;9623:12:::0;;;9535:108;27873:13:::1;:17;::::0;27889:1:::1;27873:17;:::i;:::-;27872:26;;;;:::i;:::-;27871:35;;;;:::i;:::-;27861:6;:45;;27839:142;;;::::0;-1:-1:-1;;;27839:142:0;;8568:2:1;27839:142:0::1;::::0;::::1;8550:21:1::0;8607:2;8587:18;;;8580:30;8646:34;8626:18;;;8619:62;-1:-1:-1;;;8697:18:1;;;8690:45;8752:19;;27839:142:0::1;8366:411:1::0;27839:142:0::1;28015:17;:6:::0;28025::::1;28015:17;:::i;:::-;27992:20;:40:::0;-1:-1:-1;27765:275:0:o;34611:569::-;1072:6;;-1:-1:-1;;;;;1072:6:0;453:10;1219:23;1211:68;;;;-1:-1:-1;;;1211:68:0;;;;;;;:::i;:::-;34783:6:::1;:13;34758:14;:21;:38;34750:81;;;::::0;-1:-1:-1;;;34750:81:0;;8984:2:1;34750:81:0::1;::::0;::::1;8966:21:1::0;9023:2;9003:18;;;8996:30;9062:32;9042:18;;;9035:60;9112:18;;34750:81:0::1;8782:354:1::0;34750:81:0::1;34875:3;34850:14;:21;:28;;34842:75;;;::::0;-1:-1:-1;;;34842:75:0;;9343:2:1;34842:75:0::1;::::0;::::1;9325:21:1::0;9382:2;9362:18;;;9355:30;9421:34;9401:18;;;9394:62;-1:-1:-1;;;9472:18:1;;;9465:32;9514:19;;34842:75:0::1;9141:398:1::0;34842:75:0::1;34933:9;34928:245;34952:14;:21;34948:1;:25;34928:245;;;34995:14;35012;35027:1;35012:17;;;;;;;;:::i;:::-;;;;;;;34995:34;;35044:21;35085:10;9460:2:::0;;9377:93;35085:10:::1;35081:14;::::0;:2:::1;:14;:::i;:::-;35068:6;35075:1;35068:9;;;;;;;;:::i;:::-;;;;;;;:28;;;;:::i;:::-;35044:52;;35111:50;35127:10;35139:6;35147:13;35111:15;:50::i;:::-;34980:193;;34975:3;;;;;:::i;:::-;;;;34928:245;;;;34611:569:::0;;:::o;11233:492::-;11373:4;11390:36;11400:6;11408:9;11419:6;11390:9;:36::i;:::-;-1:-1:-1;;;;;11466:19:0;;11439:24;11466:19;;;:11;:19;;;;;;;;453:10;11466:33;;;;;;;;11518:26;;;;11510:79;;;;-1:-1:-1;;;11510:79:0;;11401:2:1;11510:79:0;;;11383:21:1;11440:2;11420:18;;;11413:30;11479:34;11459:18;;;11452:62;-1:-1:-1;;;11530:18:1;;;11523:38;11578:19;;11510:79:0;11199:404:1;11510:79:0;11625:57;11634:6;453:10;11675:6;11656:16;:25;11625:8;:57::i;:::-;-1:-1:-1;11713:4:0;;11233:492;-1:-1:-1;;;;11233:492:0:o;28683:385::-;1072:6;;-1:-1:-1;;;;;1072:6:0;28799:10;:21;;:48;;-1:-1:-1;28838:9:0;;-1:-1:-1;;;;;28838:9:0;28824:10;:23;28799:48;28791:75;;;;-1:-1:-1;;;28791:75:0;;;;;;;:::i;:::-;28877:9;:19;;;28907:15;:31;;;28964:27;28925:13;28889:7;28964:27;:::i;:::-;28949:12;:42;;;29026:1;-1:-1:-1;29010:17:0;29002:58;;;;-1:-1:-1;;;29002:58:0;;7070:2:1;29002:58:0;;;7052:21:1;7109:2;7089:18;;;7082:30;7148;7128:18;;;7121:58;7196:18;;29002:58:0;6868:352:1;1650:103:0;1072:6;;-1:-1:-1;;;;;1072:6:0;453:10;1219:23;1211:68;;;;-1:-1:-1;;;1211:68:0;;;;;;;:::i;:::-;1715:30:::1;1742:1;1715:18;:30::i;:::-;1650:103::o:0;26993:197::-;27035:4;27074:7;1072:6;;-1:-1:-1;;;;;1072:6:0;;999:87;27074:7;-1:-1:-1;;;;;27060:21:0;:10;-1:-1:-1;;;;;27060:21:0;;:48;;;-1:-1:-1;27099:9:0;;-1:-1:-1;;;;;27099:9:0;27085:10;:23;27060:48;27052:75;;;;-1:-1:-1;;;27052:75:0;;;;;;;:::i;:::-;-1:-1:-1;27138:14:0;:22;;-1:-1:-1;;27138:22:0;;;;;26993:197::o;28312:167::-;1072:6;;-1:-1:-1;;;;;1072:6:0;453:10;1219:23;1211:68;;;;-1:-1:-1;;;1211:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;28425:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;28425:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;28312:167::o;26829:112::-;1072:6;;-1:-1:-1;;;;;1072:6:0;453:10;1219:23;1211:68;;;;-1:-1:-1;;;1211:68:0;;;;;;;:::i;:::-;26884:13:::1;:20:::0;;-1:-1:-1;;26915:18:0;;;;;26829:112::o;28575:100::-;1072:6;;-1:-1:-1;;;;;1072:6:0;453:10;1219:23;1211:68;;;;-1:-1:-1;;;1211:68:0;;;;;;;:::i;:::-;28646:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;28646:21:0;;::::1;::::0;;;::::1;::::0;;28575:100::o;8634:104::-;8690:13;8723:7;8716:14;;;;;:::i;10046:175::-;10132:4;10149:42;453:10;10173:9;10184:6;10149:9;:42::i;29476:182::-;1072:6;;-1:-1:-1;;;;;1072:6:0;453:10;1219:23;1211:68;;;;-1:-1:-1;;;1211:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29561:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;29561:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;29616:34;;1397:41:1;;;29616:34:0::1;::::0;1370:18:1;29616:34:0::1;;;;;;;29476:182:::0;;:::o;28048:256::-;1072:6;;-1:-1:-1;;;;;1072:6:0;453:10;1219:23;1211:68;;;;-1:-1:-1;;;1211:68:0;;;;;;;:::i;:::-;28188:4:::1;28180;28159:13;9623:12:::0;;;9535:108;28159:13:::1;:17;::::0;28175:1:::1;28159:17;:::i;:::-;28158:26;;;;:::i;:::-;28157:35;;;;:::i;:::-;28147:6;:45;;28125:131;;;::::0;-1:-1:-1;;;28125:131:0;;11810:2:1;28125:131:0::1;::::0;::::1;11792:21:1::0;11849:2;11829:18;;;11822:30;11888:34;11868:18;;;11861:62;-1:-1:-1;;;11939:18:1;;;11932:34;11983:19;;28125:131:0::1;11608:400:1::0;28125:131:0::1;28279:17;:6:::0;28289::::1;28279:17;:::i;:::-;28267:9;:29:::0;-1:-1:-1;28048:256:0:o;27260:497::-;1072:6;;27368:4;;-1:-1:-1;;;;;1072:6:0;453:10;1219:23;1211:68;;;;-1:-1:-1;;;1211:68:0;;;;;;;:::i;:::-;27447:6:::1;27426:13;9623:12:::0;;;9535:108;27426:13:::1;:17;::::0;27442:1:::1;27426:17;:::i;:::-;27425:28;;;;:::i;:::-;27412:9;:41;;27390:144;;;::::0;-1:-1:-1;;;27390:144:0;;12215:2:1;27390:144:0::1;::::0;::::1;12197:21:1::0;12254:2;12234:18;;;12227:30;12293:34;12273:18;;;12266:62;-1:-1:-1;;;12344:18:1;;;12337:51;12405:19;;27390:144:0::1;12013:417:1::0;27390:144:0::1;27602:4;27581:13;9623:12:::0;;;9535:108;27581:13:::1;:17;::::0;27597:1:::1;27581:17;:::i;:::-;27580:26;;;;:::i;:::-;27567:9;:39;;27545:141;;;::::0;-1:-1:-1;;;27545:141:0;;12637:2:1;27545:141:0::1;::::0;::::1;12619:21:1::0;12676:2;12656:18;;;12649:30;12715:34;12695:18;;;12688:62;-1:-1:-1;;;12766:18:1;;;12759:50;12826:19;;27545:141:0::1;12435:416:1::0;27545:141:0::1;-1:-1:-1::0;27697:18:0::1;:30:::0;;;27745:4:::1;1290:1;27260:497:::0;;;:::o;1908:201::-;1072:6;;-1:-1:-1;;;;;1072:6:0;453:10;1219:23;1211:68;;;;-1:-1:-1;;;1211:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;1997:22:0;::::1;1989:73;;;::::0;-1:-1:-1;;;1989:73:0;;13058:2:1;1989:73:0::1;::::0;::::1;13040:21:1::0;13097:2;13077:18;;;13070:30;13136:34;13116:18;;;13109:62;-1:-1:-1;;;13187:18:1;;;13180:36;13233:19;;1989:73:0::1;12856:402:1::0;1989:73:0::1;2073:28;2092:8;2073:18;:28::i;:::-;1908:201:::0;:::o;14074:380::-;-1:-1:-1;;;;;14210:19:0;;14202:68;;;;-1:-1:-1;;;14202:68:0;;13465:2:1;14202:68:0;;;13447:21:1;13504:2;13484:18;;;13477:30;13543:34;13523:18;;;13516:62;-1:-1:-1;;;13594:18:1;;;13587:34;13638:19;;14202:68:0;13263:400:1;14202:68:0;-1:-1:-1;;;;;14289:21:0;;14281:68;;;;-1:-1:-1;;;14281:68:0;;13870:2:1;14281:68:0;;;13852:21:1;13909:2;13889:18;;;13882:30;13948:34;13928:18;;;13921:62;-1:-1:-1;;;13999:18:1;;;13992:32;14041:19;;14281:68:0;13668:398:1;14281:68:0;-1:-1:-1;;;;;14362:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;14414:32;;2020:25:1;;;14414:32:0;;1993:18:1;14414:32:0;;;;;;;14074:380;;;:::o;12215:733::-;-1:-1:-1;;;;;12355:20:0;;12347:70;;;;-1:-1:-1;;;12347:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12436:23:0;;12428:71;;;;-1:-1:-1;;;12428:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12596:17:0;;12572:21;12596:17;;;;;;;;;;;12632:23;;;;12624:74;;;;-1:-1:-1;;;12624:74:0;;15083:2:1;12624:74:0;;;15065:21:1;15122:2;15102:18;;;15095:30;15161:34;15141:18;;;15134:62;-1:-1:-1;;;15212:18:1;;;15205:36;15258:19;;12624:74:0;14881:402:1;12624:74:0;-1:-1:-1;;;;;12734:17:0;;;:9;:17;;;;;;;;;;;12754:22;;;12734:42;;12798:20;;;;;;;;:30;;12770:6;;12734:9;12798:30;;12770:6;;12798:30;:::i;:::-;;;;;;;;12863:9;-1:-1:-1;;;;;12846:35:0;12855:6;-1:-1:-1;;;;;12846:35:0;;12874:6;12846:35;;;;2020:25:1;;2008:2;1993:18;;1874:177;12846:35:0;;;;;;;;12336:612;12215:733;;;:::o;29999:3679::-;-1:-1:-1;;;;;30131:18:0;;30123:68;;;;-1:-1:-1;;;30123:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30210:16:0;;30202:64;;;;-1:-1:-1;;;30202:64:0;;;;;;;:::i;:::-;30283:6;30293:1;30283:11;30279:93;;30311:28;30327:4;30333:2;30337:1;30311:15;:28::i;30279:93::-;30388:14;;;;30384:1430;;;1072:6;;-1:-1:-1;;;;;30441:15:0;;;1072:6;;30441:15;;;;:49;;-1:-1:-1;1072:6:0;;-1:-1:-1;;;;;30477:13:0;;;1072:6;;30477:13;;30441:49;:86;;;;-1:-1:-1;;;;;;30511:16:0;;;;30441:86;:128;;;;-1:-1:-1;;;;;;30548:21:0;;30562:6;30548:21;;30441:128;:158;;;;-1:-1:-1;30591:8:0;;-1:-1:-1;;;30591:8:0;;;;30590:9;30441:158;30419:1384;;;30639:13;;;;;;;30634:223;;-1:-1:-1;;;;;30711:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;30740:23:0;;;;;;:19;:23;;;;;;;;30711:52;30677:160;;;;-1:-1:-1;;;30677:160:0;;15490:2:1;30677:160:0;;;15472:21:1;15529:2;15509:18;;;15502:30;-1:-1:-1;;;15548:18:1;;;15541:52;15610:18;;30677:160:0;15288:346:1;30677:160:0;31071:13;-1:-1:-1;;;;;31063:21:0;:4;-1:-1:-1;;;;;31063:21:0;;:82;;;;-1:-1:-1;;;;;;31110:35:0;;;;;;:31;:35;;;;;;;;31109:36;31063:82;31037:751;;;31232:20;;31222:6;:30;;31188:169;;;;-1:-1:-1;;;31188:169:0;;15841:2:1;31188:169:0;;;15823:21:1;15880:2;15860:18;;;15853:30;15919:34;15899:18;;;15892:62;-1:-1:-1;;;15970:18:1;;;15963:51;16031:19;;31188:169:0;15639:417:1;31188:169:0;31440:9;;-1:-1:-1;;;;;9807:18:0;;9780:7;9807:18;;;;;;;;;;;31414:22;;:6;:22;:::i;:::-;:35;;31380:140;;;;-1:-1:-1;;;31380:140:0;;16263:2:1;31380:140:0;;;16245:21:1;16302:2;16282:18;;;16275:30;-1:-1:-1;;;16321:18:1;;;16314:49;16380:18;;31380:140:0;16061:343:1;31380:140:0;31037:751;;;-1:-1:-1;;;;;31568:35:0;;;;;;:31;:35;;;;;;;;31563:225;;31688:9;;-1:-1:-1;;;;;9807:18:0;;9780:7;9807:18;;;;;;;;;;;31662:22;;:6;:22;:::i;:::-;:35;;31628:140;;;;-1:-1:-1;;;31628:140:0;;16263:2:1;31628:140:0;;;16245:21:1;16302:2;16282:18;;;16275:30;-1:-1:-1;;;16321:18:1;;;16314:49;16380:18;;31628:140:0;16061:343:1;31628:140:0;31875:4;31826:28;9807:18;;;;;;;;;;;31933;;31909:42;;;;;;;31982:35;;-1:-1:-1;32006:11:0;;;;;;;31982:35;:61;;;;-1:-1:-1;32035:8:0;;-1:-1:-1;;;32035:8:0;;;;32034:9;31982:61;:97;;;;;32066:13;-1:-1:-1;;;;;32060:19:0;:2;-1:-1:-1;;;;;32060:19:0;;31982:97;:140;;;;-1:-1:-1;;;;;;32097:25:0;;;;;;:19;:25;;;;;;;;32096:26;31982:140;:181;;;;-1:-1:-1;;;;;;32140:23:0;;;;;;:19;:23;;;;;;;;32139:24;31982:181;31964:313;;;32190:8;:15;;-1:-1:-1;;;;32190:15:0;-1:-1:-1;;;32190:15:0;;;32222:10;:8;:10::i;:::-;32249:8;:16;;-1:-1:-1;;;;32249:16:0;;;31964:313;32305:8;;-1:-1:-1;;;;;32415:25:0;;32289:12;32415:25;;;:19;:25;;;;;;32305:8;-1:-1:-1;;;32305:8:0;;;;;32304:9;;32415:25;;:52;;-1:-1:-1;;;;;;32444:23:0;;;;;;:19;:23;;;;;;;;32415:52;32411:100;;;-1:-1:-1;32494:5:0;32411:100;32523:12;32550:26;32591:20;32704:7;32700:925;;;32762:13;-1:-1:-1;;;;;32756:19:0;:2;-1:-1:-1;;;;;32756:19:0;;:40;;;;;32795:1;32779:13;;:17;32756:40;32752:583;;;32824:34;32854:3;32824:25;32835:13;;32824:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;32817:41;;32926:13;;32906:16;;32899:4;:23;;;;:::i;:::-;32898:41;;;;:::i;:::-;32877:62;;32995:13;;32981:10;;32974:4;:17;;;;:::i;:::-;32973:35;;;;:::i;:::-;32958:50;;32752:583;;;33078:13;-1:-1:-1;;;;;33070:21:0;:4;-1:-1:-1;;;;;33070:21:0;;:41;;;;;33110:1;33095:12;;:16;33070:41;33066:269;;;33139:33;33168:3;33139:24;33150:12;;33139:6;:10;;:24;;;;:::i;:33::-;33132:40;;33239:12;;33220:15;;33213:4;:22;;;;:::i;:::-;33212:39;;;;:::i;:::-;33191:60;;33307:12;;33294:9;;33287:4;:16;;;;:::i;:::-;33286:33;;;;:::i;:::-;33271:48;;33066:269;33355:7;;33351:90;;33383:42;33399:4;33413;33420;33383:15;:42::i;:::-;33459:22;;33455:128;;33502:65;33526:4;33533:13;33548:18;33502:15;:65::i;:::-;33599:14;33609:4;33599:14;;:::i;:::-;;;32700:925;33637:33;33653:4;33659:2;33663:6;33637:15;:33::i;:::-;30112:3566;;;;;;29999:3679;;;:::o;2269:191::-;2362:6;;;-1:-1:-1;;;;;2379:17:0;;;-1:-1:-1;;;;;;2379:17:0;;;;;;;2412:40;;2362:6;;;2379:17;2362:6;;2412:40;;2343:16;;2412:40;2332:128;2269:191;:::o;34264:339::-;34347:4;34303:23;9807:18;;;;;;;;;;;;34368:20;;;34364:59;;34405:7;34264:339::o;34364:59::-;34457:18;;:23;;34478:2;34457:23;:::i;:::-;34439:15;:41;34435:115;;;34515:18;;:23;;34536:2;34515:23;:::i;:::-;34497:41;;34435:115;34562:33;34579:15;34562:16;:33::i;19527:98::-;19585:7;19612:5;19616:1;19612;:5;:::i;:::-;19605:12;19527:98;-1:-1:-1;;;19527:98:0:o;19926:::-;19984:7;20011:5;20015:1;20011;:5;:::i;33686:570::-;33836:16;;;33850:1;33836:16;;;;;;;;33812:21;;33836:16;;;;;;;;;;-1:-1:-1;33836:16:0;33812:40;;33881:4;33863;33868:1;33863:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;33863:23:0;;;:7;;;;;;;;;:23;33907:4;;33897:7;;33907:4;;;33897;;33907;;33897:7;;;;;;:::i;:::-;;;;;;:14;-1:-1:-1;;;;;33897:14:0;;;-1:-1:-1;;;;;33897:14:0;;;;;33924:62;33941:4;33956:15;33974:11;33924:8;:62::i;:::-;34198:9;;34025:223;;-1:-1:-1;;;34025:223:0;;-1:-1:-1;;;;;34025:15:0;:69;;;;;:223;;34109:11;;34135:1;;34179:4;;34198:9;;;;;34222:15;;34025:223;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33741:515;33686:570;:::o;14:248:1:-;82:6;90;143:2;131:9;122:7;118:23;114:32;111:52;;;159:1;156;149:12;111:52;-1:-1:-1;;182:23:1;;;252:2;237:18;;;224:32;;-1:-1:-1;14:248:1:o;267:548::-;379:4;408:2;437;426:9;419:21;469:6;463:13;512:6;507:2;496:9;492:18;485:34;537:1;547:140;561:6;558:1;555:13;547:140;;;656:14;;;652:23;;646:30;622:17;;;641:2;618:26;611:66;576:10;;547:140;;;551:3;736:1;731:2;722:6;711:9;707:22;703:31;696:42;806:2;799;795:7;790:2;782:6;778:15;774:29;763:9;759:45;755:54;747:62;;;;267:548;;;;:::o;820:173::-;888:20;;-1:-1:-1;;;;;937:31:1;;927:42;;917:70;;983:1;980;973:12;998:254;1066:6;1074;1127:2;1115:9;1106:7;1102:23;1098:32;1095:52;;;1143:1;1140;1133:12;1095:52;1166:29;1185:9;1166:29;:::i;:::-;1156:39;1242:2;1227:18;;;;1214:32;;-1:-1:-1;;;998:254:1:o;1449:186::-;1508:6;1561:2;1549:9;1540:7;1536:23;1532:32;1529:52;;;1577:1;1574;1567:12;1529:52;1600:29;1619:9;1600:29;:::i;2056:180::-;2115:6;2168:2;2156:9;2147:7;2143:23;2139:32;2136:52;;;2184:1;2181;2174:12;2136:52;-1:-1:-1;2207:23:1;;2056:180;-1:-1:-1;2056:180:1:o;2241:127::-;2302:10;2297:3;2293:20;2290:1;2283:31;2333:4;2330:1;2323:15;2357:4;2354:1;2347:15;2373:275;2444:2;2438:9;2509:2;2490:13;;-1:-1:-1;;2486:27:1;2474:40;;2544:18;2529:34;;2565:22;;;2526:62;2523:88;;;2591:18;;:::i;:::-;2627:2;2620:22;2373:275;;-1:-1:-1;2373:275:1:o;2653:183::-;2713:4;2746:18;2738:6;2735:30;2732:56;;;2768:18;;:::i;:::-;-1:-1:-1;2813:1:1;2809:14;2825:4;2805:25;;2653:183::o;2841:662::-;2895:5;2948:3;2941:4;2933:6;2929:17;2925:27;2915:55;;2966:1;2963;2956:12;2915:55;3002:6;2989:20;3028:4;3052:60;3068:43;3108:2;3068:43;:::i;:::-;3052:60;:::i;:::-;3146:15;;;3232:1;3228:10;;;;3216:23;;3212:32;;;3177:12;;;;3256:15;;;3253:35;;;3284:1;3281;3274:12;3253:35;3320:2;3312:6;3308:15;3332:142;3348:6;3343:3;3340:15;3332:142;;;3414:17;;3402:30;;3452:12;;;;3365;;3332:142;;;-1:-1:-1;3492:5:1;2841:662;-1:-1:-1;;;;;;2841:662:1:o;3508:1146::-;3626:6;3634;3687:2;3675:9;3666:7;3662:23;3658:32;3655:52;;;3703:1;3700;3693:12;3655:52;3743:9;3730:23;3772:18;3813:2;3805:6;3802:14;3799:34;;;3829:1;3826;3819:12;3799:34;3867:6;3856:9;3852:22;3842:32;;3912:7;3905:4;3901:2;3897:13;3893:27;3883:55;;3934:1;3931;3924:12;3883:55;3970:2;3957:16;3992:4;4016:60;4032:43;4072:2;4032:43;:::i;4016:60::-;4110:15;;;4192:1;4188:10;;;;4180:19;;4176:28;;;4141:12;;;;4216:19;;;4213:39;;;4248:1;4245;4238:12;4213:39;4272:11;;;;4292:148;4308:6;4303:3;4300:15;4292:148;;;4374:23;4393:3;4374:23;:::i;:::-;4362:36;;4325:12;;;;4418;;;;4292:148;;;4459:5;-1:-1:-1;;4502:18:1;;4489:32;;-1:-1:-1;;4533:16:1;;;4530:36;;;4562:1;4559;4552:12;4530:36;;4585:63;4640:7;4629:8;4618:9;4614:24;4585:63;:::i;:::-;4575:73;;;3508:1146;;;;;:::o;4659:328::-;4736:6;4744;4752;4805:2;4793:9;4784:7;4780:23;4776:32;4773:52;;;4821:1;4818;4811:12;4773:52;4844:29;4863:9;4844:29;:::i;:::-;4834:39;;4892:38;4926:2;4915:9;4911:18;4892:38;:::i;:::-;4882:48;;4977:2;4966:9;4962:18;4949:32;4939:42;;4659:328;;;;;:::o;5389:160::-;5454:20;;5510:13;;5503:21;5493:32;;5483:60;;5539:1;5536;5529:12;5554:254;5619:6;5627;5680:2;5668:9;5659:7;5655:23;5651:32;5648:52;;;5696:1;5693;5686:12;5648:52;5719:29;5738:9;5719:29;:::i;:::-;5709:39;;5767:35;5798:2;5787:9;5783:18;5767:35;:::i;:::-;5757:45;;5554:254;;;;;:::o;5813:180::-;5869:6;5922:2;5910:9;5901:7;5897:23;5893:32;5890:52;;;5938:1;5935;5928:12;5890:52;5961:26;5977:9;5961:26;:::i;5998:260::-;6066:6;6074;6127:2;6115:9;6106:7;6102:23;6098:32;6095:52;;;6143:1;6140;6133:12;6095:52;6166:29;6185:9;6166:29;:::i;:::-;6156:39;;6214:38;6248:2;6237:9;6233:18;6214:38;:::i;6263:338::-;6465:2;6447:21;;;6504:2;6484:18;;;6477:30;-1:-1:-1;;;6538:2:1;6523:18;;6516:44;6592:2;6577:18;;6263:338::o;6606:127::-;6667:10;6662:3;6658:20;6655:1;6648:31;6698:4;6695:1;6688:15;6722:4;6719:1;6712:15;6738:125;6803:9;;;6824:10;;;6821:36;;;6837:18;;:::i;7225:380::-;7304:1;7300:12;;;;7347;;;7368:61;;7422:4;7414:6;7410:17;7400:27;;7368:61;7475:2;7467:6;7464:14;7444:18;7441:38;7438:161;;7521:10;7516:3;7512:20;7509:1;7502:31;7556:4;7553:1;7546:15;7584:4;7581:1;7574:15;7438:161;;7225:380;;;:::o;7610:356::-;7812:2;7794:21;;;7831:18;;;7824:30;7890:34;7885:2;7870:18;;7863:62;7957:2;7942:18;;7610:356::o;7971:168::-;8044:9;;;8075;;8092:15;;;8086:22;;8072:37;8062:71;;8113:18;;:::i;8144:217::-;8184:1;8210;8200:132;;8254:10;8249:3;8245:20;8242:1;8235:31;8289:4;8286:1;8279:15;8317:4;8314:1;8307:15;8200:132;-1:-1:-1;8346:9:1;;8144:217::o;9544:127::-;9605:10;9600:3;9596:20;9593:1;9586:31;9636:4;9633:1;9626:15;9660:4;9657:1;9650:15;9676:422;9765:1;9808:5;9765:1;9822:270;9843:7;9833:8;9830:21;9822:270;;;9902:4;9898:1;9894:6;9890:17;9884:4;9881:27;9878:53;;;9911:18;;:::i;:::-;9961:7;9951:8;9947:22;9944:55;;;9981:16;;;;9944:55;10060:22;;;;10020:15;;;;9822:270;;;9826:3;9676:422;;;;;:::o;10103:806::-;10152:5;10182:8;10172:80;;-1:-1:-1;10223:1:1;10237:5;;10172:80;10271:4;10261:76;;-1:-1:-1;10308:1:1;10322:5;;10261:76;10353:4;10371:1;10366:59;;;;10439:1;10434:130;;;;10346:218;;10366:59;10396:1;10387:10;;10410:5;;;10434:130;10471:3;10461:8;10458:17;10455:43;;;10478:18;;:::i;:::-;-1:-1:-1;;10534:1:1;10520:16;;10549:5;;10346:218;;10648:2;10638:8;10635:16;10629:3;10623:4;10620:13;10616:36;10610:2;10600:8;10597:16;10592:2;10586:4;10583:12;10579:35;10576:77;10573:159;;;-1:-1:-1;10685:19:1;;;10717:5;;10573:159;10764:34;10789:8;10783:4;10764:34;:::i;:::-;10834:6;10830:1;10826:6;10822:19;10813:7;10810:32;10807:58;;;10845:18;;:::i;:::-;10883:20;;10103:806;-1:-1:-1;;;10103:806:1:o;10914:140::-;10972:5;11001:47;11042:4;11032:8;11028:19;11022:4;11001:47;:::i;11059:135::-;11098:3;11119:17;;;11116:43;;11139:18;;:::i;:::-;-1:-1:-1;11186:1:1;11175:13;;11059:135::o;14071:401::-;14273:2;14255:21;;;14312:2;14292:18;;;14285:30;14351:34;14346:2;14331:18;;14324:62;-1:-1:-1;;;14417:2:1;14402:18;;14395:35;14462:3;14447:19;;14071:401::o;14477:399::-;14679:2;14661:21;;;14718:2;14698:18;;;14691:30;14757:34;14752:2;14737:18;;14730:62;-1:-1:-1;;;14823:2:1;14808:18;;14801:33;14866:3;14851:19;;14477:399::o;16409:128::-;16476:9;;;16497:11;;;16494:37;;;16511:18;;:::i;16542:980::-;16804:4;16852:3;16841:9;16837:19;16883:6;16872:9;16865:25;16909:2;16947:6;16942:2;16931:9;16927:18;16920:34;16990:3;16985:2;16974:9;16970:18;16963:31;17014:6;17049;17043:13;17080:6;17072;17065:22;17118:3;17107:9;17103:19;17096:26;;17157:2;17149:6;17145:15;17131:29;;17178:1;17188:195;17202:6;17199:1;17196:13;17188:195;;;17267:13;;-1:-1:-1;;;;;17263:39:1;17251:52;;17358:15;;;;17323:12;;;;17299:1;17217:9;17188:195;;;-1:-1:-1;;;;;;;17439:32:1;;;;17434:2;17419:18;;17412:60;-1:-1:-1;;;17503:3:1;17488:19;17481:35;17400:3;16542:980;-1:-1:-1;;;16542:980:1:o

Swarm Source

ipfs://3bcfc835d31adc69cc6f09b7d7bfd81406c50bb30469293f7521389211b10a92
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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