ETH Price: $3,457.65 (-1.00%)
Gas: 9 Gwei

Token

Coinpedia (PEDIA)
 

Overview

Max Total Supply

125,000,000 PEDIA

Holders

68

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.986056781373910914 PEDIA

Value
$0.00
0x1f4aeda8d2ce102d1a6eb6ddff886fd21ba195f4
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:
Coinpedia

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-12-03
*/

/**

Telegram https://t.me/CoinpediaToken
Twitter https://twitter.com/coinpediatoken/

*/

// SPDX-License-Identifier: MIT
pragma solidity >=0.8.10 >=0.8.0 <0.9.0;
pragma experimental ABIEncoderV2;

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

/* pragma solidity ^0.8.0; */

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

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

////// lib/openzeppelin-contracts/contracts/access/Ownable.sol
// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

/* pragma solidity ^0.8.0; */

/* import "../utils/Context.sol"; */

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
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 Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue)
        public
        virtual
        returns (bool)
    {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender] + addedValue
        );
        return true;
    }

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

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

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

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be 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;
        }
    }
}

////// src/IUniswapV2Factory.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB)
        external
        view
        returns (address pair);

    function allPairs(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

////// src/IUniswapV2Pair.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

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

    function name() external pure returns (string memory);

    function symbol() external pure returns (string memory);

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

    function balanceOf(address owner) external view returns (uint256);

    function allowance(address owner, address spender)
        external
        view
        returns (uint256);

    function approve(address spender, uint256 value) external returns (bool);

    function transfer(address to, uint256 value) external returns (bool);

    function transferFrom(
        address from,
        address to,
        uint256 value
    ) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

    function nonces(address owner) external view returns (uint256);

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

    function getReserves()
        external
        view
        returns (
            uint112 reserve0,
            uint112 reserve1,
            uint32 blockTimestampLast
        );

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

    function mint(address to) external returns (uint256 liquidity);

    function burn(address to)
        external
        returns (uint256 amount0, uint256 amount1);

    function swap(
        uint256 amount0Out,
        uint256 amount1Out,
        address to,
        bytes calldata data
    ) external;

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

////// src/IUniswapV2Router02.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

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

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    )
        external
        returns (
            uint256 amountA,
            uint256 amountB,
            uint256 liquidity
        );

    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    )
        external
        payable
        returns (
            uint256 amountToken,
            uint256 amountETH,
            uint256 liquidity
        );

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

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable;

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

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

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

    bool private swapping;

    address public marketingWallet;
    address public devWallet;

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

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

    // Anti-bot and anti-whale mappings and variables
    mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch
    bool public transferDelayEnabled = true;

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

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

    uint256 public tokensForMarketing;
    uint256 public tokensForLiquidity;
    uint256 public tokensForDev;

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

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

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

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

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

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

    constructor() ERC20("Coinpedia", "PEDIA") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

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

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

        uint256 _buyMarketingFee = 0;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 15;

        uint256 _sellMarketingFee = 25;
        uint256 _sellLiquidityFee = 0;
        uint256 _sellDevFee = 0;

        uint256 totalSupply = 125_000_000 * 1e18;

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

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

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

        marketingWallet = address(0xC6Dc13a806D13c071E8fE1064E21E7F15d538D91); // set as marketing wallet
        devWallet = address(0x8f37c8861b69D6896B472a29B24FA121eAF1ed72); // set as dev wallet

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

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(marketingWallet, 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 onlyOwner returns (bool) {
        limitsInEffect = false;
        return true;
    }

    // disable Transfer delay - cannot be reenabled
    function disableTransferDelay() external onlyOwner returns (bool) {
        transferDelayEnabled = 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 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyDevFee = _devFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
        require(buyTotalFees <= 10, "Must keep fees at 10% or less");
    }

    function updateSellFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
        require(sellTotalFees <= 15, "Must keep fees at 15% or less");
    }

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

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

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function updateMarketingWallet(address newMarketingWallet)
        external
        onlyOwner
    {
        emit marketingWalletUpdated(newMarketingWallet, marketingWallet);
        marketingWallet = newMarketingWallet;
    }

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

    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.
                if (transferDelayEnabled) {
                    if (
                        to != owner() &&
                        to != address(uniswapV2Router) &&
                        to != address(uniswapV2Pair)
                    ) {
                        require(
                            _holderLastTransferTimestamp[tx.origin] <
                                block.number,
                            "_transfer:: Transfer Delay enabled.  Only one purchase per block allowed."
                        );
                        _holderLastTransferTimestamp[tx.origin] = block.number;
                    }
                }

                //when buy
                if (
                    automatedMarketMakerPairs[from] &&
                    !_isExcludedMaxTransactionAmount[to]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Buy transfer amount exceeds the maxTransactionAmount."
                    );
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
                //when sell
                else if (
                    automatedMarketMakerPairs[to] &&
                    !_isExcludedMaxTransactionAmount[from]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Sell transfer amount exceeds the maxTransactionAmount."
                    );
                } else if (!_isExcludedMaxTransactionAmount[to]) {
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

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

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

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

            amount -= fees;
        }

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

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

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

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

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

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);

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

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity +
            tokensForMarketing +
            tokensForDev;
        bool success;

        if (contractBalance == 0 || totalTokensToSwap == 0) {
            return;
        }

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

        // Halve the amount of liquidity tokens
        uint256 liquidityTokens = (contractBalance * tokensForLiquidity) /
            totalTokensToSwap /
            2;
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

        uint256 ethBalance = address(this).balance.sub(initialETHBalance);

        uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(
            totalTokensToSwap
        );
        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);

        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev;

        tokensForLiquidity = 0;
        tokensForMarketing = 0;
        tokensForDev = 0;

        (success, ) = address(devWallet).call{value: ethForDev}("");

        if (liquidityTokens > 0 && ethForLiquidity > 0) {
            addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(
                amountToSwapForETH,
                ethForLiquidity,
                tokensForLiquidity
            );
        }

        (success, ) = address(marketingWallet).call{
            value: address(this).balance
        }("");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"wallets","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"bulkTransfer","outputs":[],"stateMutability":"nonpayable","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":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","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":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","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"}]

