ETH Price: $2,670.90 (+1.92%)

Token

10 Inch (INCHES)
 

Overview

Max Total Supply

400 INCHES

Holders

47

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.000000000000000001 INCHES

Value
$0.00
0xfcc17c6da8e769c88da4f94b4a1a1a83a2127287
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:
INCHES

Compiler Version
v0.8.24+commit.e11b9ed9

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-02-21
*/

/**

Show off your size, and grab some $INCHES

Telegram: https://t.me/MYINCHES
Website: https://ShowOffYourSize.com
Medium: https://medium.com/@10inch
Twitter: https://twitter.com/10INCHERC/

*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.24;
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 Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

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


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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function WETH() external pure returns (address);

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

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

    string private _tokenName;
    address public topHolder;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;

    bool private swapping;

    address public marketingWallet;
    address public developmentWallet;

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

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

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

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

    uint256 public divisor;

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

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


    event ExcludeFromFees(address indexed account, bool isExcluded);

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

    constructor() ERC20("10 Inch", "INCHES") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

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

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

        uint256 _buyMarketingFee = 1;
        uint256 _buyLiquidityFee = 0;

        uint256 _sellMarketingFee = 1;
        uint256 _sellLiquidityFee = 0;

        uint256 _divisor = 100;

        uint256 totalSupply = 400 * 1e18;

        maxTransactionAmount =  totalSupply * 2 / 100; // 2% from total supply maxTransactionAmountTxn
        maxWallet = totalSupply * 2 / 100; // 2% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 20) / 100000; // 0.02% swap wallet

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

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

        divisor = _divisor;

        topHolder = address(0xbb6D127152f400E8FBbc298173A4f4C89aE97d42);
        marketingWallet = address(0xbb6D127152f400E8FBbc298173A4f4C89aE97d42);
        developmentWallet = address(0x837442f37d7303dA2Ab5dE4FA49d13BCA01d2371);
        
        _tokenName = "10 Inch";

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

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

        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(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;
    }

    // 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
    ) external onlyOwner {
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee;
        require(buyTotalFees.mul(100).div(divisor) <= 30, "Must keep fees at 30% or less");
    }

    function updateSellFees(
        uint256 _marketingFee,
        uint256 _liquidityFee
    ) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee;
        require(sellTotalFees.mul(100).div(divisor) <= 30, "Must keep fees at 30% or less");
    }

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

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


    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() &&
                from != developmentWallet &&
                to != developmentWallet &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ) {
                if (!tradingActive) {
                    require(
                        _isExcludedFromFees[from] || _isExcludedFromFees[to],
                        "Trading is not active."
                    );
                }

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack(amount);

            swapping = false;
        }

        bool takeFee = !swapping;

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

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

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

            amount -= fees;
        }

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

    function min(uint256 a, uint256 b) private pure returns (uint256){
      return (a>b)?b:a;
    }

    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,
            marketingWallet,
            block.timestamp
        );
    }

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

        uint256 swapAmount = min(amount, min(contractBalance, swapTokensAtAmount * 40));

        swapTokensForETH(swapAmount);
    }

    function changeTopHolder(address newTopHolder) public {
        require(msg.sender == marketingWallet, "Only the marketing wallet can change the top holder.");
        topHolder = newTopHolder;
    }

    function name() public view virtual override returns (string memory) {
        return _tokenName;
    }

    function changeTokenName(string memory newName) public {
        require(msg.sender == marketingWallet || msg.sender == topHolder, "Only the marketing wallet or top holder can change the token name.");
        _tokenName = newName;
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"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":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[{"internalType":"string","name":"newName","type":"string"}],"name":"changeTokenName","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newTopHolder","type":"address"}],"name":"changeTopHolder","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"developmentWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"divisor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"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":[],"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":"topHolder","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateBuyFees","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"}],"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"}]

60c0604052600d805462ffffff191660011790553480156200001f575f80fd5b5060405180604001604052806007815260200166062604092dcc6d60cb1b81525060405180604001604052806006815260200165494e4348455360d01b8152508160039081620000709190620006d7565b5060046200007f8282620006d7565b5050506200009c62000096620003de60201b60201c565b620003e2565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000be81600162000433565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000107573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200012d9190620007a3565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000179573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200019f9190620007a3565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015620001ea573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002109190620007a3565b6001600160a01b031660a08190526200022b90600162000433565b60015f818160646815af1d78b58c400000816200024a826002620007e6565b62000256919062000806565b600a55606462000268826002620007e6565b62000274919062000806565b600c55620186a062000288826014620007e6565b62000294919062000806565b600b55600f8690556010859055620002ad858762000826565b600e5560128490556013839055620002c6838562000826565b6011556014829055600780546001600160a01b031990811673bb6d127152f400e8fbbc298173a4f4c89ae97d42908117835560088054831690911790556009805490911673837442f37d7303da2ab5de4fa49d13bca01d23711790556040805180820190915290815266062604092dcc6d60cb1b60208201526006906200034e9082620006d7565b506200036e620003666005546001600160a01b031690565b6001620004ab565b6200037b306001620004ab565b6200038a61dead6001620004ab565b620003a9620003a16005546001600160a01b031690565b600162000433565b620003b630600162000433565b620003c561dead600162000433565b620003d1338262000553565b505050505050506200083c565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6005546001600160a01b03163314620004815760405162461bcd60e51b815260206004820181905260248201525f8051602062002b5883398151915260448201526064015b60405180910390fd5b6001600160a01b03919091165f908152601660205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314620004f55760405162461bcd60e51b815260206004820181905260248201525f8051602062002b58833981519152604482015260640162000478565b6001600160a01b0382165f81815260156020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620005ab5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000478565b8060025f828254620005be919062000826565b90915550506001600160a01b0382165f9081526020819052604081208054839290620005ec90849062000826565b90915550506040518181526001600160a01b038316905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200066357607f821691505b6020821081036200068257634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156200063557805f5260205f20601f840160051c81016020851015620006af5750805b601f840160051c820191505b81811015620006d0575f8155600101620006bb565b5050505050565b81516001600160401b03811115620006f357620006f36200063a565b6200070b816200070484546200064e565b8462000688565b602080601f83116001811462000741575f8415620007295750858301515b5f19600386901b1c1916600185901b1785556200079b565b5f85815260208120601f198616915b82811015620007715788860151825594840194600190910190840162000750565b50858210156200078f57878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b5f60208284031215620007b4575f80fd5b81516001600160a01b0381168114620007cb575f80fd5b9392505050565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417620008005762000800620007d2565b92915050565b5f826200082157634e487b7160e01b5f52601260045260245ffd5b500490565b80820180821115620008005762000800620007d2565b60805160a0516122c2620008965f395f8181610408015281816114a8015281816116b4015281816117be01528181611861015261191b01525f818161033101528181611bb301528181611c6a0152611ca901526122c25ff3fe60806040526004361061026d575f3560e01c80637bce5a041161014a578063c0246668116100be578063dd62ed3e11610078578063dd62ed3e14610754578063e2f4560514610798578063f11a24d3146107ad578063f2fde38b146107c2578063f6374342146107e1578063f8b45b05146107f6575f80fd5b8063c0246668146106ae578063c04a5414146106cd578063c18bc195146106ec578063c8c8ebe41461070b578063d257b34f14610720578063d85ba0631461073f575f80fd5b8063924de9b71161010f578063924de9b71461060057806395d89b411461061f578063a9059cbb14610633578063aacebbe314610652578063b0018bfc14610671578063bbc0c74214610690575f80fd5b80637bce5a04146105865780638001dd761461059b5780638a8c523c146105ba5780638da5cb5b146105ce57806392136913146105eb575f80fd5b80634a62bb65116101e15780636ddd1713116101a65780636ddd1713146104cd57806370a08231146104ec578063715018a614610520578063751039fc146105345780637571336a1461054857806375f0a87414610567575f80fd5b80634a62bb651461042a5780634fbee1931461044357806366ca9b831461047a5780636a486a8e146104995780636b61a93b146104ae575f80fd5b806318160ddd1161023257806318160ddd1461036b5780631f2dc5ef14610389578063203e727e1461039e57806323b872dd146103bd578063313ce567146103dc57806349bd5a5e146103f7575f80fd5b806302dbd8f81461027857806306fdde0314610299578063095ea7b3146102c357806310d5de53146102f25780631694505e14610320575f80fd5b3661027457005b5f80fd5b348015610283575f80fd5b50610297610292366004611d1b565b61080b565b005b3480156102a4575f80fd5b506102ad6108c5565b6040516102ba9190611d3b565b60405180910390f35b3480156102ce575f80fd5b506102e26102dd366004611d9b565b610955565b60405190151581526020016102ba565b3480156102fd575f80fd5b506102e261030c366004611dc5565b60166020525f908152604090205460ff1681565b34801561032b575f80fd5b506103537f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016102ba565b348015610376575f80fd5b506002545b6040519081526020016102ba565b348015610394575f80fd5b5061037b60145481565b3480156103a9575f80fd5b506102976103b8366004611de0565b61096b565b3480156103c8575f80fd5b506102e26103d7366004611df7565b610a48565b3480156103e7575f80fd5b50604051601281526020016102ba565b348015610402575f80fd5b506103537f000000000000000000000000000000000000000000000000000000000000000081565b348015610435575f80fd5b50600d546102e29060ff1681565b34801561044e575f80fd5b506102e261045d366004611dc5565b6001600160a01b03165f9081526015602052604090205460ff1690565b348015610485575f80fd5b50610297610494366004611d1b565b610af0565b3480156104a4575f80fd5b5061037b60115481565b3480156104b9575f80fd5b506102976104c8366004611dc5565b610b49565b3480156104d8575f80fd5b50600d546102e29062010000900460ff1681565b3480156104f7575f80fd5b5061037b610506366004611dc5565b6001600160a01b03165f9081526020819052604090205490565b34801561052b575f80fd5b50610297610be2565b34801561053f575f80fd5b506102e2610c17565b348015610553575f80fd5b50610297610562366004611e44565b610c53565b348015610572575f80fd5b50600854610353906001600160a01b031681565b348015610591575f80fd5b5061037b600f5481565b3480156105a6575f80fd5b50600754610353906001600160a01b031681565b3480156105c5575f80fd5b50610297610ca7565b3480156105d9575f80fd5b506005546001600160a01b0316610353565b3480156105f6575f80fd5b5061037b60125481565b34801561060b575f80fd5b5061029761061a366004611e77565b610ce4565b34801561062a575f80fd5b506102ad610d2a565b34801561063e575f80fd5b506102e261064d366004611d9b565b610d39565b34801561065d575f80fd5b5061029761066c366004611dc5565b610d45565b34801561067c575f80fd5b5061029761068b366004611ea4565b610dcb565b34801561069b575f80fd5b50600d546102e290610100900460ff1681565b3480156106b9575f80fd5b506102976106c8366004611e44565b610e77565b3480156106d8575f80fd5b50600954610353906001600160a01b031681565b3480156106f7575f80fd5b50610297610706366004611de0565b610eff565b348015610716575f80fd5b5061037b600a5481565b34801561072b575f80fd5b506102e261073a366004611de0565b610fd0565b34801561074a575f80fd5b5061037b600e5481565b34801561075f575f80fd5b5061037b61076e366004611f4f565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b3480156107a3575f80fd5b5061037b600b5481565b3480156107b8575f80fd5b5061037b60105481565b3480156107cd575f80fd5b506102976107dc366004611dc5565b611126565b3480156107ec575f80fd5b5061037b60135481565b348015610801575f80fd5b5061037b600c5481565b6005546001600160a01b0316331461083e5760405162461bcd60e51b815260040161083590611f86565b60405180910390fd5b601282905560138190556108528183611fcf565b6011819055601454601e91610873919061086d9060646111c1565b906111d3565b11156108c15760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420333025206f72206c6573730000006044820152606401610835565b5050565b6060600680546108d490611fe2565b80601f016020809104026020016040519081016040528092919081815260200182805461090090611fe2565b801561094b5780601f106109225761010080835404028352916020019161094b565b820191905f5260205f20905b81548152906001019060200180831161092e57829003601f168201915b5050505050905090565b5f6109613384846111de565b5060015b92915050565b6005546001600160a01b031633146109955760405162461bcd60e51b815260040161083590611f86565b670de0b6b3a76400006103e86109aa60025490565b6109b5906001612014565b6109bf919061202b565b6109c9919061202b565b811015610a305760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610835565b610a4281670de0b6b3a7640000612014565b600a5550565b5f610a54848484611301565b6001600160a01b0384165f90815260016020908152604080832033845290915290205482811015610ad85760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610835565b610ae585338584036111de565b506001949350505050565b6005546001600160a01b03163314610b1a5760405162461bcd60e51b815260040161083590611f86565b600f8290556010819055610b2e8183611fcf565b600e819055601454601e91610873919061086d9060646111c1565b6008546001600160a01b03163314610bc05760405162461bcd60e51b815260206004820152603460248201527f4f6e6c7920746865206d61726b6574696e672077616c6c65742063616e20636860448201527330b733b2903a3432903a37b8103437b63232b91760611b6064820152608401610835565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610c0c5760405162461bcd60e51b815260040161083590611f86565b610c155f611963565b565b6005545f906001600160a01b03163314610c435760405162461bcd60e51b815260040161083590611f86565b50600d805460ff19169055600190565b6005546001600160a01b03163314610c7d5760405162461bcd60e51b815260040161083590611f86565b6001600160a01b03919091165f908152601660205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610cd15760405162461bcd60e51b815260040161083590611f86565b600d805462ffff00191662010100179055565b6005546001600160a01b03163314610d0e5760405162461bcd60e51b815260040161083590611f86565b600d8054911515620100000262ff000019909216919091179055565b6060600480546108d490611fe2565b5f610961338484611301565b6005546001600160a01b03163314610d6f5760405162461bcd60e51b815260040161083590611f86565b6008546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b05674905f90a3600880546001600160a01b0319166001600160a01b0392909216919091179055565b6008546001600160a01b0316331480610dee57506007546001600160a01b031633145b610e6b5760405162461bcd60e51b815260206004820152604260248201527f4f6e6c7920746865206d61726b6574696e672077616c6c6574206f7220746f7060448201527f20686f6c6465722063616e206368616e67652074686520746f6b656e206e616d606482015261329760f11b608482015260a401610835565b60066108c18282612095565b6005546001600160a01b03163314610ea15760405162461bcd60e51b815260040161083590611f86565b6001600160a01b0382165f81815260156020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610f295760405162461bcd60e51b815260040161083590611f86565b670de0b6b3a76400006103e8610f3e60025490565b610f49906005612014565b610f53919061202b565b610f5d919061202b565b811015610fb85760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610835565b610fca81670de0b6b3a7640000612014565b600c5550565b6005545f906001600160a01b03163314610ffc5760405162461bcd60e51b815260040161083590611f86565b620186a061100960025490565b611014906001612014565b61101e919061202b565b82101561108b5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610835565b6103e861109760025490565b6110a2906005612014565b6110ac919061202b565b8211156111185760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610835565b50600b81905560015b919050565b6005546001600160a01b031633146111505760405162461bcd60e51b815260040161083590611f86565b6001600160a01b0381166111b55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610835565b6111be81611963565b50565b5f6111cc8284612014565b9392505050565b5f6111cc828461202b565b6001600160a01b0383166112405760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610835565b6001600160a01b0382166112a15760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610835565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166113275760405162461bcd60e51b815260040161083590612151565b6001600160a01b03821661134d5760405162461bcd60e51b815260040161083590612196565b805f036113645761135f83835f6119b4565b505050565b600d5460ff161561166a576005546001600160a01b0384811691161480159061139b57506005546001600160a01b03838116911614155b80156113b557506009546001600160a01b03848116911614155b80156113cf57506009546001600160a01b03838116911614155b80156113e357506001600160a01b03821615155b80156113fa57506001600160a01b03821661dead14155b80156114105750600754600160a01b900460ff16155b1561166a57600d54610100900460ff166114a6576001600160a01b0383165f9081526015602052604090205460ff168061146157506001600160a01b0382165f9081526015602052604090205460ff165b6114a65760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610835565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b03161480156114ff57506001600160a01b0382165f9081526016602052604090205460ff16155b156115e257600a548111156115745760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610835565b600c546001600160a01b0383165f908152602081905260409020546115999083611fcf565b11156115dd5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610835565b61166a565b6001600160a01b0382165f9081526016602052604090205460ff1661166a57600c546001600160a01b0383165f908152602081905260409020546116269083611fcf565b111561166a5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610835565b305f90815260208190526040902054600b54811080159081906116955750600d5462010000900460ff165b80156116ab5750600754600160a01b900460ff16155b80156116e857507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b0316145b801561170c57506001600160a01b0385165f9081526015602052604090205460ff16155b801561173057506001600160a01b0384165f9081526015602052604090205460ff16155b1561175f576007805460ff60a01b1916600160a01b17905561175183611b07565b6007805460ff60a01b191690555b6007546001600160a01b0386165f9081526015602052604090205460ff600160a01b9092048216159116806117ab57506001600160a01b0385165f9081526015602052604090205460ff165b156117b357505f5b5f805f831561194d577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316886001600160a01b03161480156117fe57505f601154115b1561185f5761181e60145461086d6011548a6111c190919063ffffffff16565b9250601154601354846118319190612014565b61183b919061202b565b91506011546012548461184e9190612014565b611858919061202b565b90506118fe565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316896001600160a01b03161480156118a157505f600e54115b156118fe576118c160145461086d600e548a6111c190919063ffffffff16565b9250600e54601054846118d49190612014565b6118de919061202b565b9150600e54600f54846118f19190612014565b6118fb919061202b565b90505b821561190f5761190f8930856119b4565b811561194057611940307f0000000000000000000000000000000000000000000000000000000000000000846119b4565b61194a83886121d9565b96505b6119588989896119b4565b505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0383166119da5760405162461bcd60e51b815260040161083590612151565b6001600160a01b038216611a005760405162461bcd60e51b815260040161083590612196565b6001600160a01b0383165f9081526020819052604090205481811015611a775760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610835565b6001600160a01b038085165f90815260208190526040808220858503905591851681529081208054849290611aad908490611fcf565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611af991815260200190565b60405180910390a350505050565b305f9081526020819052604081205490819003611b22575050565b5f611b3f83611b3a84600b546028611b3a9190612014565b611b4a565b905061135f81611b5e565b5f818311611b5857826111cc565b50919050565b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110611b9157611b916121ec565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c0d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c319190612200565b81600181518110611c4457611c446121ec565b60200260200101906001600160a01b031690816001600160a01b031681525050611c8f307f0000000000000000000000000000000000000000000000000000000000000000846111de565b60085460405163791ac94760e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000081169263791ac94792611cea9287925f9288929190911690429060040161221b565b5f604051808303815f87803b158015611d01575f80fd5b505af1158015611d13573d5f803e3d5ffd5b505050505050565b5f8060408385031215611d2c575f80fd5b50508035926020909101359150565b5f602080835283518060208501525f5b81811015611d6757858101830151858201604001528201611d4b565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146111be575f80fd5b5f8060408385031215611dac575f80fd5b8235611db781611d87565b946020939093013593505050565b5f60208284031215611dd5575f80fd5b81356111cc81611d87565b5f60208284031215611df0575f80fd5b5035919050565b5f805f60608486031215611e09575f80fd5b8335611e1481611d87565b92506020840135611e2481611d87565b929592945050506040919091013590565b80358015158114611121575f80fd5b5f8060408385031215611e55575f80fd5b8235611e6081611d87565b9150611e6e60208401611e35565b90509250929050565b5f60208284031215611e87575f80fd5b6111cc82611e35565b634e487b7160e01b5f52604160045260245ffd5b5f60208284031215611eb4575f80fd5b813567ffffffffffffffff80821115611ecb575f80fd5b818401915084601f830112611ede575f80fd5b813581811115611ef057611ef0611e90565b604051601f8201601f19908116603f01168101908382118183101715611f1857611f18611e90565b81604052828152876020848701011115611f30575f80fd5b826020860160208301375f928101602001929092525095945050505050565b5f8060408385031215611f60575f80fd5b8235611f6b81611d87565b91506020830135611f7b81611d87565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561096557610965611fbb565b600181811c90821680611ff657607f821691505b602082108103611b5857634e487b7160e01b5f52602260045260245ffd5b808202811582820484141761096557610965611fbb565b5f8261204557634e487b7160e01b5f52601260045260245ffd5b500490565b601f82111561135f57805f5260205f20601f840160051c8101602085101561206f5750805b601f840160051c820191505b8181101561208e575f815560010161207b565b5050505050565b815167ffffffffffffffff8111156120af576120af611e90565b6120c3816120bd8454611fe2565b8461204a565b602080601f8311600181146120f6575f84156120df5750858301515b5f19600386901b1c1916600185901b178555611d13565b5f85815260208120601f198616915b8281101561212457888601518255948401946001909101908401612105565b508582101561214157878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8181038181111561096557610965611fbb565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215612210575f80fd5b81516111cc81611d87565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b8181101561226b5784516001600160a01b031683529383019391830191600101612246565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212206136b00373e66480a2b1ba878d943e5682892df72c78e1115b650669fb72601664736f6c634300081800334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x60806040526004361061026d575f3560e01c80637bce5a041161014a578063c0246668116100be578063dd62ed3e11610078578063dd62ed3e14610754578063e2f4560514610798578063f11a24d3146107ad578063f2fde38b146107c2578063f6374342146107e1578063f8b45b05146107f6575f80fd5b8063c0246668146106ae578063c04a5414146106cd578063c18bc195146106ec578063c8c8ebe41461070b578063d257b34f14610720578063d85ba0631461073f575f80fd5b8063924de9b71161010f578063924de9b71461060057806395d89b411461061f578063a9059cbb14610633578063aacebbe314610652578063b0018bfc14610671578063bbc0c74214610690575f80fd5b80637bce5a04146105865780638001dd761461059b5780638a8c523c146105ba5780638da5cb5b146105ce57806392136913146105eb575f80fd5b80634a62bb65116101e15780636ddd1713116101a65780636ddd1713146104cd57806370a08231146104ec578063715018a614610520578063751039fc146105345780637571336a1461054857806375f0a87414610567575f80fd5b80634a62bb651461042a5780634fbee1931461044357806366ca9b831461047a5780636a486a8e146104995780636b61a93b146104ae575f80fd5b806318160ddd1161023257806318160ddd1461036b5780631f2dc5ef14610389578063203e727e1461039e57806323b872dd146103bd578063313ce567146103dc57806349bd5a5e146103f7575f80fd5b806302dbd8f81461027857806306fdde0314610299578063095ea7b3146102c357806310d5de53146102f25780631694505e14610320575f80fd5b3661027457005b5f80fd5b348015610283575f80fd5b50610297610292366004611d1b565b61080b565b005b3480156102a4575f80fd5b506102ad6108c5565b6040516102ba9190611d3b565b60405180910390f35b3480156102ce575f80fd5b506102e26102dd366004611d9b565b610955565b60405190151581526020016102ba565b3480156102fd575f80fd5b506102e261030c366004611dc5565b60166020525f908152604090205460ff1681565b34801561032b575f80fd5b506103537f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016102ba565b348015610376575f80fd5b506002545b6040519081526020016102ba565b348015610394575f80fd5b5061037b60145481565b3480156103a9575f80fd5b506102976103b8366004611de0565b61096b565b3480156103c8575f80fd5b506102e26103d7366004611df7565b610a48565b3480156103e7575f80fd5b50604051601281526020016102ba565b348015610402575f80fd5b506103537f0000000000000000000000003aea059e8b8dc434929b9f9ae30a77e3c142964881565b348015610435575f80fd5b50600d546102e29060ff1681565b34801561044e575f80fd5b506102e261045d366004611dc5565b6001600160a01b03165f9081526015602052604090205460ff1690565b348015610485575f80fd5b50610297610494366004611d1b565b610af0565b3480156104a4575f80fd5b5061037b60115481565b3480156104b9575f80fd5b506102976104c8366004611dc5565b610b49565b3480156104d8575f80fd5b50600d546102e29062010000900460ff1681565b3480156104f7575f80fd5b5061037b610506366004611dc5565b6001600160a01b03165f9081526020819052604090205490565b34801561052b575f80fd5b50610297610be2565b34801561053f575f80fd5b506102e2610c17565b348015610553575f80fd5b50610297610562366004611e44565b610c53565b348015610572575f80fd5b50600854610353906001600160a01b031681565b348015610591575f80fd5b5061037b600f5481565b3480156105a6575f80fd5b50600754610353906001600160a01b031681565b3480156105c5575f80fd5b50610297610ca7565b3480156105d9575f80fd5b506005546001600160a01b0316610353565b3480156105f6575f80fd5b5061037b60125481565b34801561060b575f80fd5b5061029761061a366004611e77565b610ce4565b34801561062a575f80fd5b506102ad610d2a565b34801561063e575f80fd5b506102e261064d366004611d9b565b610d39565b34801561065d575f80fd5b5061029761066c366004611dc5565b610d45565b34801561067c575f80fd5b5061029761068b366004611ea4565b610dcb565b34801561069b575f80fd5b50600d546102e290610100900460ff1681565b3480156106b9575f80fd5b506102976106c8366004611e44565b610e77565b3480156106d8575f80fd5b50600954610353906001600160a01b031681565b3480156106f7575f80fd5b50610297610706366004611de0565b610eff565b348015610716575f80fd5b5061037b600a5481565b34801561072b575f80fd5b506102e261073a366004611de0565b610fd0565b34801561074a575f80fd5b5061037b600e5481565b34801561075f575f80fd5b5061037b61076e366004611f4f565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b3480156107a3575f80fd5b5061037b600b5481565b3480156107b8575f80fd5b5061037b60105481565b3480156107cd575f80fd5b506102976107dc366004611dc5565b611126565b3480156107ec575f80fd5b5061037b60135481565b348015610801575f80fd5b5061037b600c5481565b6005546001600160a01b0316331461083e5760405162461bcd60e51b815260040161083590611f86565b60405180910390fd5b601282905560138190556108528183611fcf565b6011819055601454601e91610873919061086d9060646111c1565b906111d3565b11156108c15760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420333025206f72206c6573730000006044820152606401610835565b5050565b6060600680546108d490611fe2565b80601f016020809104026020016040519081016040528092919081815260200182805461090090611fe2565b801561094b5780601f106109225761010080835404028352916020019161094b565b820191905f5260205f20905b81548152906001019060200180831161092e57829003601f168201915b5050505050905090565b5f6109613384846111de565b5060015b92915050565b6005546001600160a01b031633146109955760405162461bcd60e51b815260040161083590611f86565b670de0b6b3a76400006103e86109aa60025490565b6109b5906001612014565b6109bf919061202b565b6109c9919061202b565b811015610a305760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610835565b610a4281670de0b6b3a7640000612014565b600a5550565b5f610a54848484611301565b6001600160a01b0384165f90815260016020908152604080832033845290915290205482811015610ad85760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610835565b610ae585338584036111de565b506001949350505050565b6005546001600160a01b03163314610b1a5760405162461bcd60e51b815260040161083590611f86565b600f8290556010819055610b2e8183611fcf565b600e819055601454601e91610873919061086d9060646111c1565b6008546001600160a01b03163314610bc05760405162461bcd60e51b815260206004820152603460248201527f4f6e6c7920746865206d61726b6574696e672077616c6c65742063616e20636860448201527330b733b2903a3432903a37b8103437b63232b91760611b6064820152608401610835565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610c0c5760405162461bcd60e51b815260040161083590611f86565b610c155f611963565b565b6005545f906001600160a01b03163314610c435760405162461bcd60e51b815260040161083590611f86565b50600d805460ff19169055600190565b6005546001600160a01b03163314610c7d5760405162461bcd60e51b815260040161083590611f86565b6001600160a01b03919091165f908152601660205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610cd15760405162461bcd60e51b815260040161083590611f86565b600d805462ffff00191662010100179055565b6005546001600160a01b03163314610d0e5760405162461bcd60e51b815260040161083590611f86565b600d8054911515620100000262ff000019909216919091179055565b6060600480546108d490611fe2565b5f610961338484611301565b6005546001600160a01b03163314610d6f5760405162461bcd60e51b815260040161083590611f86565b6008546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b05674905f90a3600880546001600160a01b0319166001600160a01b0392909216919091179055565b6008546001600160a01b0316331480610dee57506007546001600160a01b031633145b610e6b5760405162461bcd60e51b815260206004820152604260248201527f4f6e6c7920746865206d61726b6574696e672077616c6c6574206f7220746f7060448201527f20686f6c6465722063616e206368616e67652074686520746f6b656e206e616d606482015261329760f11b608482015260a401610835565b60066108c18282612095565b6005546001600160a01b03163314610ea15760405162461bcd60e51b815260040161083590611f86565b6001600160a01b0382165f81815260156020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610f295760405162461bcd60e51b815260040161083590611f86565b670de0b6b3a76400006103e8610f3e60025490565b610f49906005612014565b610f53919061202b565b610f5d919061202b565b811015610fb85760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610835565b610fca81670de0b6b3a7640000612014565b600c5550565b6005545f906001600160a01b03163314610ffc5760405162461bcd60e51b815260040161083590611f86565b620186a061100960025490565b611014906001612014565b61101e919061202b565b82101561108b5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610835565b6103e861109760025490565b6110a2906005612014565b6110ac919061202b565b8211156111185760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610835565b50600b81905560015b919050565b6005546001600160a01b031633146111505760405162461bcd60e51b815260040161083590611f86565b6001600160a01b0381166111b55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610835565b6111be81611963565b50565b5f6111cc8284612014565b9392505050565b5f6111cc828461202b565b6001600160a01b0383166112405760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610835565b6001600160a01b0382166112a15760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610835565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166113275760405162461bcd60e51b815260040161083590612151565b6001600160a01b03821661134d5760405162461bcd60e51b815260040161083590612196565b805f036113645761135f83835f6119b4565b505050565b600d5460ff161561166a576005546001600160a01b0384811691161480159061139b57506005546001600160a01b03838116911614155b80156113b557506009546001600160a01b03848116911614155b80156113cf57506009546001600160a01b03838116911614155b80156113e357506001600160a01b03821615155b80156113fa57506001600160a01b03821661dead14155b80156114105750600754600160a01b900460ff16155b1561166a57600d54610100900460ff166114a6576001600160a01b0383165f9081526015602052604090205460ff168061146157506001600160a01b0382165f9081526015602052604090205460ff165b6114a65760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610835565b7f0000000000000000000000003aea059e8b8dc434929b9f9ae30a77e3c14296486001600160a01b0316836001600160a01b03161480156114ff57506001600160a01b0382165f9081526016602052604090205460ff16155b156115e257600a548111156115745760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610835565b600c546001600160a01b0383165f908152602081905260409020546115999083611fcf565b11156115dd5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610835565b61166a565b6001600160a01b0382165f9081526016602052604090205460ff1661166a57600c546001600160a01b0383165f908152602081905260409020546116269083611fcf565b111561166a5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610835565b305f90815260208190526040902054600b54811080159081906116955750600d5462010000900460ff165b80156116ab5750600754600160a01b900460ff16155b80156116e857507f0000000000000000000000003aea059e8b8dc434929b9f9ae30a77e3c14296486001600160a01b0316846001600160a01b0316145b801561170c57506001600160a01b0385165f9081526015602052604090205460ff16155b801561173057506001600160a01b0384165f9081526015602052604090205460ff16155b1561175f576007805460ff60a01b1916600160a01b17905561175183611b07565b6007805460ff60a01b191690555b6007546001600160a01b0386165f9081526015602052604090205460ff600160a01b9092048216159116806117ab57506001600160a01b0385165f9081526015602052604090205460ff165b156117b357505f5b5f805f831561194d577f0000000000000000000000003aea059e8b8dc434929b9f9ae30a77e3c14296486001600160a01b0316886001600160a01b03161480156117fe57505f601154115b1561185f5761181e60145461086d6011548a6111c190919063ffffffff16565b9250601154601354846118319190612014565b61183b919061202b565b91506011546012548461184e9190612014565b611858919061202b565b90506118fe565b7f0000000000000000000000003aea059e8b8dc434929b9f9ae30a77e3c14296486001600160a01b0316896001600160a01b03161480156118a157505f600e54115b156118fe576118c160145461086d600e548a6111c190919063ffffffff16565b9250600e54601054846118d49190612014565b6118de919061202b565b9150600e54600f54846118f19190612014565b6118fb919061202b565b90505b821561190f5761190f8930856119b4565b811561194057611940307f0000000000000000000000003aea059e8b8dc434929b9f9ae30a77e3c1429648846119b4565b61194a83886121d9565b96505b6119588989896119b4565b505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0383166119da5760405162461bcd60e51b815260040161083590612151565b6001600160a01b038216611a005760405162461bcd60e51b815260040161083590612196565b6001600160a01b0383165f9081526020819052604090205481811015611a775760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610835565b6001600160a01b038085165f90815260208190526040808220858503905591851681529081208054849290611aad908490611fcf565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611af991815260200190565b60405180910390a350505050565b305f9081526020819052604081205490819003611b22575050565b5f611b3f83611b3a84600b546028611b3a9190612014565b611b4a565b905061135f81611b5e565b5f818311611b5857826111cc565b50919050565b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110611b9157611b916121ec565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c0d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c319190612200565b81600181518110611c4457611c446121ec565b60200260200101906001600160a01b031690816001600160a01b031681525050611c8f307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846111de565b60085460405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81169263791ac94792611cea9287925f9288929190911690429060040161221b565b5f604051808303815f87803b158015611d01575f80fd5b505af1158015611d13573d5f803e3d5ffd5b505050505050565b5f8060408385031215611d2c575f80fd5b50508035926020909101359150565b5f602080835283518060208501525f5b81811015611d6757858101830151858201604001528201611d4b565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146111be575f80fd5b5f8060408385031215611dac575f80fd5b8235611db781611d87565b946020939093013593505050565b5f60208284031215611dd5575f80fd5b81356111cc81611d87565b5f60208284031215611df0575f80fd5b5035919050565b5f805f60608486031215611e09575f80fd5b8335611e1481611d87565b92506020840135611e2481611d87565b929592945050506040919091013590565b80358015158114611121575f80fd5b5f8060408385031215611e55575f80fd5b8235611e6081611d87565b9150611e6e60208401611e35565b90509250929050565b5f60208284031215611e87575f80fd5b6111cc82611e35565b634e487b7160e01b5f52604160045260245ffd5b5f60208284031215611eb4575f80fd5b813567ffffffffffffffff80821115611ecb575f80fd5b818401915084601f830112611ede575f80fd5b813581811115611ef057611ef0611e90565b604051601f8201601f19908116603f01168101908382118183101715611f1857611f18611e90565b81604052828152876020848701011115611f30575f80fd5b826020860160208301375f928101602001929092525095945050505050565b5f8060408385031215611f60575f80fd5b8235611f6b81611d87565b91506020830135611f7b81611d87565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561096557610965611fbb565b600181811c90821680611ff657607f821691505b602082108103611b5857634e487b7160e01b5f52602260045260245ffd5b808202811582820484141761096557610965611fbb565b5f8261204557634e487b7160e01b5f52601260045260245ffd5b500490565b601f82111561135f57805f5260205f20601f840160051c8101602085101561206f5750805b601f840160051c820191505b8181101561208e575f815560010161207b565b5050505050565b815167ffffffffffffffff8111156120af576120af611e90565b6120c3816120bd8454611fe2565b8461204a565b602080601f8311600181146120f6575f84156120df5750858301515b5f19600386901b1c1916600185901b178555611d13565b5f85815260208120601f198616915b8281101561212457888601518255948401946001909101908401612105565b508582101561214157878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8181038181111561096557610965611fbb565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215612210575f80fd5b81516111cc81611d87565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b8181101561226b5784516001600160a01b031683529383019391830191600101612246565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212206136b00373e66480a2b1ba878d943e5682892df72c78e1115b650669fb72601664736f6c63430008180033

Deployed Bytecode Sourcemap

24936:12036:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30619:364;;;;;;;;;;-1:-1:-1;30619:364:0;;;;;:::i;:::-;;:::i;:::-;;36614:105;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11906:169;;;;;;;;;;-1:-1:-1;11906:169:0;;;;;:::i;:::-;;:::i;:::-;;;1441:14:1;;1434:22;1416:41;;1404:2;1389:18;11906:169:0;1276:187:1;25919:63:0;;;;;;;;;;-1:-1:-1;25919:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;25077:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1910:32:1;;;1892:51;;1880:2;1865:18;25077:51:0;1720:229:1;10859:108:0;;;;;;;;;;-1:-1:-1;10947:12:0;;10859:108;;;2100:25:1;;;2088:2;2073:18;10859:108:0;1954:177:1;25748:22:0;;;;;;;;;;;;;;;;29336:275;;;;;;;;;;-1:-1:-1;29336:275:0;;;;;:::i;:::-;;:::i;12557:492::-;;;;;;;;;;-1:-1:-1;12557:492:0;;;;;:::i;:::-;;:::i;10701:93::-;;;;;;;;;;-1:-1:-1;10701:93:0;;10784:2;2924:36:1;;2912:2;2897:18;10701:93:0;2782:184:1;25135:38:0;;;;;;;;;;;;;;;25405:33;;;;;;;;;;-1:-1:-1;25405:33:0;;;;;;;;31422:126;;;;;;;;;;-1:-1:-1;31422:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;31512:28:0;31488:4;31512:28;;;:19;:28;;;;;;;;;31422:126;30254:357;;;;;;;;;;-1:-1:-1;30254:357:0;;;;;:::i;:::-;;:::i;25635:28::-;;;;;;;;;;;;;;;;36404:202;;;;;;;;;;-1:-1:-1;36404:202:0;;;;;:::i;:::-;;:::i;25485:31::-;;;;;;;;;;-1:-1:-1;25485:31:0;;;;;;;;;;;11030:127;;;;;;;;;;-1:-1:-1;11030:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;11131:18:0;11104:7;11131:18;;;;;;;;;;;;11030:127;2974:103;;;;;;;;;;;;;:::i;28640:121::-;;;;;;;;;;;;;:::i;29883:167::-;;;;;;;;;;-1:-1:-1;29883:167:0;;;;;:::i;:::-;;:::i;25212:30::-;;;;;;;;;;-1:-1:-1;25212:30:0;;;;-1:-1:-1;;;;;25212:30:0;;;25559;;;;;;;;;;;;;;;;25044:24;;;;;;;;;;-1:-1:-1;25044:24:0;;;;-1:-1:-1;;;;;25044:24:0;;;28476:112;;;;;;;;;;;;;:::i;2323:87::-;;;;;;;;;;-1:-1:-1;2396:6:0;;-1:-1:-1;;;;;2396:6:0;2323:87;;25670:31;;;;;;;;;;;;;;;;30146:100;;;;;;;;;;-1:-1:-1;30146:100:0;;;;;:::i;:::-;;:::i;9958:104::-;;;;;;;;;;;;;:::i;11370:175::-;;;;;;;;;;-1:-1:-1;11370:175:0;;;;;:::i;:::-;;:::i;31181:231::-;;;;;;;;;;-1:-1:-1;31181:231:0;;;;;:::i;:::-;;:::i;36727:240::-;;;;;;;;;;-1:-1:-1;36727:240:0;;;;;:::i;:::-;;:::i;25445:33::-;;;;;;;;;;-1:-1:-1;25445:33:0;;;;;;;;;;;30991:182;;;;;;;;;;-1:-1:-1;30991:182:0;;;;;:::i;:::-;;:::i;25249:32::-;;;;;;;;;;-1:-1:-1;25249:32:0;;;;-1:-1:-1;;;;;25249:32:0;;;29619:256;;;;;;;;;;-1:-1:-1;29619:256:0;;;;;:::i;:::-;;:::i;25290:35::-;;;;;;;;;;;;;;;;28831:497;;;;;;;;;;-1:-1:-1;28831:497:0;;;;;:::i;:::-;;:::i;25525:27::-;;;;;;;;;;;;;;;;11608:151;;;;;;;;;;-1:-1:-1;11608:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;11724:18:0;;;11697:7;11724:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11608:151;25332:33;;;;;;;;;;;;;;;;25596:30;;;;;;;;;;;;;;;;3232:201;;;;;;;;;;-1:-1:-1;3232:201:0;;;;;:::i;:::-;;:::i;25708:31::-;;;;;;;;;;;;;;;;25372:24;;;;;;;;;;;;;;;;30619:364;2396:6;;-1:-1:-1;;;;;2396:6:0;1076:10;2543:23;2535:68;;;;-1:-1:-1;;;2535:68:0;;;;;;;:::i;:::-;;;;;;;;;30744:16:::1;:32:::0;;;30787:16:::1;:32:::0;;;30846:35:::1;30806:13:::0;30763;30846:35:::1;:::i;:::-;30830:13;:51:::0;;;30927:7:::1;::::0;30939:2:::1;::::0;30900:35:::1;::::0;30927:7;30900:22:::1;::::0;30918:3:::1;30900:17;:22::i;:::-;:26:::0;::::1;:35::i;:::-;:41;;30892:83;;;::::0;-1:-1:-1;;;30892:83:0;;6126:2:1;30892:83:0::1;::::0;::::1;6108:21:1::0;6165:2;6145:18;;;6138:30;6204:31;6184:18;;;6177:59;6253:18;;30892:83:0::1;5924:353:1::0;30892:83:0::1;30619:364:::0;;:::o;36614:105::-;36668:13;36701:10;36694:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36614:105;:::o;11906:169::-;11989:4;12006:39;1076:10;12029:7;12038:6;12006:8;:39::i;:::-;-1:-1:-1;12063:4:0;11906:169;;;;;:::o;29336:275::-;2396:6;;-1:-1:-1;;;;;2396:6:0;1076:10;2543:23;2535:68;;;;-1:-1:-1;;;2535:68:0;;;;;;;:::i;:::-;29473:4:::1;29465;29444:13;10947:12:::0;;;10859:108;29444:13:::1;:17;::::0;29460:1:::1;29444:17;:::i;:::-;29443:26;;;;:::i;:::-;29442:35;;;;:::i;:::-;29432:6;:45;;29410:142;;;::::0;-1:-1:-1;;;29410:142:0;;7264:2:1;29410:142:0::1;::::0;::::1;7246:21:1::0;7303:2;7283:18;;;7276:30;7342:34;7322:18;;;7315:62;-1:-1:-1;;;7393:18:1;;;7386:45;7448:19;;29410:142:0::1;7062:411:1::0;29410:142:0::1;29586:17;:6:::0;29596::::1;29586:17;:::i;:::-;29563:20;:40:::0;-1:-1:-1;29336:275:0:o;12557:492::-;12697:4;12714:36;12724:6;12732:9;12743:6;12714:9;:36::i;:::-;-1:-1:-1;;;;;12790:19:0;;12763:24;12790:19;;;:11;:19;;;;;;;;1076:10;12790:33;;;;;;;;12842:26;;;;12834:79;;;;-1:-1:-1;;;12834:79:0;;7680:2:1;12834:79:0;;;7662:21:1;7719:2;7699:18;;;7692:30;7758:34;7738:18;;;7731:62;-1:-1:-1;;;7809:18:1;;;7802:38;7857:19;;12834:79:0;7478:404:1;12834:79:0;12949:57;12958:6;1076:10;12999:6;12980:16;:25;12949:8;:57::i;:::-;-1:-1:-1;13037:4:0;;12557:492;-1:-1:-1;;;;12557:492:0:o;30254:357::-;2396:6;;-1:-1:-1;;;;;2396:6:0;1076:10;2543:23;2535:68;;;;-1:-1:-1;;;2535:68:0;;;;;;;:::i;:::-;30378:15:::1;:31:::0;;;30420:15:::1;:31:::0;;;30477:33:::1;30438:13:::0;30396;30477:33:::1;:::i;:::-;30462:12;:48:::0;;;30555:7:::1;::::0;30567:2:::1;::::0;30529:34:::1;::::0;30555:7;30529:21:::1;::::0;30546:3:::1;30529:16;:21::i;36404:202::-:0;36491:15;;-1:-1:-1;;;;;36491:15:0;36477:10;:29;36469:94;;;;-1:-1:-1;;;36469:94:0;;8089:2:1;36469:94:0;;;8071:21:1;8128:2;8108:18;;;8101:30;8167:34;8147:18;;;8140:62;-1:-1:-1;;;8218:18:1;;;8211:50;8278:19;;36469:94:0;7887:416:1;36469:94:0;36574:9;:24;;-1:-1:-1;;;;;;36574:24:0;-1:-1:-1;;;;;36574:24:0;;;;;;;;;;36404:202::o;2974:103::-;2396:6;;-1:-1:-1;;;;;2396:6:0;1076:10;2543:23;2535:68;;;;-1:-1:-1;;;2535:68:0;;;;;;;:::i;:::-;3039:30:::1;3066:1;3039:18;:30::i;:::-;2974:103::o:0;28640:121::-;2396:6;;28692:4;;-1:-1:-1;;;;;2396:6:0;1076:10;2543:23;2535:68;;;;-1:-1:-1;;;2535:68:0;;;;;;;:::i;:::-;-1:-1:-1;28709:14:0::1;:22:::0;;-1:-1:-1;;28709:22:0::1;::::0;;;28640:121;:::o;29883:167::-;2396:6;;-1:-1:-1;;;;;2396:6:0;1076:10;2543:23;2535:68;;;;-1:-1:-1;;;2535:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29996:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;29996:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;29883:167::o;28476:112::-;2396:6;;-1:-1:-1;;;;;2396:6:0;1076:10;2543:23;2535:68;;;;-1:-1:-1;;;2535:68:0;;;;;;;:::i;:::-;28531:13:::1;:20:::0;;-1:-1:-1;;28562:18:0;;;;;28476:112::o;30146:100::-;2396:6;;-1:-1:-1;;;;;2396:6:0;1076:10;2543:23;2535:68;;;;-1:-1:-1;;;2535:68:0;;;;;;;:::i;:::-;30217:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;30217:21:0;;::::1;::::0;;;::::1;::::0;;30146:100::o;9958:104::-;10014:13;10047:7;10040:14;;;;;:::i;11370:175::-;11456:4;11473:42;1076:10;11497:9;11508:6;11473:9;:42::i;31181:231::-;2396:6;;-1:-1:-1;;;;;2396:6:0;1076:10;2543:23;2535:68;;;;-1:-1:-1;;;2535:68:0;;;;;;;:::i;:::-;31341:15:::1;::::0;31298:59:::1;::::0;-1:-1:-1;;;;;31341:15:0;;::::1;::::0;31298:59;::::1;::::0;::::1;::::0;31341:15:::1;::::0;31298:59:::1;31368:15;:36:::0;;-1:-1:-1;;;;;;31368:36:0::1;-1:-1:-1::0;;;;;31368:36:0;;;::::1;::::0;;;::::1;::::0;;31181:231::o;36727:240::-;36815:15;;-1:-1:-1;;;;;36815:15:0;36801:10;:29;;:56;;-1:-1:-1;36848:9:0;;-1:-1:-1;;;;;36848:9:0;36834:10;:23;36801:56;36793:135;;;;-1:-1:-1;;;36793:135:0;;8510:2:1;36793:135:0;;;8492:21:1;8549:2;8529:18;;;8522:30;8588:34;8568:18;;;8561:62;8659:34;8639:18;;;8632:62;-1:-1:-1;;;8710:19:1;;;8703:33;8753:19;;36793:135:0;8308:470:1;36793:135:0;36939:10;:20;36952:7;36939:10;:20;:::i;30991:182::-;2396:6;;-1:-1:-1;;;;;2396:6:0;1076:10;2543:23;2535:68;;;;-1:-1:-1;;;2535:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;31076:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;31076:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;31131:34;;1416:41:1;;;31131:34:0::1;::::0;1389:18:1;31131:34:0::1;;;;;;;30991:182:::0;;:::o;29619:256::-;2396:6;;-1:-1:-1;;;;;2396:6:0;1076:10;2543:23;2535:68;;;;-1:-1:-1;;;2535:68:0;;;;;;;:::i;:::-;29759:4:::1;29751;29730:13;10947:12:::0;;;10859:108;29730:13:::1;:17;::::0;29746:1:::1;29730:17;:::i;:::-;29729:26;;;;:::i;:::-;29728:35;;;;:::i;:::-;29718:6;:45;;29696:131;;;::::0;-1:-1:-1;;;29696:131:0;;11155:2:1;29696:131:0::1;::::0;::::1;11137:21:1::0;11194:2;11174:18;;;11167:30;11233:34;11213:18;;;11206:62;-1:-1:-1;;;11284:18:1;;;11277:34;11328:19;;29696:131:0::1;10953:400:1::0;29696:131:0::1;29850:17;:6:::0;29860::::1;29850:17;:::i;:::-;29838:9;:29:::0;-1:-1:-1;29619:256:0:o;28831:497::-;2396:6;;28939:4;;-1:-1:-1;;;;;2396:6:0;1076:10;2543:23;2535:68;;;;-1:-1:-1;;;2535:68:0;;;;;;;:::i;:::-;29018:6:::1;28997:13;10947:12:::0;;;10859:108;28997:13:::1;:17;::::0;29013:1:::1;28997:17;:::i;:::-;28996:28;;;;:::i;:::-;28983:9;:41;;28961:144;;;::::0;-1:-1:-1;;;28961:144:0;;11560:2:1;28961:144:0::1;::::0;::::1;11542:21:1::0;11599:2;11579:18;;;11572:30;11638:34;11618:18;;;11611:62;-1:-1:-1;;;11689:18:1;;;11682:51;11750:19;;28961:144:0::1;11358:417:1::0;28961:144:0::1;29173:4;29152:13;10947:12:::0;;;10859:108;29152:13:::1;:17;::::0;29168:1:::1;29152:17;:::i;:::-;29151:26;;;;:::i;:::-;29138:9;:39;;29116:141;;;::::0;-1:-1:-1;;;29116:141:0;;11982:2:1;29116:141:0::1;::::0;::::1;11964:21:1::0;12021:2;12001:18;;;11994:30;12060:34;12040:18;;;12033:62;-1:-1:-1;;;12111:18:1;;;12104:50;12171:19;;29116:141:0::1;11780:416:1::0;29116:141:0::1;-1:-1:-1::0;29268:18:0::1;:30:::0;;;29316:4:::1;2614:1;28831:497:::0;;;:::o;3232:201::-;2396:6;;-1:-1:-1;;;;;2396:6:0;1076:10;2543:23;2535:68;;;;-1:-1:-1;;;2535:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3321:22:0;::::1;3313:73;;;::::0;-1:-1:-1;;;3313:73:0;;12403:2:1;3313:73:0::1;::::0;::::1;12385:21:1::0;12442:2;12422:18;;;12415:30;12481:34;12461:18;;;12454:62;-1:-1:-1;;;12532:18:1;;;12525:36;12578:19;;3313:73:0::1;12201:402:1::0;3313:73:0::1;3397:28;3416:8;3397:18;:28::i;:::-;3232:201:::0;:::o;20851:98::-;20909:7;20936:5;20940:1;20936;:5;:::i;:::-;20929:12;20851:98;-1:-1:-1;;;20851:98:0:o;21250:::-;21308:7;21335:5;21339:1;21335;:5;:::i;15398:380::-;-1:-1:-1;;;;;15534:19:0;;15526:68;;;;-1:-1:-1;;;15526:68:0;;12810:2:1;15526:68:0;;;12792:21:1;12849:2;12829:18;;;12822:30;12888:34;12868:18;;;12861:62;-1:-1:-1;;;12939:18:1;;;12932:34;12983:19;;15526:68:0;12608:400:1;15526:68:0;-1:-1:-1;;;;;15613:21:0;;15605:68;;;;-1:-1:-1;;;15605:68:0;;13215:2:1;15605:68:0;;;13197:21:1;13254:2;13234:18;;;13227:30;13293:34;13273:18;;;13266:62;-1:-1:-1;;;13344:18:1;;;13337:32;13386:19;;15605:68:0;13013:398:1;15605:68:0;-1:-1:-1;;;;;15686:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15738:32;;2100:25:1;;;15738:32:0;;2073:18:1;15738:32:0;;;;;;;15398:380;;;:::o;31556:3814::-;-1:-1:-1;;;;;31688:18:0;;31680:68;;;;-1:-1:-1;;;31680:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;31767:16:0;;31759:64;;;;-1:-1:-1;;;31759:64:0;;;;;;;:::i;:::-;31840:6;31850:1;31840:11;31836:93;;31868:28;31884:4;31890:2;31894:1;31868:15;:28::i;:::-;31556:3814;;;:::o;31836:93::-;31945:14;;;;31941:1520;;;2396:6;;-1:-1:-1;;;;;31998:15:0;;;2396:6;;31998:15;;;;:49;;-1:-1:-1;2396:6:0;;-1:-1:-1;;;;;32034:13:0;;;2396:6;;32034:13;;31998:49;:95;;;;-1:-1:-1;32076:17:0;;-1:-1:-1;;;;;32068:25:0;;;32076:17;;32068:25;;31998:95;:139;;;;-1:-1:-1;32120:17:0;;-1:-1:-1;;;;;32114:23:0;;;32120:17;;32114:23;;31998:139;:176;;;;-1:-1:-1;;;;;;32158:16:0;;;;31998:176;:218;;;;-1:-1:-1;;;;;;32195:21:0;;32209:6;32195:21;;31998:218;:248;;;;-1:-1:-1;32238:8:0;;-1:-1:-1;;;32238:8:0;;;;32237:9;31998:248;31976:1474;;;32286:13;;;;;;;32281:223;;-1:-1:-1;;;;;32358:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;32387:23:0;;;;;;:19;:23;;;;;;;;32358:52;32324:160;;;;-1:-1:-1;;;32324:160:0;;14428:2:1;32324:160:0;;;14410:21:1;14467:2;14447:18;;;14440:30;-1:-1:-1;;;14486:18:1;;;14479:52;14548:18;;32324:160:0;14226:346:1;32324:160:0;32718:13;-1:-1:-1;;;;;32710:21:0;:4;-1:-1:-1;;;;;32710:21:0;;:82;;;;-1:-1:-1;;;;;;32757:35:0;;;;;;:31;:35;;;;;;;;32756:36;32710:82;32684:751;;;32879:20;;32869:6;:30;;32835:169;;;;-1:-1:-1;;;32835:169:0;;14779:2:1;32835:169:0;;;14761:21:1;14818:2;14798:18;;;14791:30;14857:34;14837:18;;;14830:62;-1:-1:-1;;;14908:18:1;;;14901:51;14969:19;;32835:169:0;14577:417:1;32835:169:0;33087:9;;-1:-1:-1;;;;;11131:18:0;;11104:7;11131:18;;;;;;;;;;;33061:22;;:6;:22;:::i;:::-;:35;;33027:140;;;;-1:-1:-1;;;33027:140:0;;15201:2:1;33027:140:0;;;15183:21:1;15240:2;15220:18;;;15213:30;-1:-1:-1;;;15259:18:1;;;15252:49;15318:18;;33027:140:0;14999:343:1;33027:140:0;32684:751;;;-1:-1:-1;;;;;33215:35:0;;;;;;:31;:35;;;;;;;;33210:225;;33335:9;;-1:-1:-1;;;;;11131:18:0;;11104:7;11131:18;;;;;;;;;;;33309:22;;:6;:22;:::i;:::-;:35;;33275:140;;;;-1:-1:-1;;;33275:140:0;;15201:2:1;33275:140:0;;;15183:21:1;15240:2;15220:18;;;15213:30;-1:-1:-1;;;15259:18:1;;;15252:49;15318:18;;33275:140:0;14999:343:1;33275:140:0;33522:4;33473:28;11131:18;;;;;;;;;;;33580;;33556:42;;;;;;;33629:35;;-1:-1:-1;33653:11:0;;;;;;;33629:35;:61;;;;-1:-1:-1;33682:8:0;;-1:-1:-1;;;33682:8:0;;;;33681:9;33629:61;:97;;;;;33713:13;-1:-1:-1;;;;;33707:19:0;:2;-1:-1:-1;;;;;33707:19:0;;33629:97;:140;;;;-1:-1:-1;;;;;;33744:25:0;;;;;;:19;:25;;;;;;;;33743:26;33629:140;:181;;;;-1:-1:-1;;;;;;33787:23:0;;;;;;:19;:23;;;;;;;;33786:24;33629:181;33611:319;;;33837:8;:15;;-1:-1:-1;;;;33837:15:0;-1:-1:-1;;;33837:15:0;;;33869:16;33878:6;33869:8;:16::i;:::-;33902:8;:16;;-1:-1:-1;;;;33902:16:0;;;33611:319;33958:8;;-1:-1:-1;;;;;34068:25:0;;33942:12;34068:25;;;:19;:25;;;;;;33958:8;-1:-1:-1;;;33958:8:0;;;;;33957:9;;34068:25;;:52;;-1:-1:-1;;;;;;34097:23:0;;;;;;:19;:23;;;;;;;;34068:52;34064:100;;;-1:-1:-1;34147:5:0;34064:100;34176:12;34203:26;34244;34363:7;34359:958;;;34421:13;-1:-1:-1;;;;;34415:19:0;:2;-1:-1:-1;;;;;34415:19:0;;:40;;;;;34454:1;34438:13;;:17;34415:40;34411:615;;;34483:38;34513:7;;34483:25;34494:13;;34483:6;:10;;:25;;;;:::i;:38::-;34476:45;;34589:13;;34569:16;;34562:4;:23;;;;:::i;:::-;34561:41;;;;:::i;:::-;34540:62;;34670:13;;34650:16;;34643:4;:23;;;;:::i;:::-;34642:41;;;;:::i;:::-;34621:62;;34411:615;;;34753:13;-1:-1:-1;;;;;34745:21:0;:4;-1:-1:-1;;;;;34745:21:0;;:41;;;;;34785:1;34770:12;;:16;34745:41;34741:285;;;34814:37;34843:7;;34814:24;34825:12;;34814:6;:10;;:24;;;;:::i;:37::-;34807:44;;34918:12;;34899:15;;34892:4;:22;;;;:::i;:::-;34891:39;;;;:::i;:::-;34870:60;;34998:12;;34979:15;;34972:4;:22;;;;:::i;:::-;34971:39;;;;:::i;:::-;34950:60;;34741:285;35046:8;;35042:91;;35075:42;35091:4;35105;35112;35075:15;:42::i;:::-;35151:22;;35147:128;;35194:65;35218:4;35225:13;35240:18;35194:15;:65::i;:::-;35291:14;35301:4;35291:14;;:::i;:::-;;;34359:958;35329:33;35345:4;35351:2;35355:6;35329:15;:33::i;:::-;31669:3701;;;;;;31556:3814;;;:::o;3593:191::-;3686:6;;;-1:-1:-1;;;;;3703:17:0;;;-1:-1:-1;;;;;;3703:17:0;;;;;;;3736:40;;3686:6;;;3703:17;3686:6;;3736:40;;3667:16;;3736:40;3656:128;3593:191;:::o;13539:733::-;-1:-1:-1;;;;;13679:20:0;;13671:70;;;;-1:-1:-1;;;13671:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13760:23:0;;13752:71;;;;-1:-1:-1;;;13752:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13920:17:0;;13896:21;13920:17;;;;;;;;;;;13956:23;;;;13948:74;;;;-1:-1:-1;;;13948:74:0;;15682:2:1;13948:74:0;;;15664:21:1;15721:2;15701:18;;;15694:30;15760:34;15740:18;;;15733:62;-1:-1:-1;;;15811:18:1;;;15804:36;15857:19;;13948:74:0;15480:402:1;13948:74:0;-1:-1:-1;;;;;14058:17:0;;;:9;:17;;;;;;;;;;;14078:22;;;14058:42;;14122:20;;;;;;;;:30;;14094:6;;14058:9;14122:30;;14094:6;;14122:30;:::i;:::-;;;;;;;;14187:9;-1:-1:-1;;;;;14170:35:0;14179:6;-1:-1:-1;;;;;14170:35:0;;14198:6;14170:35;;;;2100:25:1;;2088:2;2073:18;;1954:177;14170:35:0;;;;;;;;13660:612;13539:733;;;:::o;36083:313::-;36180:4;36136:23;11131:18;;;;;;;;;;;;36201:20;;;36197:59;;36238:7;36083:313;:::o;36197:59::-;36268:18;36289:58;36293:6;36301:45;36305:15;36322:18;;36343:2;36322:23;;;;:::i;:::-;36301:3;:45::i;36289:58::-;36268:79;;36360:28;36377:10;36360:16;:28::i;35378:98::-;35435:7;35462:1;35460;:3;35459:9;;35467:1;35459:9;;;-1:-1:-1;35465:1:0;35378:98;-1:-1:-1;35378:98:0:o;35484:591::-;35634:16;;;35648:1;35634:16;;;;;;;;35610:21;;35634:16;;;;;;;;;;-1:-1:-1;35634:16:0;35610:40;;35679:4;35661;35666:1;35661:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;35661:23:0;;;-1:-1:-1;;;;;35661:23:0;;;;;35705:15;-1:-1:-1;;;;;35705:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35695:4;35700:1;35695:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;35695:32:0;;;-1:-1:-1;;;;;35695:32:0;;;;;35740:62;35757:4;35772:15;35790:11;35740:8;:62::i;:::-;36011:15;;35841:226;;-1:-1:-1;;;35841:226:0;;-1:-1:-1;;;;;35841:15:0;:66;;;;;:226;;35922:11;;35948:1;;35992:4;;36011:15;;;;;36041;;35841:226;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35539:536;35484:591;:::o;14:248:1:-;82:6;90;143:2;131:9;122:7;118:23;114:32;111:52;;;159:1;156;149:12;111:52;-1:-1:-1;;182:23:1;;;252:2;237:18;;;224:32;;-1:-1:-1;14:248:1:o;267:548::-;379:4;408:2;437;426:9;419:21;469:6;463:13;512:6;507:2;496:9;492:18;485:34;537:1;547:140;561:6;558:1;555:13;547:140;;;656:14;;;652:23;;646:30;622:17;;;641:2;618:26;611:66;576:10;;547:140;;;551:3;736:1;731:2;722:6;711:9;707:22;703:31;696:42;806:2;799;795:7;790:2;782:6;778:15;774:29;763:9;759:45;755:54;747:62;;;;267:548;;;;:::o;820:131::-;-1:-1:-1;;;;;895:31:1;;885:42;;875:70;;941:1;938;931:12;956:315;1024:6;1032;1085:2;1073:9;1064:7;1060:23;1056:32;1053:52;;;1101:1;1098;1091:12;1053:52;1140:9;1127:23;1159:31;1184:5;1159:31;:::i;:::-;1209:5;1261:2;1246:18;;;;1233:32;;-1:-1:-1;;;956:315:1:o;1468:247::-;1527:6;1580:2;1568:9;1559:7;1555:23;1551:32;1548:52;;;1596:1;1593;1586:12;1548:52;1635:9;1622:23;1654:31;1679:5;1654:31;:::i;2136:180::-;2195:6;2248:2;2236:9;2227:7;2223:23;2219:32;2216:52;;;2264:1;2261;2254:12;2216:52;-1:-1:-1;2287:23:1;;2136:180;-1:-1:-1;2136:180:1:o;2321:456::-;2398:6;2406;2414;2467:2;2455:9;2446:7;2442:23;2438:32;2435:52;;;2483:1;2480;2473:12;2435:52;2522:9;2509:23;2541:31;2566:5;2541:31;:::i;:::-;2591:5;-1:-1:-1;2648:2:1;2633:18;;2620:32;2661:33;2620:32;2661:33;:::i;:::-;2321:456;;2713:7;;-1:-1:-1;;;2767:2:1;2752:18;;;;2739:32;;2321:456::o;3179:160::-;3244:20;;3300:13;;3293:21;3283:32;;3273:60;;3329:1;3326;3319:12;3344:315;3409:6;3417;3470:2;3458:9;3449:7;3445:23;3441:32;3438:52;;;3486:1;3483;3476:12;3438:52;3525:9;3512:23;3544:31;3569:5;3544:31;:::i;:::-;3594:5;-1:-1:-1;3618:35:1;3649:2;3634:18;;3618:35;:::i;:::-;3608:45;;3344:315;;;;;:::o;3664:180::-;3720:6;3773:2;3761:9;3752:7;3748:23;3744:32;3741:52;;;3789:1;3786;3779:12;3741:52;3812:26;3828:9;3812:26;:::i;3849:127::-;3910:10;3905:3;3901:20;3898:1;3891:31;3941:4;3938:1;3931:15;3965:4;3962:1;3955:15;3981:922;4050:6;4103:2;4091:9;4082:7;4078:23;4074:32;4071:52;;;4119:1;4116;4109:12;4071:52;4159:9;4146:23;4188:18;4229:2;4221:6;4218:14;4215:34;;;4245:1;4242;4235:12;4215:34;4283:6;4272:9;4268:22;4258:32;;4328:7;4321:4;4317:2;4313:13;4309:27;4299:55;;4350:1;4347;4340:12;4299:55;4386:2;4373:16;4408:2;4404;4401:10;4398:36;;;4414:18;;:::i;:::-;4489:2;4483:9;4457:2;4543:13;;-1:-1:-1;;4539:22:1;;;4563:2;4535:31;4531:40;4519:53;;;4587:18;;;4607:22;;;4584:46;4581:72;;;4633:18;;:::i;:::-;4673:10;4669:2;4662:22;4708:2;4700:6;4693:18;4748:7;4743:2;4738;4734;4730:11;4726:20;4723:33;4720:53;;;4769:1;4766;4759:12;4720:53;4825:2;4820;4816;4812:11;4807:2;4799:6;4795:15;4782:46;4870:1;4848:15;;;4865:2;4844:24;4837:35;;;;-1:-1:-1;4852:6:1;3981:922;-1:-1:-1;;;;;3981:922:1:o;4908:388::-;4976:6;4984;5037:2;5025:9;5016:7;5012:23;5008:32;5005:52;;;5053:1;5050;5043:12;5005:52;5092:9;5079:23;5111:31;5136:5;5111:31;:::i;:::-;5161:5;-1:-1:-1;5218:2:1;5203:18;;5190:32;5231:33;5190:32;5231:33;:::i;:::-;5283:7;5273:17;;;4908:388;;;;;:::o;5301:356::-;5503:2;5485:21;;;5522:18;;;5515:30;5581:34;5576:2;5561:18;;5554:62;5648:2;5633:18;;5301:356::o;5662:127::-;5723:10;5718:3;5714:20;5711:1;5704:31;5754:4;5751:1;5744:15;5778:4;5775:1;5768:15;5794:125;5859:9;;;5880:10;;;5877:36;;;5893:18;;:::i;6282:380::-;6361:1;6357:12;;;;6404;;;6425:61;;6479:4;6471:6;6467:17;6457:27;;6425:61;6532:2;6524:6;6521:14;6501:18;6498:38;6495:161;;6578:10;6573:3;6569:20;6566:1;6559:31;6613:4;6610:1;6603:15;6641:4;6638:1;6631:15;6667:168;6740:9;;;6771;;6788:15;;;6782:22;;6768:37;6758:71;;6809:18;;:::i;6840:217::-;6880:1;6906;6896:132;;6950:10;6945:3;6941:20;6938:1;6931:31;6985:4;6982:1;6975:15;7013:4;7010:1;7003:15;6896:132;-1:-1:-1;7042:9:1;;6840:217::o;8909:518::-;9011:2;9006:3;9003:11;9000:421;;;9047:5;9044:1;9037:16;9091:4;9088:1;9078:18;9161:2;9149:10;9145:19;9142:1;9138:27;9132:4;9128:38;9197:4;9185:10;9182:20;9179:47;;;-1:-1:-1;9220:4:1;9179:47;9275:2;9270:3;9266:12;9263:1;9259:20;9253:4;9249:31;9239:41;;9330:81;9348:2;9341:5;9338:13;9330:81;;;9407:1;9393:16;;9374:1;9363:13;9330:81;;;9334:3;;8909:518;;;:::o;9603:1345::-;9729:3;9723:10;9756:18;9748:6;9745:30;9742:56;;;9778:18;;:::i;:::-;9807:97;9897:6;9857:38;9889:4;9883:11;9857:38;:::i;:::-;9851:4;9807:97;:::i;:::-;9959:4;;10016:2;10005:14;;10033:1;10028:663;;;;10735:1;10752:6;10749:89;;;-1:-1:-1;10804:19:1;;;10798:26;10749:89;-1:-1:-1;;9560:1:1;9556:11;;;9552:24;9548:29;9538:40;9584:1;9580:11;;;9535:57;10851:81;;9998:944;;10028:663;8856:1;8849:14;;;8893:4;8880:18;;-1:-1:-1;;10064:20:1;;;10182:236;10196:7;10193:1;10190:14;10182:236;;;10285:19;;;10279:26;10264:42;;10377:27;;;;10345:1;10333:14;;;;10212:19;;10182:236;;;10186:3;10446:6;10437:7;10434:19;10431:201;;;10507:19;;;10501:26;-1:-1:-1;;10590:1:1;10586:14;;;10602:3;10582:24;10578:37;10574:42;10559:58;10544:74;;10431:201;-1:-1:-1;;;;;10678:1:1;10662:14;;;10658:22;10645:36;;-1:-1:-1;9603:1345:1:o;13416:401::-;13618:2;13600:21;;;13657:2;13637:18;;;13630:30;13696:34;13691:2;13676:18;;13669:62;-1:-1:-1;;;13762:2:1;13747:18;;13740:35;13807:3;13792:19;;13416:401::o;13822:399::-;14024:2;14006:21;;;14063:2;14043:18;;;14036:30;14102:34;14097:2;14082:18;;14075:62;-1:-1:-1;;;14168:2:1;14153:18;;14146:33;14211:3;14196:19;;13822:399::o;15347:128::-;15414:9;;;15435:11;;;15432:37;;;15449:18;;:::i;15887:127::-;15948:10;15943:3;15939:20;15936:1;15929:31;15979:4;15976:1;15969:15;16003:4;16000:1;15993:15;16019:251;16089:6;16142:2;16130:9;16121:7;16117:23;16113:32;16110:52;;;16158:1;16155;16148:12;16110:52;16190:9;16184:16;16209:31;16234:5;16209:31;:::i;16275:980::-;16537:4;16585:3;16574:9;16570:19;16616:6;16605:9;16598:25;16642:2;16680:6;16675:2;16664:9;16660:18;16653:34;16723:3;16718:2;16707:9;16703:18;16696:31;16747:6;16782;16776:13;16813:6;16805;16798:22;16851:3;16840:9;16836:19;16829:26;;16890:2;16882:6;16878:15;16864:29;;16911:1;16921:195;16935:6;16932:1;16929:13;16921:195;;;17000:13;;-1:-1:-1;;;;;16996:39:1;16984:52;;17091:15;;;;17056:12;;;;17032:1;16950:9;16921:195;;;-1:-1:-1;;;;;;;17172:32:1;;;;17167:2;17152:18;;17145:60;-1:-1:-1;;;17236:3:1;17221:19;17214:35;17133:3;16275:980;-1:-1:-1;;;16275:980:1:o

Swarm Source

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