60c0604052600b805462ffffff19166001908117909155600d805460ff191690911790553480156200003057600080fd5b5060405180604001604052806009815260200168436f696e706564696160b81b81525060405180604001604052806005815260200164504544494160d81b8152508160039081620000829190620007b4565b506004620000918282620007b4565b505050620000ae620000a86200045860201b60201c565b6200045c565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000d0816001620004ae565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156200011b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000141919062000880565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200018f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001b5919062000880565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000203573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000229919062000880565b6001600160a01b031660a081905262000244906001620004ae565b60a0516200025490600162000528565b600080600f601982806a6765c793fa10079d0000006103e862000279826014620008c8565b620002859190620008e8565b6008556103e862000298826014620008c8565b620002a49190620008e8565b600a55612710620002b7826005620008c8565b620002c39190620008e8565b600955600f8790556010869055601185905584620002e287896200090b565b620002ee91906200090b565b600e55601384905560148390556015829055816200030d84866200090b565b6200031991906200090b565b601255600680546001600160a01b031990811673c6dc13a806d13c071e8fe1064e21e7f15d538d911790915560078054909116738f37c8861b69d6896b472a29b24fa121eaf1ed72179055620003836200037b6005546001600160a01b031690565b60016200057c565b6006546200039c906001600160a01b031660016200057c565b600754620003b5906001600160a01b031660016200057c565b620003c23060016200057c565b620003d161dead60016200057c565b620003f0620003e86005546001600160a01b031690565b6001620004ae565b60065462000409906001600160a01b03166001620004ae565b60075462000422906001600160a01b03166001620004ae565b6200042f306001620004ae565b6200043e61dead6001620004ae565b6200044a338262000626565b505050505050505062000921565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620004fd5760405162461bcd60e51b815260206004820181905260248201526000805160206200379d83398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601a60205260409020805460ff1916911515919091179055565b6001600160a01b0382166000818152601b6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b03163314620005c75760405162461bcd60e51b815260206004820181905260248201526000805160206200379d8339815191526044820152606401620004f4565b6001600160a01b038216600081815260196020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b0382166200067e5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620004f4565b80600260008282546200069291906200090b565b90915550506001600160a01b03821660009081526020819052604081208054839290620006c19084906200090b565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200073b57607f821691505b6020821081036200075c57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200070b57600081815260208120601f850160051c810160208610156200078b5750805b601f850160051c820191505b81811015620007ac5782815560010162000797565b505050505050565b81516001600160401b03811115620007d057620007d062000710565b620007e881620007e1845462000726565b8462000762565b602080601f831160018114620008205760008415620008075750858301515b600019600386901b1c1916600185901b178555620007ac565b600085815260208120601f198616915b82811015620008515788860151825594840194600190910190840162000830565b5085821015620008705787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200089357600080fd5b81516001600160a01b0381168114620008ab57600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620008e257620008e2620008b2565b92915050565b6000826200090657634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115620008e257620008e2620008b2565b60805160a051612e1e6200097f60003960008181610568015281816110b80152611b1101526000818161041f01528181611ad3015281816124f1015281816125aa015281816125e60152818161266001526126bd0152612e1e6000f3fe6080604052600436106103545760003560e01c80638da5cb5b116101c6578063c0246668116100f7578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d3146109cf578063f2fde38b146109e5578063f637434214610a05578063f8b45b0514610a1b57600080fd5b8063dd62ed3e1461095e578063e2f45605146109a4578063e884f260146109ba57600080fd5b8063c876d0b9116100d1578063c876d0b9146108f8578063c8c8ebe414610912578063d257b34f14610928578063d85ba0631461094857600080fd5b8063c024666814610898578063c17b5b8c146108b8578063c18bc195146108d857600080fd5b80639fccce3211610164578063a9059cbb1161013e578063a9059cbb14610809578063aacebbe314610829578063b62496f514610849578063bbc0c7421461087957600080fd5b80639fccce32146107bd578063a0d82dc5146107d3578063a457c2d7146107e957600080fd5b8063924de9b7116101a0578063924de9b71461075257806395d89b41146107725780639a7a23d6146107875780639c3b4fdc146107a757600080fd5b80638da5cb5b146106fe5780638ea5220f1461071c578063921369131461073c57600080fd5b806339509351116102a0578063715018a61161023e57806375f0a8741161021857806375f0a874146106935780637bce5a04146106b35780638095d564146106c95780638a8c523c146106e957600080fd5b8063715018a614610649578063751039fc1461065e5780637571336a1461067357600080fd5b80634fbee1931161027a5780634fbee193146105a45780636a486a8e146105dd5780636ddd1713146105f357806370a082311461061357600080fd5b8063395093511461053657806349bd5a5e146105565780634a62bb651461058a57600080fd5b80631816467f1161030d578063203e727e116102e7578063203e727e146104c457806323b872dd146104e457806327c8f83514610504578063313ce5671461051a57600080fd5b80631816467f146104785780631a8145bb146104985780631f3fed8f146104ae57600080fd5b806306fdde0314610360578063095ea7b31461038b57806310d5de53146103bb578063153a1f3e146103eb5780631694505e1461040d57806318160ddd1461045957600080fd5b3661035b57005b600080fd5b34801561036c57600080fd5b50610375610a31565b604051610382919061273b565b60405180910390f35b34801561039757600080fd5b506103ab6103a636600461279e565b610ac3565b6040519015158152602001610382565b3480156103c757600080fd5b506103ab6103d63660046127ca565b601a6020526000908152604090205460ff1681565b3480156103f757600080fd5b5061040b6104063660046128bd565b610ada565b005b34801561041957600080fd5b506104417f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610382565b34801561046557600080fd5b506002545b604051908152602001610382565b34801561048457600080fd5b5061040b6104933660046127ca565b610c45565b3480156104a457600080fd5b5061046a60175481565b3480156104ba57600080fd5b5061046a60165481565b3480156104d057600080fd5b5061040b6104df36600461297f565b610ccc565b3480156104f057600080fd5b506103ab6104ff366004612998565b610da9565b34801561051057600080fd5b5061044161dead81565b34801561052657600080fd5b5060405160128152602001610382565b34801561054257600080fd5b506103ab61055136600461279e565b610e53565b34801561056257600080fd5b506104417f000000000000000000000000000000000000000000000000000000000000000081565b34801561059657600080fd5b50600b546103ab9060ff1681565b3480156105b057600080fd5b506103ab6105bf3660046127ca565b6001600160a01b031660009081526019602052604090205460ff1690565b3480156105e957600080fd5b5061046a60125481565b3480156105ff57600080fd5b50600b546103ab9062010000900460ff1681565b34801561061f57600080fd5b5061046a61062e3660046127ca565b6001600160a01b031660009081526020819052604090205490565b34801561065557600080fd5b5061040b610e8f565b34801561066a57600080fd5b506103ab610ec5565b34801561067f57600080fd5b5061040b61068e3660046129e9565b610f02565b34801561069f57600080fd5b50600654610441906001600160a01b031681565b3480156106bf57600080fd5b5061046a600f5481565b3480156106d557600080fd5b5061040b6106e4366004612a1e565b610f57565b3480156106f557600080fd5b5061040b610ffa565b34801561070a57600080fd5b506005546001600160a01b0316610441565b34801561072857600080fd5b50600754610441906001600160a01b031681565b34801561074857600080fd5b5061046a60135481565b34801561075e57600080fd5b5061040b61076d366004612a4a565b611037565b34801561077e57600080fd5b5061037561107d565b34801561079357600080fd5b5061040b6107a23660046129e9565b61108c565b3480156107b357600080fd5b5061046a60115481565b3480156107c957600080fd5b5061046a60185481565b3480156107df57600080fd5b5061046a60155481565b3480156107f557600080fd5b506103ab61080436600461279e565b61116b565b34801561081557600080fd5b506103ab61082436600461279e565b611204565b34801561083557600080fd5b5061040b6108443660046127ca565b611211565b34801561085557600080fd5b506103ab6108643660046127ca565b601b6020526000908152604090205460ff1681565b34801561088557600080fd5b50600b546103ab90610100900460ff1681565b3480156108a457600080fd5b5061040b6108b33660046129e9565b611298565b3480156108c457600080fd5b5061040b6108d3366004612a1e565b611321565b3480156108e457600080fd5b5061040b6108f336600461297f565b6113c4565b34801561090457600080fd5b50600d546103ab9060ff1681565b34801561091e57600080fd5b5061046a60085481565b34801561093457600080fd5b506103ab61094336600461297f565b611495565b34801561095457600080fd5b5061046a600e5481565b34801561096a57600080fd5b5061046a610979366004612a65565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156109b057600080fd5b5061046a60095481565b3480156109c657600080fd5b506103ab6115ec565b3480156109db57600080fd5b5061046a60105481565b3480156109f157600080fd5b5061040b610a003660046127ca565b611629565b348015610a1157600080fd5b5061046a60145481565b348015610a2757600080fd5b5061046a600a5481565b606060038054610a4090612a9e565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6c90612a9e565b8015610ab95780601f10610a8e57610100808354040283529160200191610ab9565b820191906000526020600020905b815481529060010190602001808311610a9c57829003601f168201915b5050505050905090565b6000610ad03384846116c4565b5060015b92915050565b6005546001600160a01b03163314610b0d5760405162461bcd60e51b8152600401610b0490612ad8565b60405180910390fd5b8051825114610b5e5760405162461bcd60e51b815260206004820152601e60248201527f417272617973206d757374206265207468652073616d65206c656e67746800006044820152606401610b04565b606482511115610bbb5760405162461bcd60e51b815260206004820152602260248201527f57616c6c657473206c697374206c656e677468206d757374206265203c3d2031604482015261030360f41b6064820152608401610b04565b60005b8251811015610c40576000838281518110610bdb57610bdb612b0d565b602002602001015190506000610bef601290565b610bfa90600a612c1d565b848481518110610c0c57610c0c612b0d565b6020026020010151610c1e9190612c2c565b9050610c2b3383836117e8565b50508080610c3890612c43565b915050610bbe565b505050565b6005546001600160a01b03163314610c6f5760405162461bcd60e51b8152600401610b0490612ad8565b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610cf65760405162461bcd60e51b8152600401610b0490612ad8565b670de0b6b3a76400006103e8610d0b60025490565b610d16906001612c2c565b610d209190612c5c565b610d2a9190612c5c565b811015610d915760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610b04565b610da381670de0b6b3a7640000612c2c565b60085550565b6000610db684848461193d565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610e3b5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610b04565b610e4885338584036116c4565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610ad0918590610e8a908690612c7e565b6116c4565b6005546001600160a01b03163314610eb95760405162461bcd60e51b8152600401610b0490612ad8565b610ec3600061218f565b565b6005546000906001600160a01b03163314610ef25760405162461bcd60e51b8152600401610b0490612ad8565b50600b805460ff19169055600190565b6005546001600160a01b03163314610f2c5760405162461bcd60e51b8152600401610b0490612ad8565b6001600160a01b03919091166000908152601a60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610f815760405162461bcd60e51b8152600401610b0490612ad8565b600f8390556010829055601181905580610f9b8385612c7e565b610fa59190612c7e565b600e819055600a1015610c405760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c6573730000006044820152606401610b04565b6005546001600160a01b031633146110245760405162461bcd60e51b8152600401610b0490612ad8565b600b805462ffff00191662010100179055565b6005546001600160a01b031633146110615760405162461bcd60e51b8152600401610b0490612ad8565b600b8054911515620100000262ff000019909216919091179055565b606060048054610a4090612a9e565b6005546001600160a01b031633146110b65760405162461bcd60e51b8152600401610b0490612ad8565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b03160361115d5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610b04565b61116782826121e1565b5050565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156111ed5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610b04565b6111fa33858584036116c4565b5060019392505050565b6000610ad033848461193d565b6005546001600160a01b0316331461123b5760405162461bcd60e51b8152600401610b0490612ad8565b6006546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146112c25760405162461bcd60e51b8152600401610b0490612ad8565b6001600160a01b038216600081815260196020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b0316331461134b5760405162461bcd60e51b8152600401610b0490612ad8565b601383905560148290556015819055806113658385612c7e565b61136f9190612c7e565b6012819055600f1015610c405760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313525206f72206c6573730000006044820152606401610b04565b6005546001600160a01b031633146113ee5760405162461bcd60e51b8152600401610b0490612ad8565b670de0b6b3a76400006103e861140360025490565b61140e906005612c2c565b6114189190612c5c565b6114229190612c5c565b81101561147d5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610b04565b61148f81670de0b6b3a7640000612c2c565b600a5550565b6005546000906001600160a01b031633146114c25760405162461bcd60e51b8152600401610b0490612ad8565b620186a06114cf60025490565b6114da906001612c2c565b6114e49190612c5c565b8210156115515760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610b04565b6103e861155d60025490565b611568906005612c2c565b6115729190612c5c565b8211156115de5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610b04565b50600981905560015b919050565b6005546000906001600160a01b031633146116195760405162461bcd60e51b8152600401610b0490612ad8565b50600d805460ff19169055600190565b6005546001600160a01b031633146116535760405162461bcd60e51b8152600401610b0490612ad8565b6001600160a01b0381166116b85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b04565b6116c18161218f565b50565b6001600160a01b0383166117265760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610b04565b6001600160a01b0382166117875760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610b04565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661180e5760405162461bcd60e51b8152600401610b0490612c91565b6001600160a01b0382166118345760405162461bcd60e51b8152600401610b0490612cd6565b6001600160a01b038316600090815260208190526040902054818110156118ac5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610b04565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906118e3908490612c7e565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161192f91815260200190565b60405180910390a350505050565b6001600160a01b0383166119635760405162461bcd60e51b8152600401610b0490612c91565b6001600160a01b0382166119895760405162461bcd60e51b8152600401610b0490612cd6565b8060000361199d57610c40838360006117e8565b600b5460ff1615611e5a576005546001600160a01b038481169116148015906119d457506005546001600160a01b03838116911614155b80156119e857506001600160a01b03821615155b80156119ff57506001600160a01b03821661dead14155b8015611a155750600554600160a01b900460ff16155b15611e5a57600b54610100900460ff16611aad576001600160a01b03831660009081526019602052604090205460ff1680611a6857506001600160a01b03821660009081526019602052604090205460ff165b611aad5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610b04565b600d5460ff1615611bf4576005546001600160a01b03838116911614801590611b0857507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b8015611b4657507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b15611bf457326000908152600c60205260409020544311611be15760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610b04565b326000908152600c602052604090204390555b6001600160a01b0383166000908152601b602052604090205460ff168015611c3557506001600160a01b0382166000908152601a602052604090205460ff16155b15611d1957600854811115611caa5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610b04565b600a546001600160a01b038316600090815260208190526040902054611cd09083612c7e565b1115611d145760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610b04565b611e5a565b6001600160a01b0382166000908152601b602052604090205460ff168015611d5a57506001600160a01b0383166000908152601a602052604090205460ff16155b15611dd057600854811115611d145760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610b04565b6001600160a01b0382166000908152601a602052604090205460ff16611e5a57600a546001600160a01b038316600090815260208190526040902054611e169083612c7e565b1115611e5a5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610b04565b3060009081526020819052604090205460095481108015908190611e865750600b5462010000900460ff165b8015611e9c5750600554600160a01b900460ff16155b8015611ec157506001600160a01b0385166000908152601b602052604090205460ff16155b8015611ee657506001600160a01b03851660009081526019602052604090205460ff16155b8015611f0b57506001600160a01b03841660009081526019602052604090205460ff16155b15611f39576005805460ff60a01b1916600160a01b179055611f2b612235565b6005805460ff60a01b191690555b6005546001600160a01b03861660009081526019602052604090205460ff600160a01b909204821615911680611f8757506001600160a01b03851660009081526019602052604090205460ff165b15611f90575060005b6000811561217b576001600160a01b0386166000908152601b602052604090205460ff168015611fc257506000601254115b1561208057611fe76064611fe16012548861246f90919063ffffffff16565b90612482565b905060125460145482611ffa9190612c2c565b6120049190612c5c565b601760008282546120159190612c7e565b909155505060125460155461202a9083612c2c565b6120349190612c5c565b601860008282546120459190612c7e565b909155505060125460135461205a9083612c2c565b6120649190612c5c565b601660008282546120759190612c7e565b9091555061215d9050565b6001600160a01b0387166000908152601b602052604090205460ff1680156120aa57506000600e54115b1561215d576120c96064611fe1600e548861246f90919063ffffffff16565b9050600e54601054826120dc9190612c2c565b6120e69190612c5c565b601760008282546120f79190612c7e565b9091555050600e5460115461210c9083612c2c565b6121169190612c5c565b601860008282546121279190612c7e565b9091555050600e54600f5461213c9083612c2c565b6121469190612c5c565b601660008282546121579190612c7e565b90915550505b801561216e5761216e8730836117e8565b6121788186612d19565b94505b6121868787876117e8565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152601b6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b306000908152602081905260408120549050600060185460165460175461225c9190612c7e565b6122669190612c7e565b90506000821580612275575081155b1561227f57505050565b60095461228d906014612c2c565b8311156122a5576009546122a2906014612c2c565b92505b6000600283601754866122b89190612c2c565b6122c29190612c5c565b6122cc9190612c5c565b905060006122da858361248e565b9050476122e68261249a565b60006122f2478361248e565b9050600061230f87611fe16016548561246f90919063ffffffff16565b9050600061232c88611fe16018548661246f90919063ffffffff16565b905060008161233b8486612d19565b6123459190612d19565b60006017819055601681905560188190556007546040519293506001600160a01b031691849181818185875af1925050503d80600081146123a2576040519150601f19603f3d011682016040523d82523d6000602084013e6123a7565b606091505b509098505086158015906123bb5750600081115b1561240e576123ca878261265a565b601754604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d806000811461245b576040519150601f19603f3d011682016040523d82523d6000602084013e612460565b606091505b50505050505050505050505050565b600061247b8284612c2c565b9392505050565b600061247b8284612c5c565b600061247b8284612d19565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106124cf576124cf612b0d565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561254d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125719190612d2c565b8160018151811061258457612584612b0d565b60200260200101906001600160a01b031690816001600160a01b0316815250506125cf307f0000000000000000000000000000000000000000000000000000000000000000846116c4565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790612624908590600090869030904290600401612d49565b600060405180830381600087803b15801561263e57600080fd5b505af1158015612652573d6000803e3d6000fd5b505050505050565b612685307f0000000000000000000000000000000000000000000000000000000000000000846116c4565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f305d71990839060c40160606040518083038185885af115801561270f573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906127349190612dba565b5050505050565b600060208083528351808285015260005b818110156127685785810183015185820160400152820161274c565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146116c157600080fd5b600080604083850312156127b157600080fd5b82356127bc81612789565b946020939093013593505050565b6000602082840312156127dc57600080fd5b813561247b81612789565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715612826576128266127e7565b604052919050565b600067ffffffffffffffff821115612848576128486127e7565b5060051b60200190565b600082601f83011261286357600080fd5b813560206128786128738361282e565b6127fd565b82815260059290921b8401810191818101908684111561289757600080fd5b8286015b848110156128b2578035835291830191830161289b565b509695505050505050565b600080604083850312156128d057600080fd5b823567ffffffffffffffff808211156128e857600080fd5b818501915085601f8301126128fc57600080fd5b8135602061290c6128738361282e565b82815260059290921b8401810191818101908984111561292b57600080fd5b948201945b8386101561295257853561294381612789565b82529482019490820190612930565b9650508601359250508082111561296857600080fd5b5061297585828601612852565b9150509250929050565b60006020828403121561299157600080fd5b5035919050565b6000806000606084860312156129ad57600080fd5b83356129b881612789565b925060208401356129c881612789565b929592945050506040919091013590565b803580151581146115e757600080fd5b600080604083850312156129fc57600080fd5b8235612a0781612789565b9150612a15602084016129d9565b90509250929050565b600080600060608486031215612a3357600080fd5b505081359360208301359350604090920135919050565b600060208284031215612a5c57600080fd5b61247b826129d9565b60008060408385031215612a7857600080fd5b8235612a8381612789565b91506020830135612a9381612789565b809150509250929050565b600181811c90821680612ab257607f821691505b602082108103612ad257634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600181815b80851115612b74578160001904821115612b5a57612b5a612b23565b80851615612b6757918102915b93841c9390800290612b3e565b509250929050565b600082612b8b57506001610ad4565b81612b9857506000610ad4565b8160018114612bae5760028114612bb857612bd4565b6001915050610ad4565b60ff841115612bc957612bc9612b23565b50506001821b610ad4565b5060208310610133831016604e8410600b8410161715612bf7575081810a610ad4565b612c018383612b39565b8060001904821115612c1557612c15612b23565b029392505050565b600061247b60ff841683612b7c565b8082028115828204841417610ad457610ad4612b23565b600060018201612c5557612c55612b23565b5060010190565b600082612c7957634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115610ad457610ad4612b23565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610ad457610ad4612b23565b600060208284031215612d3e57600080fd5b815161247b81612789565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612d995784516001600160a01b031683529383019391830191600101612d74565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215612dcf57600080fd5b835192506020840151915060408401519050925092509256fea264697066735822122035c87230d5a9a57ca05f0c16e5e6586ac8620a89ccda8d13e64b952538e4653764736f6c634300081100334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106103545760003560e01c80638da5cb5b116101c6578063c0246668116100f7578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d3146109cf578063f2fde38b146109e5578063f637434214610a05578063f8b45b0514610a1b57600080fd5b8063dd62ed3e1461095e578063e2f45605146109a4578063e884f260146109ba57600080fd5b8063c876d0b9116100d1578063c876d0b9146108f8578063c8c8ebe414610912578063d257b34f14610928578063d85ba0631461094857600080fd5b8063c024666814610898578063c17b5b8c146108b8578063c18bc195146108d857600080fd5b80639fccce3211610164578063a9059cbb1161013e578063a9059cbb14610809578063aacebbe314610829578063b62496f514610849578063bbc0c7421461087957600080fd5b80639fccce32146107bd578063a0d82dc5146107d3578063a457c2d7146107e957600080fd5b8063924de9b7116101a0578063924de9b71461075257806395d89b41146107725780639a7a23d6146107875780639c3b4fdc146107a757600080fd5b80638da5cb5b146106fe5780638ea5220f1461071c578063921369131461073c57600080fd5b806339509351116102a0578063715018a61161023e57806375f0a8741161021857806375f0a874146106935780637bce5a04146106b35780638095d564146106c95780638a8c523c146106e957600080fd5b8063715018a614610649578063751039fc1461065e5780637571336a1461067357600080fd5b80634fbee1931161027a5780634fbee193146105a45780636a486a8e146105dd5780636ddd1713146105f357806370a082311461061357600080fd5b8063395093511461053657806349bd5a5e146105565780634a62bb651461058a57600080fd5b80631816467f1161030d578063203e727e116102e7578063203e727e146104c457806323b872dd146104e457806327c8f83514610504578063313ce5671461051a57600080fd5b80631816467f146104785780631a8145bb146104985780631f3fed8f146104ae57600080fd5b806306fdde0314610360578063095ea7b31461038b57806310d5de53146103bb578063153a1f3e146103eb5780631694505e1461040d57806318160ddd1461045957600080fd5b3661035b57005b600080fd5b34801561036c57600080fd5b50610375610a31565b604051610382919061273b565b60405180910390f35b34801561039757600080fd5b506103ab6103a636600461279e565b610ac3565b6040519015158152602001610382565b3480156103c757600080fd5b506103ab6103d63660046127ca565b601a6020526000908152604090205460ff1681565b3480156103f757600080fd5b5061040b6104063660046128bd565b610ada565b005b34801561041957600080fd5b506104417f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610382565b34801561046557600080fd5b506002545b604051908152602001610382565b34801561048457600080fd5b5061040b6104933660046127ca565b610c45565b3480156104a457600080fd5b5061046a60175481565b3480156104ba57600080fd5b5061046a60165481565b3480156104d057600080fd5b5061040b6104df36600461297f565b610ccc565b3480156104f057600080fd5b506103ab6104ff366004612998565b610da9565b34801561051057600080fd5b5061044161dead81565b34801561052657600080fd5b5060405160128152602001610382565b34801561054257600080fd5b506103ab61055136600461279e565b610e53565b34801561056257600080fd5b506104417f00000000000000000000000024b146802d5e9fdd913a1168e3e2903eab23d8cb81565b34801561059657600080fd5b50600b546103ab9060ff1681565b3480156105b057600080fd5b506103ab6105bf3660046127ca565b6001600160a01b031660009081526019602052604090205460ff1690565b3480156105e957600080fd5b5061046a60125481565b3480156105ff57600080fd5b50600b546103ab9062010000900460ff1681565b34801561061f57600080fd5b5061046a61062e3660046127ca565b6001600160a01b031660009081526020819052604090205490565b34801561065557600080fd5b5061040b610e8f565b34801561066a57600080fd5b506103ab610ec5565b34801561067f57600080fd5b5061040b61068e3660046129e9565b610f02565b34801561069f57600080fd5b50600654610441906001600160a01b031681565b3480156106bf57600080fd5b5061046a600f5481565b3480156106d557600080fd5b5061040b6106e4366004612a1e565b610f57565b3480156106f557600080fd5b5061040b610ffa565b34801561070a57600080fd5b506005546001600160a01b0316610441565b34801561072857600080fd5b50600754610441906001600160a01b031681565b34801561074857600080fd5b5061046a60135481565b34801561075e57600080fd5b5061040b61076d366004612a4a565b611037565b34801561077e57600080fd5b5061037561107d565b34801561079357600080fd5b5061040b6107a23660046129e9565b61108c565b3480156107b357600080fd5b5061046a60115481565b3480156107c957600080fd5b5061046a60185481565b3480156107df57600080fd5b5061046a60155481565b3480156107f557600080fd5b506103ab61080436600461279e565b61116b565b34801561081557600080fd5b506103ab61082436600461279e565b611204565b34801561083557600080fd5b5061040b6108443660046127ca565b611211565b34801561085557600080fd5b506103ab6108643660046127ca565b601b6020526000908152604090205460ff1681565b34801561088557600080fd5b50600b546103ab90610100900460ff1681565b3480156108a457600080fd5b5061040b6108b33660046129e9565b611298565b3480156108c457600080fd5b5061040b6108d3366004612a1e565b611321565b3480156108e457600080fd5b5061040b6108f336600461297f565b6113c4565b34801561090457600080fd5b50600d546103ab9060ff1681565b34801561091e57600080fd5b5061046a60085481565b34801561093457600080fd5b506103ab61094336600461297f565b611495565b34801561095457600080fd5b5061046a600e5481565b34801561096a57600080fd5b5061046a610979366004612a65565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156109b057600080fd5b5061046a60095481565b3480156109c657600080fd5b506103ab6115ec565b3480156109db57600080fd5b5061046a60105481565b3480156109f157600080fd5b5061040b610a003660046127ca565b611629565b348015610a1157600080fd5b5061046a60145481565b348015610a2757600080fd5b5061046a600a5481565b606060038054610a4090612a9e565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6c90612a9e565b8015610ab95780601f10610a8e57610100808354040283529160200191610ab9565b820191906000526020600020905b815481529060010190602001808311610a9c57829003601f168201915b5050505050905090565b6000610ad03384846116c4565b5060015b92915050565b6005546001600160a01b03163314610b0d5760405162461bcd60e51b8152600401610b0490612ad8565b60405180910390fd5b8051825114610b5e5760405162461bcd60e51b815260206004820152601e60248201527f417272617973206d757374206265207468652073616d65206c656e67746800006044820152606401610b04565b606482511115610bbb5760405162461bcd60e51b815260206004820152602260248201527f57616c6c657473206c697374206c656e677468206d757374206265203c3d2031604482015261030360f41b6064820152608401610b04565b60005b8251811015610c40576000838281518110610bdb57610bdb612b0d565b602002602001015190506000610bef601290565b610bfa90600a612c1d565b848481518110610c0c57610c0c612b0d565b6020026020010151610c1e9190612c2c565b9050610c2b3383836117e8565b50508080610c3890612c43565b915050610bbe565b505050565b6005546001600160a01b03163314610c6f5760405162461bcd60e51b8152600401610b0490612ad8565b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610cf65760405162461bcd60e51b8152600401610b0490612ad8565b670de0b6b3a76400006103e8610d0b60025490565b610d16906001612c2c565b610d209190612c5c565b610d2a9190612c5c565b811015610d915760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610b04565b610da381670de0b6b3a7640000612c2c565b60085550565b6000610db684848461193d565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610e3b5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610b04565b610e4885338584036116c4565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610ad0918590610e8a908690612c7e565b6116c4565b6005546001600160a01b03163314610eb95760405162461bcd60e51b8152600401610b0490612ad8565b610ec3600061218f565b565b6005546000906001600160a01b03163314610ef25760405162461bcd60e51b8152600401610b0490612ad8565b50600b805460ff19169055600190565b6005546001600160a01b03163314610f2c5760405162461bcd60e51b8152600401610b0490612ad8565b6001600160a01b03919091166000908152601a60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610f815760405162461bcd60e51b8152600401610b0490612ad8565b600f8390556010829055601181905580610f9b8385612c7e565b610fa59190612c7e565b600e819055600a1015610c405760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c6573730000006044820152606401610b04565b6005546001600160a01b031633146110245760405162461bcd60e51b8152600401610b0490612ad8565b600b805462ffff00191662010100179055565b6005546001600160a01b031633146110615760405162461bcd60e51b8152600401610b0490612ad8565b600b8054911515620100000262ff000019909216919091179055565b606060048054610a4090612a9e565b6005546001600160a01b031633146110b65760405162461bcd60e51b8152600401610b0490612ad8565b7f00000000000000000000000024b146802d5e9fdd913a1168e3e2903eab23d8cb6001600160a01b0316826001600160a01b03160361115d5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610b04565b61116782826121e1565b5050565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156111ed5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610b04565b6111fa33858584036116c4565b5060019392505050565b6000610ad033848461193d565b6005546001600160a01b0316331461123b5760405162461bcd60e51b8152600401610b0490612ad8565b6006546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146112c25760405162461bcd60e51b8152600401610b0490612ad8565b6001600160a01b038216600081815260196020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b0316331461134b5760405162461bcd60e51b8152600401610b0490612ad8565b601383905560148290556015819055806113658385612c7e565b61136f9190612c7e565b6012819055600f1015610c405760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313525206f72206c6573730000006044820152606401610b04565b6005546001600160a01b031633146113ee5760405162461bcd60e51b8152600401610b0490612ad8565b670de0b6b3a76400006103e861140360025490565b61140e906005612c2c565b6114189190612c5c565b6114229190612c5c565b81101561147d5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610b04565b61148f81670de0b6b3a7640000612c2c565b600a5550565b6005546000906001600160a01b031633146114c25760405162461bcd60e51b8152600401610b0490612ad8565b620186a06114cf60025490565b6114da906001612c2c565b6114e49190612c5c565b8210156115515760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610b04565b6103e861155d60025490565b611568906005612c2c565b6115729190612c5c565b8211156115de5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610b04565b50600981905560015b919050565b6005546000906001600160a01b031633146116195760405162461bcd60e51b8152600401610b0490612ad8565b50600d805460ff19169055600190565b6005546001600160a01b031633146116535760405162461bcd60e51b8152600401610b0490612ad8565b6001600160a01b0381166116b85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b04565b6116c18161218f565b50565b6001600160a01b0383166117265760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610b04565b6001600160a01b0382166117875760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610b04565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661180e5760405162461bcd60e51b8152600401610b0490612c91565b6001600160a01b0382166118345760405162461bcd60e51b8152600401610b0490612cd6565b6001600160a01b038316600090815260208190526040902054818110156118ac5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610b04565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906118e3908490612c7e565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161192f91815260200190565b60405180910390a350505050565b6001600160a01b0383166119635760405162461bcd60e51b8152600401610b0490612c91565b6001600160a01b0382166119895760405162461bcd60e51b8152600401610b0490612cd6565b8060000361199d57610c40838360006117e8565b600b5460ff1615611e5a576005546001600160a01b038481169116148015906119d457506005546001600160a01b03838116911614155b80156119e857506001600160a01b03821615155b80156119ff57506001600160a01b03821661dead14155b8015611a155750600554600160a01b900460ff16155b15611e5a57600b54610100900460ff16611aad576001600160a01b03831660009081526019602052604090205460ff1680611a6857506001600160a01b03821660009081526019602052604090205460ff165b611aad5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610b04565b600d5460ff1615611bf4576005546001600160a01b03838116911614801590611b0857507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b8015611b4657507f00000000000000000000000024b146802d5e9fdd913a1168e3e2903eab23d8cb6001600160a01b0316826001600160a01b031614155b15611bf457326000908152600c60205260409020544311611be15760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610b04565b326000908152600c602052604090204390555b6001600160a01b0383166000908152601b602052604090205460ff168015611c3557506001600160a01b0382166000908152601a602052604090205460ff16155b15611d1957600854811115611caa5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610b04565b600a546001600160a01b038316600090815260208190526040902054611cd09083612c7e565b1115611d145760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610b04565b611e5a565b6001600160a01b0382166000908152601b602052604090205460ff168015611d5a57506001600160a01b0383166000908152601a602052604090205460ff16155b15611dd057600854811115611d145760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610b04565b6001600160a01b0382166000908152601a602052604090205460ff16611e5a57600a546001600160a01b038316600090815260208190526040902054611e169083612c7e565b1115611e5a5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610b04565b3060009081526020819052604090205460095481108015908190611e865750600b5462010000900460ff165b8015611e9c5750600554600160a01b900460ff16155b8015611ec157506001600160a01b0385166000908152601b602052604090205460ff16155b8015611ee657506001600160a01b03851660009081526019602052604090205460ff16155b8015611f0b57506001600160a01b03841660009081526019602052604090205460ff16155b15611f39576005805460ff60a01b1916600160a01b179055611f2b612235565b6005805460ff60a01b191690555b6005546001600160a01b03861660009081526019602052604090205460ff600160a01b909204821615911680611f8757506001600160a01b03851660009081526019602052604090205460ff165b15611f90575060005b6000811561217b576001600160a01b0386166000908152601b602052604090205460ff168015611fc257506000601254115b1561208057611fe76064611fe16012548861246f90919063ffffffff16565b90612482565b905060125460145482611ffa9190612c2c565b6120049190612c5c565b601760008282546120159190612c7e565b909155505060125460155461202a9083612c2c565b6120349190612c5c565b601860008282546120459190612c7e565b909155505060125460135461205a9083612c2c565b6120649190612c5c565b601660008282546120759190612c7e565b9091555061215d9050565b6001600160a01b0387166000908152601b602052604090205460ff1680156120aa57506000600e54115b1561215d576120c96064611fe1600e548861246f90919063ffffffff16565b9050600e54601054826120dc9190612c2c565b6120e69190612c5c565b601760008282546120f79190612c7e565b9091555050600e5460115461210c9083612c2c565b6121169190612c5c565b601860008282546121279190612c7e565b9091555050600e54600f5461213c9083612c2c565b6121469190612c5c565b601660008282546121579190612c7e565b90915550505b801561216e5761216e8730836117e8565b6121788186612d19565b94505b6121868787876117e8565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152601b6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b306000908152602081905260408120549050600060185460165460175461225c9190612c7e565b6122669190612c7e565b90506000821580612275575081155b1561227f57505050565b60095461228d906014612c2c565b8311156122a5576009546122a2906014612c2c565b92505b6000600283601754866122b89190612c2c565b6122c29190612c5c565b6122cc9190612c5c565b905060006122da858361248e565b9050476122e68261249a565b60006122f2478361248e565b9050600061230f87611fe16016548561246f90919063ffffffff16565b9050600061232c88611fe16018548661246f90919063ffffffff16565b905060008161233b8486612d19565b6123459190612d19565b60006017819055601681905560188190556007546040519293506001600160a01b031691849181818185875af1925050503d80600081146123a2576040519150601f19603f3d011682016040523d82523d6000602084013e6123a7565b606091505b509098505086158015906123bb5750600081115b1561240e576123ca878261265a565b601754604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d806000811461245b576040519150601f19603f3d011682016040523d82523d6000602084013e612460565b606091505b50505050505050505050505050565b600061247b8284612c2c565b9392505050565b600061247b8284612c5c565b600061247b8284612d19565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106124cf576124cf612b0d565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561254d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125719190612d2c565b8160018151811061258457612584612b0d565b60200260200101906001600160a01b031690816001600160a01b0316815250506125cf307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846116c4565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790612624908590600090869030904290600401612d49565b600060405180830381600087803b15801561263e57600080fd5b505af1158015612652573d6000803e3d6000fd5b505050505050565b612685307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846116c4565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03169063f305d71990839060c40160606040518083038185885af115801561270f573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906127349190612dba565b5050505050565b600060208083528351808285015260005b818110156127685785810183015185820160400152820161274c565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146116c157600080fd5b600080604083850312156127b157600080fd5b82356127bc81612789565b946020939093013593505050565b6000602082840312156127dc57600080fd5b813561247b81612789565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715612826576128266127e7565b604052919050565b600067ffffffffffffffff821115612848576128486127e7565b5060051b60200190565b600082601f83011261286357600080fd5b813560206128786128738361282e565b6127fd565b82815260059290921b8401810191818101908684111561289757600080fd5b8286015b848110156128b2578035835291830191830161289b565b509695505050505050565b600080604083850312156128d057600080fd5b823567ffffffffffffffff808211156128e857600080fd5b818501915085601f8301126128fc57600080fd5b8135602061290c6128738361282e565b82815260059290921b8401810191818101908984111561292b57600080fd5b948201945b8386101561295257853561294381612789565b82529482019490820190612930565b9650508601359250508082111561296857600080fd5b5061297585828601612852565b9150509250929050565b60006020828403121561299157600080fd5b5035919050565b6000806000606084860312156129ad57600080fd5b83356129b881612789565b925060208401356129c881612789565b929592945050506040919091013590565b803580151581146115e757600080fd5b600080604083850312156129fc57600080fd5b8235612a0781612789565b9150612a15602084016129d9565b90509250929050565b600080600060608486031215612a3357600080fd5b505081359360208301359350604090920135919050565b600060208284031215612a5c57600080fd5b61247b826129d9565b60008060408385031215612a7857600080fd5b8235612a8381612789565b91506020830135612a9381612789565b809150509250929050565b600181811c90821680612ab257607f821691505b602082108103612ad257634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600181815b80851115612b74578160001904821115612b5a57612b5a612b23565b80851615612b6757918102915b93841c9390800290612b3e565b509250929050565b600082612b8b57506001610ad4565b81612b9857506000610ad4565b8160018114612bae5760028114612bb857612bd4565b6001915050610ad4565b60ff841115612bc957612bc9612b23565b50506001821b610ad4565b5060208310610133831016604e8410600b8410161715612bf7575081810a610ad4565b612c018383612b39565b8060001904821115612c1557612c15612b23565b029392505050565b600061247b60ff841683612b7c565b8082028115828204841417610ad457610ad4612b23565b600060018201612c5557612c55612b23565b5060010190565b600082612c7957634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115610ad457610ad4612b23565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610ad457610ad4612b23565b600060208284031215612d3e57600080fd5b815161247b81612789565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612d995784516001600160a01b031683529383019391830191600101612d74565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215612dcf57600080fd5b835192506020840151915060408401519050925092509256fea264697066735822122035c87230d5a9a57ca05f0c16e5e6586ac8620a89ccda8d13e64b952538e4653764736f6c63430008110033

Deployed Bytecode Sourcemap

32932:17079:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9786:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12094:210;;;;;;;;;;-1:-1:-1;12094:210:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;12094:210:0;1023:187:1;34279:63:0;;;;;;;;;;-1:-1:-1;34279:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;46568:554;;;;;;;;;;-1:-1:-1;46568:554:0;;;;;:::i;:::-;;:::i;:::-;;33011:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;4145:32:1;;;4127:51;;4115:2;4100:18;33011:51:0;3954:230:1;10906:108:0;;;;;;;;;;-1:-1:-1;10994:12:0;;10906:108;;;4335:25:1;;;4323:2;4308:18;10906:108:0;4189:177:1;41544:157:0;;;;;;;;;;-1:-1:-1;41544:157:0;;;;;:::i;:::-;;:::i;34063:33::-;;;;;;;;;;;;;;;;34023;;;;;;;;;;;;;;;;38858:275;;;;;;;;;;-1:-1:-1;38858:275:0;;;;;:::i;:::-;;:::i;12786:529::-;;;;;;;;;;-1:-1:-1;12786:529:0;;;;;:::i;:::-;;:::i;33114:53::-;;;;;;;;;;;;33160:6;33114:53;;10748:93;;;;;;;;;;-1:-1:-1;10748:93:0;;10831:2;5367:36:1;;5355:2;5340:18;10748:93:0;5225:184:1;13724:297:0;;;;;;;;;;-1:-1:-1;13724:297:0;;;;;:::i;:::-;;:::i;33069:38::-;;;;;;;;;;;;;;;33391:33;;;;;;;;;;-1:-1:-1;33391:33:0;;;;;;;;41709:126;;;;;;;;;;-1:-1:-1;41709:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;41799:28:0;41775:4;41799:28;;;:19;:28;;;;;;;;;41709:126;33878:28;;;;;;;;;;;;;;;;33471:31;;;;;;;;;;-1:-1:-1;33471:31:0;;;;;;;;;;;11077:177;;;;;;;;;;-1:-1:-1;11077:177:0;;;;;:::i;:::-;-1:-1:-1;;;;;11228:18:0;11196:7;11228:18;;;;;;;;;;;;11077:177;2905:103;;;;;;;;;;;;;:::i;37966:121::-;;;;;;;;;;;;;:::i;39405:167::-;;;;;;;;;;-1:-1:-1;39405:167:0;;;;;:::i;:::-;;:::i;33206:30::-;;;;;;;;;;-1:-1:-1;33206:30:0;;;;-1:-1:-1;;;;;33206:30:0;;;33771;;;;;;;;;;;;;;;;39776:403;;;;;;;;;;-1:-1:-1;39776:403:0;;;;;:::i;:::-;;:::i;37802:112::-;;;;;;;;;;;;;:::i;2254:87::-;;;;;;;;;;-1:-1:-1;2327:6:0;;-1:-1:-1;;;;;2327:6:0;2254:87;;33243:24;;;;;;;;;;-1:-1:-1;33243:24:0;;;;-1:-1:-1;;;;;33243:24:0;;;33913:31;;;;;;;;;;;;;;;;39668:100;;;;;;;;;;-1:-1:-1;39668:100:0;;;;;:::i;:::-;;:::i;10005:104::-;;;;;;;;;;;;;:::i;40797:304::-;;;;;;;;;;-1:-1:-1;40797:304:0;;;;;:::i;:::-;;:::i;33845:24::-;;;;;;;;;;;;;;;;34103:27;;;;;;;;;;;;;;;;33989:25;;;;;;;;;;;;;;;;14524:482;;;;;;;;;;-1:-1:-1;14524:482:0;;;;;:::i;:::-;;:::i;11467:216::-;;;;;;;;;;-1:-1:-1;11467:216:0;;;;;:::i;:::-;;:::i;41305:231::-;;;;;;;;;;-1:-1:-1;41305:231:0;;;;;:::i;:::-;;:::i;34500:57::-;;;;;;;;;;-1:-1:-1;34500:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;33431:33;;;;;;;;;;-1:-1:-1;33431:33:0;;;;;;;;;;;40607:182;;;;;;;;;;-1:-1:-1;40607:182:0;;;;;:::i;:::-;;:::i;40187:412::-;;;;;;;;;;-1:-1:-1;40187:412:0;;;;;:::i;:::-;;:::i;39141:256::-;;;;;;;;;;-1:-1:-1;39141:256:0;;;;;:::i;:::-;;:::i;33689:39::-;;;;;;;;;;-1:-1:-1;33689:39:0;;;;;;;;33276:35;;;;;;;;;;;;;;;;38353:497;;;;;;;;;;-1:-1:-1;38353:497:0;;;;;:::i;:::-;;:::i;33737:27::-;;;;;;;;;;;;;;;;11746:201;;;;;;;;;;-1:-1:-1;11746:201:0;;;;;:::i;:::-;-1:-1:-1;;;;;11912:18:0;;;11880:7;11912:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11746:201;33318:33;;;;;;;;;;;;;;;;38148:135;;;;;;;;;;;;;:::i;33808:30::-;;;;;;;;;;;;;;;;3163:238;;;;;;;;;;-1:-1:-1;3163:238:0;;;;;:::i;:::-;;:::i;33951:31::-;;;;;;;;;;;;;;;;33358:24;;;;;;;;;;;;;;;;9786:100;9840:13;9873:5;9866:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9786:100;:::o;12094:210::-;12213:4;12235:39;982:10;12258:7;12267:6;12235:8;:39::i;:::-;-1:-1:-1;12292:4:0;12094:210;;;;;:::o;46568:554::-;2327:6;;-1:-1:-1;;;;;2327:6:0;982:10;2474:23;2466:68;;;;-1:-1:-1;;;2466:68:0;;;;;;;:::i;:::-;;;;;;;;;46735:7:::1;:14;46717:7;:14;:32;46695:112;;;::::0;-1:-1:-1;;;46695:112:0;;7746:2:1;46695:112:0::1;::::0;::::1;7728:21:1::0;7785:2;7765:18;;;7758:30;7824:32;7804:18;;;7797:60;7874:18;;46695:112:0::1;7544:354:1::0;46695:112:0::1;46844:3;46826:7;:14;:21;;46818:68;;;::::0;-1:-1:-1;;;46818:68:0;;8105:2:1;46818:68:0::1;::::0;::::1;8087:21:1::0;8144:2;8124:18;;;8117:30;8183:34;8163:18;;;8156:62;-1:-1:-1;;;8234:18:1;;;8227:32;8276:19;;46818:68:0::1;7903:398:1::0;46818:68:0::1;46902:9;46897:218;46921:7;:14;46917:1;:18;46897:218;;;46957:14;46974:7;46982:1;46974:10;;;;;;;;:::i;:::-;;;;;;;46957:27;;46999:14;47034:10;10831:2:::0;;10748:93;47034:10:::1;47030:14;::::0;:2:::1;:14;:::i;:::-;47016:7;47024:1;47016:10;;;;;;;;:::i;:::-;;;;;;;:29;;;;:::i;:::-;46999:46;;47060:43;47076:10;47088:6;47096;47060:15;:43::i;:::-;46942:173;;46937:3;;;;;:::i;:::-;;;;46897:218;;;;46568:554:::0;;:::o;41544:157::-;2327:6;;-1:-1:-1;;;;;2327:6:0;982:10;2474:23;2466:68;;;;-1:-1:-1;;;2466:68:0;;;;;;;:::i;:::-;41651:9:::1;::::0;41623:38:::1;::::0;-1:-1:-1;;;;;41651:9:0;;::::1;::::0;41623:38;::::1;::::0;::::1;::::0;41651:9:::1;::::0;41623:38:::1;41672:9;:21:::0;;-1:-1:-1;;;;;;41672:21:0::1;-1:-1:-1::0;;;;;41672:21:0;;;::::1;::::0;;;::::1;::::0;;41544:157::o;38858:275::-;2327:6;;-1:-1:-1;;;;;2327:6:0;982:10;2474:23;2466:68;;;;-1:-1:-1;;;2466:68:0;;;;;;;:::i;:::-;38995:4:::1;38987;38966:13;10994:12:::0;;;10906:108;38966:13:::1;:17;::::0;38982:1:::1;38966:17;:::i;:::-;38965:26;;;;:::i;:::-;38964:35;;;;:::i;:::-;38954:6;:45;;38932:142;;;::::0;-1:-1:-1;;;38932:142:0;;10690:2:1;38932:142:0::1;::::0;::::1;10672:21:1::0;10729:2;10709:18;;;10702:30;10768:34;10748:18;;;10741:62;-1:-1:-1;;;10819:18:1;;;10812:45;10874:19;;38932:142:0::1;10488:411:1::0;38932:142:0::1;39108:17;:6:::0;39118::::1;39108:17;:::i;:::-;39085:20;:40:::0;-1:-1:-1;38858:275:0:o;12786:529::-;12926:4;12943:36;12953:6;12961:9;12972:6;12943:9;:36::i;:::-;-1:-1:-1;;;;;13019:19:0;;12992:24;13019:19;;;:11;:19;;;;;;;;982:10;13019:33;;;;;;;;13085:26;;;;13063:116;;;;-1:-1:-1;;;13063:116:0;;11106:2:1;13063:116:0;;;11088:21:1;11145:2;11125:18;;;11118:30;11184:34;11164:18;;;11157:62;-1:-1:-1;;;11235:18:1;;;11228:38;11283:19;;13063:116:0;10904:404:1;13063:116:0;13215:57;13224:6;982:10;13265:6;13246:16;:25;13215:8;:57::i;:::-;-1:-1:-1;13303:4:0;;12786:529;-1:-1:-1;;;;12786:529:0:o;13724:297::-;982:10;13839:4;13933:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13933:34:0;;;;;;;;;;13839:4;;13861:130;;13911:7;;13933:47;;13970:10;;13933:47;:::i;:::-;13861:8;:130::i;2905:103::-;2327:6;;-1:-1:-1;;;;;2327:6:0;982:10;2474:23;2466:68;;;;-1:-1:-1;;;2466:68:0;;;;;;;:::i;:::-;2970:30:::1;2997:1;2970:18;:30::i;:::-;2905:103::o:0;37966:121::-;2327:6;;38018:4;;-1:-1:-1;;;;;2327:6:0;982:10;2474:23;2466:68;;;;-1:-1:-1;;;2466:68:0;;;;;;;:::i;:::-;-1:-1:-1;38035:14:0::1;:22:::0;;-1:-1:-1;;38035:22:0::1;::::0;;;37966:121;:::o;39405:167::-;2327:6;;-1:-1:-1;;;;;2327:6:0;982:10;2474:23;2466:68;;;;-1:-1:-1;;;2466:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39518:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;39518:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;39405:167::o;39776:403::-;2327:6;;-1:-1:-1;;;;;2327:6:0;982:10;2474:23;2466:68;;;;-1:-1:-1;;;2466:68:0;;;;;;;:::i;:::-;39926:15:::1;:31:::0;;;39968:15:::1;:31:::0;;;40010:9:::1;:19:::0;;;40022:7;40055:33:::1;39986:13:::0;39944;40055:33:::1;:::i;:::-;:45;;;;:::i;:::-;40040:12;:60:::0;;;40135:2:::1;-1:-1:-1::0;40119:18:0::1;40111:60;;;::::0;-1:-1:-1;;;40111:60:0;;11645:2:1;40111:60:0::1;::::0;::::1;11627:21:1::0;11684:2;11664:18;;;11657:30;11723:31;11703:18;;;11696:59;11772:18;;40111:60:0::1;11443:353:1::0;37802:112:0;2327:6;;-1:-1:-1;;;;;2327:6:0;982:10;2474:23;2466:68;;;;-1:-1:-1;;;2466:68:0;;;;;;;:::i;:::-;37857:13:::1;:20:::0;;-1:-1:-1;;37888:18:0;;;;;37802:112::o;39668:100::-;2327:6;;-1:-1:-1;;;;;2327:6:0;982:10;2474:23;2466:68;;;;-1:-1:-1;;;2466:68:0;;;;;;;:::i;:::-;39739:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;39739:21:0;;::::1;::::0;;;::::1;::::0;;39668:100::o;10005:104::-;10061:13;10094:7;10087:14;;;;;:::i;40797:304::-;2327:6;;-1:-1:-1;;;;;2327:6:0;982:10;2474:23;2466:68;;;;-1:-1:-1;;;2466:68:0;;;;;;;:::i;:::-;40941:13:::1;-1:-1:-1::0;;;;;40933:21:0::1;:4;-1:-1:-1::0;;;;;40933:21:0::1;::::0;40911:128:::1;;;::::0;-1:-1:-1;;;40911:128:0;;12003:2:1;40911:128:0::1;::::0;::::1;11985:21:1::0;12042:2;12022:18;;;12015:30;12081:34;12061:18;;;12054:62;12152:27;12132:18;;;12125:55;12197:19;;40911:128:0::1;11801:421:1::0;40911:128:0::1;41052:41;41081:4;41087:5;41052:28;:41::i;:::-;40797:304:::0;;:::o;14524:482::-;982:10;14644:4;14693:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14693:34:0;;;;;;;;;;14760:35;;;;14738:122;;;;-1:-1:-1;;;14738:122:0;;12429:2:1;14738:122:0;;;12411:21:1;12468:2;12448:18;;;12441:30;12507:34;12487:18;;;12480:62;-1:-1:-1;;;12558:18:1;;;12551:35;12603:19;;14738:122:0;12227:401:1;14738:122:0;14896:67;982:10;14919:7;14947:15;14928:16;:34;14896:8;:67::i;:::-;-1:-1:-1;14994:4:0;;14524:482;-1:-1:-1;;;14524:482:0:o;11467:216::-;11589:4;11611:42;982:10;11635:9;11646:6;11611:9;:42::i;41305:231::-;2327:6;;-1:-1:-1;;;;;2327:6:0;982:10;2474:23;2466:68;;;;-1:-1:-1;;;2466:68:0;;;;;;;:::i;:::-;41465:15:::1;::::0;41422:59:::1;::::0;-1:-1:-1;;;;;41465:15:0;;::::1;::::0;41422:59;::::1;::::0;::::1;::::0;41465:15:::1;::::0;41422:59:::1;41492:15;:36:::0;;-1:-1:-1;;;;;;41492:36:0::1;-1:-1:-1::0;;;;;41492:36:0;;;::::1;::::0;;;::::1;::::0;;41305:231::o;40607:182::-;2327:6;;-1:-1:-1;;;;;2327:6:0;982:10;2474:23;2466:68;;;;-1:-1:-1;;;2466:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;40692:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;40692:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;40747:34;;1163:41:1;;;40747:34:0::1;::::0;1136:18:1;40747:34:0::1;;;;;;;40607:182:::0;;:::o;40187:412::-;2327:6;;-1:-1:-1;;;;;2327:6:0;982:10;2474:23;2466:68;;;;-1:-1:-1;;;2466:68:0;;;;;;;:::i;:::-;40338:16:::1;:32:::0;;;40381:16:::1;:32:::0;;;40424:10:::1;:20:::0;;;40437:7;40471:35:::1;40400:13:::0;40357;40471:35:::1;:::i;:::-;:48;;;;:::i;:::-;40455:13;:64:::0;;;40555:2:::1;-1:-1:-1::0;40538:19:0::1;40530:61;;;::::0;-1:-1:-1;;;40530:61:0;;12835:2:1;40530:61:0::1;::::0;::::1;12817:21:1::0;12874:2;12854:18;;;12847:30;12913:31;12893:18;;;12886:59;12962:18;;40530:61:0::1;12633:353:1::0;39141:256:0;2327:6;;-1:-1:-1;;;;;2327:6:0;982:10;2474:23;2466:68;;;;-1:-1:-1;;;2466:68:0;;;;;;;:::i;:::-;39281:4:::1;39273;39252:13;10994:12:::0;;;10906:108;39252:13:::1;:17;::::0;39268:1:::1;39252:17;:::i;:::-;39251:26;;;;:::i;:::-;39250:35;;;;:::i;:::-;39240:6;:45;;39218:131;;;::::0;-1:-1:-1;;;39218:131:0;;13193:2:1;39218:131:0::1;::::0;::::1;13175:21:1::0;13232:2;13212:18;;;13205:30;13271:34;13251:18;;;13244:62;-1:-1:-1;;;13322:18:1;;;13315:34;13366:19;;39218:131:0::1;12991:400:1::0;39218:131:0::1;39372:17;:6:::0;39382::::1;39372:17;:::i;:::-;39360:9;:29:::0;-1:-1:-1;39141:256:0:o;38353:497::-;2327:6;;38461:4;;-1:-1:-1;;;;;2327:6:0;982:10;2474:23;2466:68;;;;-1:-1:-1;;;2466:68:0;;;;;;;:::i;:::-;38540:6:::1;38519:13;10994:12:::0;;;10906:108;38519:13:::1;:17;::::0;38535:1:::1;38519:17;:::i;:::-;38518:28;;;;:::i;:::-;38505:9;:41;;38483:144;;;::::0;-1:-1:-1;;;38483:144:0;;13598:2:1;38483:144:0::1;::::0;::::1;13580:21:1::0;13637:2;13617:18;;;13610:30;13676:34;13656:18;;;13649:62;-1:-1:-1;;;13727:18:1;;;13720:51;13788:19;;38483:144:0::1;13396:417:1::0;38483:144:0::1;38695:4;38674:13;10994:12:::0;;;10906:108;38674:13:::1;:17;::::0;38690:1:::1;38674:17;:::i;:::-;38673:26;;;;:::i;:::-;38660:9;:39;;38638:141;;;::::0;-1:-1:-1;;;38638:141:0;;14020:2:1;38638:141:0::1;::::0;::::1;14002:21:1::0;14059:2;14039:18;;;14032:30;14098:34;14078:18;;;14071:62;-1:-1:-1;;;14149:18:1;;;14142:50;14209:19;;38638:141:0::1;13818:416:1::0;38638:141:0::1;-1:-1:-1::0;38790:18:0::1;:30:::0;;;38838:4:::1;2545:1;38353:497:::0;;;:::o;38148:135::-;2327:6;;38208:4;;-1:-1:-1;;;;;2327:6:0;982:10;2474:23;2466:68;;;;-1:-1:-1;;;2466:68:0;;;;;;;:::i;:::-;-1:-1:-1;38225:20:0::1;:28:::0;;-1:-1:-1;;38225:28:0::1;::::0;;;38148:135;:::o;3163:238::-;2327:6;;-1:-1:-1;;;;;2327:6:0;982:10;2474:23;2466:68;;;;-1:-1:-1;;;2466:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3266:22:0;::::1;3244:110;;;::::0;-1:-1:-1;;;3244:110:0;;14441:2:1;3244:110:0::1;::::0;::::1;14423:21:1::0;14480:2;14460:18;;;14453:30;14519:34;14499:18;;;14492:62;-1:-1:-1;;;14570:18:1;;;14563:36;14616:19;;3244:110:0::1;14239:402:1::0;3244:110:0::1;3365:28;3384:8;3365:18;:28::i;:::-;3163:238:::0;:::o;18314:380::-;-1:-1:-1;;;;;18450:19:0;;18442:68;;;;-1:-1:-1;;;18442:68:0;;14848:2:1;18442:68:0;;;14830:21:1;14887:2;14867:18;;;14860:30;14926:34;14906:18;;;14899:62;-1:-1:-1;;;14977:18:1;;;14970:34;15021:19;;18442:68:0;14646:400:1;18442:68:0;-1:-1:-1;;;;;18529:21:0;;18521:68;;;;-1:-1:-1;;;18521:68:0;;15253:2:1;18521:68:0;;;15235:21:1;15292:2;15272:18;;;15265:30;15331:34;15311:18;;;15304:62;-1:-1:-1;;;15382:18:1;;;15375:32;15424:19;;18521:68:0;15051:398:1;18521:68:0;-1:-1:-1;;;;;18602:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18654:32;;4335:25:1;;;18654:32:0;;4308:18:1;18654:32:0;;;;;;;18314:380;;;:::o;15496:770::-;-1:-1:-1;;;;;15636:20:0;;15628:70;;;;-1:-1:-1;;;15628:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15717:23:0;;15709:71;;;;-1:-1:-1;;;15709:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15877:17:0;;15853:21;15877:17;;;;;;;;;;;15927:23;;;;15905:111;;;;-1:-1:-1;;;15905:111:0;;16466:2:1;15905:111:0;;;16448:21:1;16505:2;16485:18;;;16478:30;16544:34;16524:18;;;16517:62;-1:-1:-1;;;16595:18:1;;;16588:36;16641:19;;15905:111:0;16264:402:1;15905:111:0;-1:-1:-1;;;;;16052:17:0;;;:9;:17;;;;;;;;;;;16072:22;;;16052:42;;16116:20;;;;;;;;:30;;16088:6;;16052:9;16116:30;;16088:6;;16116:30;:::i;:::-;;;;;;;;16181:9;-1:-1:-1;;;;;16164:35:0;16173:6;-1:-1:-1;;;;;16164:35:0;;16192:6;16164:35;;;;4335:25:1;;4323:2;4308:18;;4189:177;16164:35:0;;;;;;;;15617:649;15496:770;;;:::o;41843:4717::-;-1:-1:-1;;;;;41975:18:0;;41967:68;;;;-1:-1:-1;;;41967:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42054:16:0;;42046:64;;;;-1:-1:-1;;;42046:64:0;;;;;;;:::i;:::-;42127:6;42137:1;42127:11;42123:93;;42155:28;42171:4;42177:2;42181:1;42155:15;:28::i;42123:93::-;42232:14;;;;42228:2487;;;2327:6;;-1:-1:-1;;;;;42285:15:0;;;2327:6;;42285:15;;;;:49;;-1:-1:-1;2327:6:0;;-1:-1:-1;;;;;42321:13:0;;;2327:6;;42321:13;;42285:49;:86;;;;-1:-1:-1;;;;;;42355:16:0;;;;42285:86;:128;;;;-1:-1:-1;;;;;;42392:21:0;;42406:6;42392:21;;42285:128;:158;;;;-1:-1:-1;42435:8:0;;-1:-1:-1;;;42435:8:0;;;;42434:9;42285:158;42263:2441;;;42483:13;;;;;;;42478:223;;-1:-1:-1;;;;;42555:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;42584:23:0;;;;;;:19;:23;;;;;;;;42555:52;42521:160;;;;-1:-1:-1;;;42521:160:0;;16873:2:1;42521:160:0;;;16855:21:1;16912:2;16892:18;;;16885:30;-1:-1:-1;;;16931:18:1;;;16924:52;16993:18;;42521:160:0;16671:346:1;42521:160:0;42857:20;;;;42853:641;;;2327:6;;-1:-1:-1;;;;;42932:13:0;;;2327:6;;42932:13;;;;:72;;;42988:15;-1:-1:-1;;;;;42974:30:0;:2;-1:-1:-1;;;;;42974:30:0;;;42932:72;:129;;;;;43047:13;-1:-1:-1;;;;;43033:28:0;:2;-1:-1:-1;;;;;43033:28:0;;;42932:129;42902:573;;;43179:9;43150:39;;;;:28;:39;;;;;;43225:12;-1:-1:-1;43112:258:0;;;;-1:-1:-1;;;43112:258:0;;17224:2:1;43112:258:0;;;17206:21:1;17263:2;17243:18;;;17236:30;17302:34;17282:18;;;17275:62;17373:34;17353:18;;;17346:62;-1:-1:-1;;;17424:19:1;;;17417:40;17474:19;;43112:258:0;17022:477:1;43112:258:0;43426:9;43397:39;;;;:28;:39;;;;;43439:12;43397:54;;42902:573;-1:-1:-1;;;;;43568:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;43625:35:0;;;;;;:31;:35;;;;;;;;43624:36;43568:92;43542:1147;;;43747:20;;43737:6;:30;;43703:169;;;;-1:-1:-1;;;43703:169:0;;17706:2:1;43703:169:0;;;17688:21:1;17745:2;17725:18;;;17718:30;17784:34;17764:18;;;17757:62;-1:-1:-1;;;17835:18:1;;;17828:51;17896:19;;43703:169:0;17504:417:1;43703:169:0;43955:9;;-1:-1:-1;;;;;11228:18:0;;11196:7;11228:18;;;;;;;;;;;43929:22;;:6;:22;:::i;:::-;:35;;43895:140;;;;-1:-1:-1;;;43895:140:0;;18128:2:1;43895:140:0;;;18110:21:1;18167:2;18147:18;;;18140:30;-1:-1:-1;;;18186:18:1;;;18179:49;18245:18;;43895:140:0;17926:343:1;43895:140:0;43542:1147;;;-1:-1:-1;;;;;44133:29:0;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;;;;;;44188:37:0;;;;;;:31;:37;;;;;;;;44187:38;44133:92;44107:582;;;44312:20;;44302:6;:30;;44268:170;;;;-1:-1:-1;;;44268:170:0;;18476:2:1;44268:170:0;;;18458:21:1;18515:2;18495:18;;;18488:30;18554:34;18534:18;;;18527:62;-1:-1:-1;;;18605:18:1;;;18598:52;18667:19;;44268:170:0;18274:418:1;44107:582:0;-1:-1:-1;;;;;44469:35:0;;;;;;:31;:35;;;;;;;;44464:225;;44589:9;;-1:-1:-1;;;;;11228:18:0;;11196:7;11228:18;;;;;;;;;;;44563:22;;:6;:22;:::i;:::-;:35;;44529:140;;;;-1:-1:-1;;;44529:140:0;;18128:2:1;44529:140:0;;;18110:21:1;18167:2;18147:18;;;18140:30;-1:-1:-1;;;18186:18:1;;;18179:49;18245:18;;44529:140:0;17926:343:1;44529:140:0;44776:4;44727:28;11228:18;;;;;;;;;;;44834;;44810:42;;;;;;;44883:35;;-1:-1:-1;44907:11:0;;;;;;;44883:35;:61;;;;-1:-1:-1;44936:8:0;;-1:-1:-1;;;44936:8:0;;;;44935:9;44883:61;:110;;;;-1:-1:-1;;;;;;44962:31:0;;;;;;:25;:31;;;;;;;;44961:32;44883:110;:153;;;;-1:-1:-1;;;;;;45011:25:0;;;;;;:19;:25;;;;;;;;45010:26;44883:153;:194;;;;-1:-1:-1;;;;;;45054:23:0;;;;;;:19;:23;;;;;;;;45053:24;44883:194;44865:326;;;45104:8;:15;;-1:-1:-1;;;;45104:15:0;-1:-1:-1;;;45104:15:0;;;45136:10;:8;:10::i;:::-;45163:8;:16;;-1:-1:-1;;;;45163:16:0;;;44865:326;45219:8;;-1:-1:-1;;;;;45329:25:0;;45203:12;45329:25;;;:19;:25;;;;;;45219:8;-1:-1:-1;;;45219:8:0;;;;;45218:9;;45329:25;;:52;;-1:-1:-1;;;;;;45358:23:0;;;;;;:19;:23;;;;;;;;45329:52;45325:100;;;-1:-1:-1;45408:5:0;45325:100;45437:12;45542:7;45538:969;;;-1:-1:-1;;;;;45594:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;45643:1;45627:13;;:17;45594:50;45590:768;;;45672:34;45702:3;45672:25;45683:13;;45672:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;45665:41;;45775:13;;45755:16;;45748:4;:23;;;;:::i;:::-;45747:41;;;;:::i;:::-;45725:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;45845:13:0;;45831:10;;45824:17;;:4;:17;:::i;:::-;45823:35;;;;:::i;:::-;45807:12;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;;45927:13:0;;45907:16;;45900:23;;:4;:23;:::i;:::-;45899:41;;;;:::i;:::-;45877:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;45590:768:0;;-1:-1:-1;45590:768:0;;-1:-1:-1;;;;;46002:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;46052:1;46037:12;;:16;46002:51;45998:360;;;46081:33;46110:3;46081:24;46092:12;;46081:6;:10;;:24;;;;:::i;:33::-;46074:40;;46182:12;;46163:15;;46156:4;:22;;;;:::i;:::-;46155:39;;;;:::i;:::-;46133:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;46250:12:0;;46237:9;;46230:16;;:4;:16;:::i;:::-;46229:33;;;;:::i;:::-;46213:12;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;46330:12:0;;46311:15;;46304:22;;:4;:22;:::i;:::-;46303:39;;;;:::i;:::-;46281:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;45998:360:0;46378:8;;46374:91;;46407:42;46423:4;46437;46444;46407:15;:42::i;:::-;46481:14;46491:4;46481:14;;:::i;:::-;;;45538:969;46519:33;46535:4;46541:2;46545:6;46519:15;:33::i;:::-;41956:4604;;;;41843:4717;;;:::o;3561:191::-;3654:6;;;-1:-1:-1;;;;;3671:17:0;;;-1:-1:-1;;;;;;3671:17:0;;;;;;;3704:40;;3654:6;;;3671:17;3654:6;;3704:40;;3635:16;;3704:40;3624:128;3561:191;:::o;41109:188::-;-1:-1:-1;;;;;41192:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;41192:39:0;;;;;;;;;;41249:40;;41192:39;;:31;41249:40;;;41109:188;;:::o;48252:1756::-;48335:4;48291:23;11228:18;;;;;;;;;;;48291:50;;48352:25;48448:12;;48414:18;;48380;;:52;;;;:::i;:::-;:80;;;;:::i;:::-;48352:108;-1:-1:-1;48471:12:0;48500:20;;;:46;;-1:-1:-1;48524:22:0;;48500:46;48496:85;;;48563:7;;;48252:1756::o;48496:85::-;48615:18;;:23;;48636:2;48615:23;:::i;:::-;48597:15;:41;48593:115;;;48673:18;;:23;;48694:2;48673:23;:::i;:::-;48655:41;;48593:115;48769:23;48882:1;48849:17;48814:18;;48796:15;:36;;;;:::i;:::-;48795:71;;;;:::i;:::-;:88;;;;:::i;:::-;48769:114;-1:-1:-1;48894:26:0;48923:36;:15;48769:114;48923:19;:36::i;:::-;48894:65;-1:-1:-1;49000:21:0;49034:36;48894:65;49034:16;:36::i;:::-;49083:18;49104:44;:21;49130:17;49104:25;:44::i;:::-;49083:65;;49161:23;49187:81;49240:17;49187:34;49202:18;;49187:10;:14;;:34;;;;:::i;:81::-;49161:107;;49279:17;49299:51;49332:17;49299:28;49314:12;;49299:10;:14;;:28;;;;:::i;:51::-;49279:71;-1:-1:-1;49363:23:0;49279:71;49389:28;49402:15;49389:10;:28;:::i;:::-;:40;;;;:::i;:::-;49463:1;49442:18;:22;;;49475:18;:22;;;49508:12;:16;;;49559:9;;49551:45;;49363:66;;-1:-1:-1;;;;;;49559:9:0;;49582;;49551:45;49463:1;49551:45;49582:9;49559;49551:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49537:59:0;;-1:-1:-1;;49613:19:0;;;;;:42;;;49654:1;49636:15;:19;49613:42;49609:278;;;49672:46;49685:15;49702;49672:12;:46::i;:::-;49842:18;;49738:137;;;19242:25:1;;;19298:2;19283:18;;19276:34;;;19326:18;;;19319:34;;;;49738:137:0;;;;;;19230:2:1;49738:137:0;;;49609:278;49921:15;;49913:87;;-1:-1:-1;;;;;49921:15:0;;;;49964:21;;49913:87;;;;49964:21;49921:15;49913:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;48252:1756:0:o;23927:98::-;23985:7;24012:5;24016:1;24012;:5;:::i;:::-;24005:12;23927:98;-1:-1:-1;;;23927:98:0:o;24326:::-;24384:7;24411:5;24415:1;24411;:5;:::i;23570:98::-;23628:7;23655:5;23659:1;23655;:5;:::i;47130:589::-;47280:16;;;47294:1;47280:16;;;;;;;;47256:21;;47280:16;;;;;;;;;;-1:-1:-1;47280:16:0;47256:40;;47325:4;47307;47312:1;47307:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;47307:23:0;;;-1:-1:-1;;;;;47307:23:0;;;;;47351:15;-1:-1:-1;;;;;47351:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47341:4;47346:1;47341:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;47341:32:0;;;-1:-1:-1;;;;;47341:32:0;;;;;47386:62;47403:4;47418:15;47436:11;47386:8;:62::i;:::-;47487:224;;-1:-1:-1;;;47487:224:0;;-1:-1:-1;;;;;47487:15:0;:66;;;;:224;;47568:11;;47594:1;;47638:4;;47665;;47685:15;;47487:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47185:534;47130:589;:::o;47727:517::-;47875:62;47892:4;47907:15;47925:11;47875:8;:62::i;:::-;47980:256;;-1:-1:-1;;;47980:256:0;;48052:4;47980:256;;;20946:34:1;20996:18;;;20989:34;;;48098:1:0;21039:18:1;;;21032:34;;;21082:18;;;21075:34;33160:6:0;21125:19:1;;;21118:44;48210:15:0;21178:19:1;;;21171:35;47980:15:0;-1:-1:-1;;;;;47980:31:0;;;;48019:9;;20880:19:1;;47980:256:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;47727:517;;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1215:247::-;1274:6;1327:2;1315:9;1306:7;1302:23;1298:32;1295:52;;;1343:1;1340;1333:12;1295:52;1382:9;1369:23;1401:31;1426:5;1401:31;:::i;1467:127::-;1528:10;1523:3;1519:20;1516:1;1509:31;1559:4;1556:1;1549:15;1583:4;1580:1;1573:15;1599:275;1670:2;1664:9;1735:2;1716:13;;-1:-1:-1;;1712:27:1;1700:40;;1770:18;1755:34;;1791:22;;;1752:62;1749:88;;;1817:18;;:::i;:::-;1853:2;1846:22;1599:275;;-1:-1:-1;1599:275:1:o;1879:183::-;1939:4;1972:18;1964:6;1961:30;1958:56;;;1994:18;;:::i;:::-;-1:-1:-1;2039:1:1;2035:14;2051:4;2031:25;;1879:183::o;2067:662::-;2121:5;2174:3;2167:4;2159:6;2155:17;2151:27;2141:55;;2192:1;2189;2182:12;2141:55;2228:6;2215:20;2254:4;2278:60;2294:43;2334:2;2294:43;:::i;:::-;2278:60;:::i;:::-;2372:15;;;2458:1;2454:10;;;;2442:23;;2438:32;;;2403:12;;;;2482:15;;;2479:35;;;2510:1;2507;2500:12;2479:35;2546:2;2538:6;2534:15;2558:142;2574:6;2569:3;2566:15;2558:142;;;2640:17;;2628:30;;2678:12;;;;2591;;2558:142;;;-1:-1:-1;2718:5:1;2067:662;-1:-1:-1;;;;;;2067:662:1:o;2734:1215::-;2852:6;2860;2913:2;2901:9;2892:7;2888:23;2884:32;2881:52;;;2929:1;2926;2919:12;2881:52;2969:9;2956:23;2998:18;3039:2;3031:6;3028:14;3025:34;;;3055:1;3052;3045:12;3025:34;3093:6;3082:9;3078:22;3068:32;;3138:7;3131:4;3127:2;3123:13;3119:27;3109:55;;3160:1;3157;3150:12;3109:55;3196:2;3183:16;3218:4;3242:60;3258:43;3298:2;3258:43;:::i;3242:60::-;3336:15;;;3418:1;3414:10;;;;3406:19;;3402:28;;;3367:12;;;;3442:19;;;3439:39;;;3474:1;3471;3464:12;3439:39;3498:11;;;;3518:217;3534:6;3529:3;3526:15;3518:217;;;3614:3;3601:17;3631:31;3656:5;3631:31;:::i;:::-;3675:18;;3551:12;;;;3713;;;;3518:217;;;3754:5;-1:-1:-1;;3797:18:1;;3784:32;;-1:-1:-1;;3828:16:1;;;3825:36;;;3857:1;3854;3847:12;3825:36;;3880:63;3935:7;3924:8;3913:9;3909:24;3880:63;:::i;:::-;3870:73;;;2734:1215;;;;;:::o;4371:180::-;4430:6;4483:2;4471:9;4462:7;4458:23;4454:32;4451:52;;;4499:1;4496;4489:12;4451:52;-1:-1:-1;4522:23:1;;4371:180;-1:-1:-1;4371:180:1:o;4556:456::-;4633:6;4641;4649;4702:2;4690:9;4681:7;4677:23;4673:32;4670:52;;;4718:1;4715;4708:12;4670:52;4757:9;4744:23;4776:31;4801:5;4776:31;:::i;:::-;4826:5;-1:-1:-1;4883:2:1;4868:18;;4855:32;4896:33;4855:32;4896:33;:::i;:::-;4556:456;;4948:7;;-1:-1:-1;;;5002:2:1;4987:18;;;;4974:32;;4556:456::o;5414:160::-;5479:20;;5535:13;;5528:21;5518:32;;5508:60;;5564:1;5561;5554:12;5579:315;5644:6;5652;5705:2;5693:9;5684:7;5680:23;5676:32;5673:52;;;5721:1;5718;5711:12;5673:52;5760:9;5747:23;5779:31;5804:5;5779:31;:::i;:::-;5829:5;-1:-1:-1;5853:35:1;5884:2;5869:18;;5853:35;:::i;:::-;5843:45;;5579:315;;;;;:::o;5899:316::-;5976:6;5984;5992;6045:2;6033:9;6024:7;6020:23;6016:32;6013:52;;;6061:1;6058;6051:12;6013:52;-1:-1:-1;;6084:23:1;;;6154:2;6139:18;;6126:32;;-1:-1:-1;6205:2:1;6190:18;;;6177:32;;5899:316;-1:-1:-1;5899:316:1:o;6220:180::-;6276:6;6329:2;6317:9;6308:7;6304:23;6300:32;6297:52;;;6345:1;6342;6335:12;6297:52;6368:26;6384:9;6368:26;:::i;6405:388::-;6473:6;6481;6534:2;6522:9;6513:7;6509:23;6505:32;6502:52;;;6550:1;6547;6540:12;6502:52;6589:9;6576:23;6608:31;6633:5;6608:31;:::i;:::-;6658:5;-1:-1:-1;6715:2:1;6700:18;;6687:32;6728:33;6687:32;6728:33;:::i;:::-;6780:7;6770:17;;;6405:388;;;;;:::o;6798:380::-;6877:1;6873:12;;;;6920;;;6941:61;;6995:4;6987:6;6983:17;6973:27;;6941:61;7048:2;7040:6;7037:14;7017:18;7014:38;7011:161;;7094:10;7089:3;7085:20;7082:1;7075:31;7129:4;7126:1;7119:15;7157:4;7154:1;7147:15;7011:161;;6798:380;;;:::o;7183:356::-;7385:2;7367:21;;;7404:18;;;7397:30;7463:34;7458:2;7443:18;;7436:62;7530:2;7515:18;;7183:356::o;8306:127::-;8367:10;8362:3;8358:20;8355:1;8348:31;8398:4;8395:1;8388:15;8422:4;8419:1;8412:15;8438:127;8499:10;8494:3;8490:20;8487:1;8480:31;8530:4;8527:1;8520:15;8554:4;8551:1;8544:15;8570:422;8659:1;8702:5;8659:1;8716:270;8737:7;8727:8;8724:21;8716:270;;;8796:4;8792:1;8788:6;8784:17;8778:4;8775:27;8772:53;;;8805:18;;:::i;:::-;8855:7;8845:8;8841:22;8838:55;;;8875:16;;;;8838:55;8954:22;;;;8914:15;;;;8716:270;;;8720:3;8570:422;;;;;:::o;8997:806::-;9046:5;9076:8;9066:80;;-1:-1:-1;9117:1:1;9131:5;;9066:80;9165:4;9155:76;;-1:-1:-1;9202:1:1;9216:5;;9155:76;9247:4;9265:1;9260:59;;;;9333:1;9328:130;;;;9240:218;;9260:59;9290:1;9281:10;;9304:5;;;9328:130;9365:3;9355:8;9352:17;9349:43;;;9372:18;;:::i;:::-;-1:-1:-1;;9428:1:1;9414:16;;9443:5;;9240:218;;9542:2;9532:8;9529:16;9523:3;9517:4;9514:13;9510:36;9504:2;9494:8;9491:16;9486:2;9480:4;9477:12;9473:35;9470:77;9467:159;;;-1:-1:-1;9579:19:1;;;9611:5;;9467:159;9658:34;9683:8;9677:4;9658:34;:::i;:::-;9728:6;9724:1;9720:6;9716:19;9707:7;9704:32;9701:58;;;9739:18;;:::i;:::-;9777:20;;8997:806;-1:-1:-1;;;8997:806:1:o;9808:140::-;9866:5;9895:47;9936:4;9926:8;9922:19;9916:4;9895:47;:::i;9953:168::-;10026:9;;;10057;;10074:15;;;10068:22;;10054:37;10044:71;;10095:18;;:::i;10126:135::-;10165:3;10186:17;;;10183:43;;10206:18;;:::i;:::-;-1:-1:-1;10253:1:1;10242:13;;10126:135::o;10266:217::-;10306:1;10332;10322:132;;10376:10;10371:3;10367:20;10364:1;10357:31;10411:4;10408:1;10401:15;10439:4;10436:1;10429:15;10322:132;-1:-1:-1;10468:9:1;;10266:217::o;11313:125::-;11378:9;;;11399:10;;;11396:36;;;11412:18;;:::i;15454:401::-;15656:2;15638:21;;;15695:2;15675:18;;;15668:30;15734:34;15729:2;15714:18;;15707:62;-1:-1:-1;;;15800:2:1;15785:18;;15778:35;15845:3;15830:19;;15454:401::o;15860:399::-;16062:2;16044:21;;;16101:2;16081:18;;;16074:30;16140:34;16135:2;16120:18;;16113:62;-1:-1:-1;;;16206:2:1;16191:18;;16184:33;16249:3;16234:19;;15860:399::o;18697:128::-;18764:9;;;18785:11;;;18782:37;;;18799:18;;:::i;19364:251::-;19434:6;19487:2;19475:9;19466:7;19462:23;19458:32;19455:52;;;19503:1;19500;19493:12;19455:52;19535:9;19529:16;19554:31;19579:5;19554:31;:::i;19620:980::-;19882:4;19930:3;19919:9;19915:19;19961:6;19950:9;19943:25;19987:2;20025:6;20020:2;20009:9;20005:18;19998:34;20068:3;20063:2;20052:9;20048:18;20041:31;20092:6;20127;20121:13;20158:6;20150;20143:22;20196:3;20185:9;20181:19;20174:26;;20235:2;20227:6;20223:15;20209:29;;20256:1;20266:195;20280:6;20277:1;20274:13;20266:195;;;20345:13;;-1:-1:-1;;;;;20341:39:1;20329:52;;20436:15;;;;20401:12;;;;20377:1;20295:9;20266:195;;;-1:-1:-1;;;;;;;20517:32:1;;;;20512:2;20497:18;;20490:60;-1:-1:-1;;;20581:3:1;20566:19;20559:35;20478:3;19620:980;-1:-1:-1;;;19620:980:1:o;21217:306::-;21305:6;21313;21321;21374:2;21362:9;21353:7;21349:23;21345:32;21342:52;;;21390:1;21387;21380:12;21342:52;21419:9;21413:16;21403:26;;21469:2;21458:9;21454:18;21448:25;21438:35;;21513:2;21502:9;21498:18;21492:25;21482:35;;21217:306;;;;;:::o

Swarm Source

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