ETH Price: $3,378.25 (-1.91%)
Gas: 2 Gwei

Token

OneDollarDoge (ODD)
 

Overview

Max Total Supply

765,421.747523 ODD

Holders

150

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 6 Decimals)

Balance
50,186.947201 ODD

Value
$0.00
0x2cea8e08b9b5f86bef483ff8294ff3c9716e98f2
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:
ONEDOLLARDOGE

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-01-26
*/

/*

https://twitter.com/ODDERC20
https://t.me/ODDTOKEN

Starting out with a single dollar liquidity. 
Dev of One Dollar millionaire which peaked at 250k after starting out with a single dollar in the liquidity. 
$ODD will feature 8% burn tax one every buy and sell. No dev tax.


*/
// SPDX-License-Identifier: NOLICENSE

pragma solidity 0.8.9;

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

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

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

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}

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

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

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

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

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

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

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


contract ERC20 is Context, IERC20, IERC20Metadata {
    using SafeMath for uint256;

    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }

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

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

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

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

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

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

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

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

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

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

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

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

        return c;
    }

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

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

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

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

        return c;
    }

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

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

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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

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



library SafeMathInt {
    int256 private constant MIN_INT256 = int256(1) << 255;
    int256 private constant MAX_INT256 = ~(int256(1) << 255);

    /**
     * @dev Multiplies two int256 variables and fails on overflow.
     */
    function mul(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a * b;

        // Detect overflow when multiplying MIN_INT256 with -1
        require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256));
        require((b == 0) || (c / b == a));
        return c;
    }

    /**
     * @dev Division of two int256 variables and fails on overflow.
     */
    function div(int256 a, int256 b) internal pure returns (int256) {
        // Prevent overflow when dividing MIN_INT256 by -1
        require(b != -1 || a != MIN_INT256);

        // Solidity already throws when dividing by 0.
        return a / b;
    }

    /**
     * @dev Subtracts two int256 variables and fails on overflow.
     */
    function sub(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a - b;
        require((b >= 0 && c <= a) || (b < 0 && c > a));
        return c;
    }

    /**
     * @dev Adds two int256 variables and fails on overflow.
     */
    function add(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a + b;
        require((b >= 0 && c >= a) || (b < 0 && c < a));
        return c;
    }

    /**
     * @dev Converts to absolute value, and fails on overflow.
     */
    function abs(int256 a) internal pure returns (int256) {
        require(a != MIN_INT256);
        return a < 0 ? -a : a;
    }


    function toUint256Safe(int256 a) internal pure returns (uint256) {
        require(a >= 0);
        return uint256(a);
    }
}

library SafeMathUint {
  function toInt256Safe(uint256 a) internal pure returns (int256) {
    int256 b = int256(a);
    require(b >= 0);
    return b;
  }
}


interface IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

pragma solidity 0.8.9;

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

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

    bool private swapping;
        
    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;
    
    uint256 public supply;

    address public devWallet;
    
    bool public limitsInEffect = true;
    bool public tradingActive = true;
    bool public swapEnabled = true;

    mapping(address => uint256) private _holderLastTransferTimestamp;

    bool public transferDelayEnabled = true;

    uint256 public buyBurnFee;
    uint256 public buyDevFee;
    uint256 public buyTotalFees;

    uint256 public sellBurnFee;
    uint256 public sellDevFee;
    uint256 public sellTotalFees;   
    
    uint256 public tokensForBurn;
    uint256 public tokensForDev;

    uint256 public walletDigit;
    uint256 public transDigit;
    uint256 public delayDigit;
    
    /******************/

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

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

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

    constructor() ERC20("OneDollarDoge", "ODD") {
        
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        
        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;
        
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);
        
        uint256 _buyBurnFee = 8;
        uint256 _buyDevFee = 0;

        uint256 _sellBurnFee = 8;
        uint256 _sellDevFee = 0;
        
        uint256 totalSupply = 1 * 1e6 * 1e6;
        supply += totalSupply;
        
        walletDigit = 1;
        transDigit = 1;
        delayDigit = 0;

        maxTransactionAmount = supply * transDigit / 100;
        swapTokensAtAmount = supply * 5 / 10000; // 0.05% swap wallet;
        maxWallet = supply * walletDigit / 100;

        buyBurnFee = _buyBurnFee;
        buyDevFee = _buyDevFee;
        buyTotalFees = buyBurnFee + buyDevFee;
        
        sellBurnFee = _sellBurnFee;
        sellDevFee = _sellDevFee;
        sellTotalFees = sellBurnFee + sellDevFee;
        
        devWallet = 0x31128C2AEa7e1B14Bb903dF9a61480Af3e7FF740;

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

        _approve(owner(), address(uniswapV2Router), totalSupply);
        _mint(msg.sender, totalSupply);

    }

    receive() external payable {

  	}

    function enableTrading() external onlyOwner {
        buyBurnFee = 1;
        buyDevFee = 1;
        buyTotalFees = buyBurnFee + buyDevFee;

        sellBurnFee = 1;
        sellDevFee = 1;
        sellTotalFees = sellBurnFee + sellDevFee;

        delayDigit = 5;
    }
    
    function updateTransDigit(uint256 newNum) external onlyOwner {
        require(newNum >= 1);
        transDigit = newNum;
        updateLimits();
    }

    function updateWalletDigit(uint256 newNum) external onlyOwner {
        require(newNum >= 1);
        walletDigit = newNum;
        updateLimits();
    }

    function updateDelayDigit(uint256 newNum) external onlyOwner{
        delayDigit = newNum;
    }
    
    function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }
    
    function updateBuyFees(uint256 _burnFee, uint256 _devFee) external onlyOwner {
        buyBurnFee = _burnFee;
        buyDevFee = _devFee;
        buyTotalFees = buyBurnFee + buyDevFee;
        require(buyTotalFees <= 15, "Must keep fees at 20% or less");
    }
    
    function updateSellFees(uint256 _burnFee, uint256 _devFee) external onlyOwner {
        sellBurnFee = _burnFee;
        sellDevFee = _devFee;
        sellTotalFees = sellBurnFee + sellDevFee;
        require(sellTotalFees <= 15, "Must keep fees at 25% or less");
    }

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

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

    function updateLimits() private {
        maxTransactionAmount = supply * transDigit / 100;
        swapTokensAtAmount = supply * 5 / 10000; // 0.05% swap wallet;
        maxWallet = supply * walletDigit / 100;
    }

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

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function isExcludedFromFees(address account) public view returns(bool) {
        return _isExcludedFromFees[account];
    }
    
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        
         if(amount == 0) {
            super._transfer(from, to, 0);
            return;
        }
        
        if(limitsInEffect){
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ){
                if(!tradingActive){
                    require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active.");
                }

                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.  
                if (transferDelayEnabled){
                    if (to != owner() && to != address(uniswapV2Router) && to != address(uniswapV2Pair)){
                        require(_holderLastTransferTimestamp[tx.origin] < block.number, "_transfer:: Transfer Delay enabled.  Only one purchase per block allowed.");
                        _holderLastTransferTimestamp[tx.origin] = block.number + delayDigit;
                    }
                }
                 
                //when buy
                if (automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to]) {
                        require(amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount.");
                        require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded");
                }
                
                //when sell
                else if (automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from]) {
                        require(amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount.");
                }
                else if(!_isExcludedMaxTransactionAmount[to]){
                    require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded");
                }
            }
        }
        uint256 contractTokenBalance = balanceOf(address(this));
        
        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapping = false;
        }
        
        bool takeFee = !swapping;

        if(_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }
        
        uint256 fees = 0;

        if(takeFee){
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0){
                fees = amount.mul(sellTotalFees).div(100);
                tokensForBurn += fees * sellBurnFee / sellTotalFees;
                tokensForDev += fees * sellDevFee / sellTotalFees;
            }

            // on buy
            else if(automatedMarketMakerPairs[from] && buyTotalFees > 0) {

        	    fees = amount.mul(buyTotalFees).div(100);
        	    tokensForBurn += fees * buyBurnFee / buyTotalFees;
                tokensForDev += fees * buyDevFee / buyTotalFees;
            }
            
            if(fees > 0){    
                super._transfer(from, address(this), fees);
                if (tokensForBurn > 0) {
                    _burn(address(this), tokensForBurn);
                    supply = totalSupply();
                    updateLimits();
                    tokensForBurn = 0;
                }
            }
        	
        	amount -= fees;
        }

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

    function swapTokensForEth(uint256 tokenAmount) private {

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

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

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
        
    }
    
    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        bool success;
        
        if(contractBalance == 0) {return;}

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

        swapTokensForEth(contractBalance); 
        
        tokensForDev = 0;

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

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyBurnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"delayDigit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellBurnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supply","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":"tokensForBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"transDigit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_burnFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateDelayDigit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_burnFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateTransDigit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateWalletDigit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"walletDigit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526001600a60146101000a81548160ff0219169083151502179055506001600a60156101000a81548160ff0219169083151502179055506001600a60166101000a81548160ff0219169083151502179055506001600c60006101000a81548160ff0219169083151502179055503480156200007d57600080fd5b506040518060400160405280600d81526020017f4f6e65446f6c6c6172446f6765000000000000000000000000000000000000008152506040518060400160405280600381526020017f4f4444000000000000000000000000000000000000000000000000000000000081525081600390805190602001906200010292919062000d5c565b5080600490805190602001906200011b92919062000d5c565b5050506000620001306200065560201b60201c565b905080600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001fb8160016200065d60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200027657600080fd5b505afa1580156200028b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002b1919062000e76565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200031457600080fd5b505afa15801562000329573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200034f919062000e76565b6040518363ffffffff1660e01b81526004016200036e92919062000eb9565b602060405180830381600087803b1580156200038957600080fd5b505af11580156200039e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003c4919062000e76565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200040c60a05160016200065d60201b60201c565b6200042160a05160016200075a60201b60201c565b6000600890506000806008905060008064e8d4a51000905080600960008282546200044d919062000f1f565b92505081905550600160158190555060016016819055506000601781905550606460165460095462000480919062000f7c565b6200048c91906200100c565b6006819055506127106005600954620004a6919062000f7c565b620004b291906200100c565b6007819055506064601554600954620004cc919062000f7c565b620004d891906200100c565b60088190555084600d8190555083600e81905550600e54600d54620004fe919062000f1f565b600f81905550826010819055508160118190555060115460105462000524919062000f1f565b6012819055507331128c2aea7e1b14bb903df9a61480af3e7ff740600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620005a162000593620007fb60201b60201c565b60016200082560201b60201c565b620005b43060016200082560201b60201c565b620005c961dead60016200082560201b60201c565b620005eb620005dd620007fb60201b60201c565b60016200065d60201b60201c565b620005fe3060016200065d60201b60201c565b6200061361dead60016200065d60201b60201c565b6200063762000627620007fb60201b60201c565b608051836200097260201b60201c565b62000649338262000b4560201b60201c565b505050505050620013a8565b600033905090565b6200066d6200065560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614620006ff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006f690620010a5565b60405180910390fd5b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620008356200065560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614620008c7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008be90620010a5565b60405180910390fd5b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620009669190620010e4565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415620009e5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009dc9062001177565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000a58576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a4f906200120f565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405162000b38919062001242565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000bb8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000baf90620012af565b60405180910390fd5b62000bcc6000838362000cf460201b60201c565b62000be88160025462000cf960201b62001e911790919060201c565b60028190555062000c46816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000cf960201b62001e911790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000ce8919062001242565b60405180910390a35050565b505050565b600080828462000d0a919062000f1f565b90508381101562000d52576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000d499062001321565b60405180910390fd5b8091505092915050565b82805462000d6a9062001372565b90600052602060002090601f01602090048101928262000d8e576000855562000dda565b82601f1062000da957805160ff191683800117855562000dda565b8280016001018555821562000dda579182015b8281111562000dd957825182559160200191906001019062000dbc565b5b50905062000de9919062000ded565b5090565b5b8082111562000e0857600081600090555060010162000dee565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000e3e8262000e11565b9050919050565b62000e508162000e31565b811462000e5c57600080fd5b50565b60008151905062000e708162000e45565b92915050565b60006020828403121562000e8f5762000e8e62000e0c565b5b600062000e9f8482850162000e5f565b91505092915050565b62000eb38162000e31565b82525050565b600060408201905062000ed0600083018562000ea8565b62000edf602083018462000ea8565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000f2c8262000ee6565b915062000f398362000ee6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000f715762000f7062000ef0565b5b828201905092915050565b600062000f898262000ee6565b915062000f968362000ee6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000fd25762000fd162000ef0565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000620010198262000ee6565b9150620010268362000ee6565b92508262001039576200103862000fdd565b5b828204905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200108d60208362001044565b91506200109a8262001055565b602082019050919050565b60006020820190508181036000830152620010c0816200107e565b9050919050565b60008115159050919050565b620010de81620010c7565b82525050565b6000602082019050620010fb6000830184620010d3565b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006200115f60248362001044565b91506200116c8262001101565b604082019050919050565b60006020820190508181036000830152620011928162001150565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000620011f760228362001044565b9150620012048262001199565b604082019050919050565b600060208201905081810360008301526200122a81620011e8565b9050919050565b6200123c8162000ee6565b82525050565b600060208201905062001259600083018462001231565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062001297601f8362001044565b9150620012a4826200125f565b602082019050919050565b60006020820190508181036000830152620012ca8162001288565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b600062001309601b8362001044565b91506200131682620012d1565b602082019050919050565b600060208201905081810360008301526200133c81620012fa565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200138b57607f821691505b60208210811415620013a257620013a162001343565b5b50919050565b60805160a0516149ca620013f8600039600081816111ac0152818161185a01526124e2015260008181610e4b0152818161248a0152818161353c0152818161362c015261365301526149ca6000f3fe6080604052600436106102cd5760003560e01c80638a8c523c11610175578063adb873bd116100dc578063d85ba06311610095578063e71dc3f51161006f578063e71dc3f514610b0d578063f203acb614610b38578063f2fde38b14610b63578063f8b45b0514610b8c576102d4565b8063d85ba06314610a7a578063dd62ed3e14610aa5578063e2f4560514610ae2576102d4565b8063adb873bd14610968578063b62496f514610993578063bbc0c742146109d0578063c0246668146109fb578063c876d0b914610a24578063c8c8ebe414610a4f576102d4565b80639c3b4fdc1161012e5780639c3b4fdc146108445780639fccce321461086f5780639fdc48241461089a578063a0d82dc5146108c3578063a457c2d7146108ee578063a9059cbb1461092b576102d4565b80638a8c523c146107585780638da5cb5b1461076f5780638ea5220f1461079a57806395d89b41146107c5578063975d71e2146107f05780639a7a23d61461081b576102d4565b806327c8f8351161023457806366ca9b83116101ed57806370a08231116101c757806370a08231146106b0578063715018a6146106ed5780637571336a146107045780637ab439831461072d576102d4565b806366ca9b83146106315780636a486a8e1461065a5780636ddd171314610685576102d4565b806327c8f8351461050b578063313ce56714610536578063395093511461056157806349bd5a5e1461059e5780634a62bb65146105c95780634fbee193146105f4576102d4565b80631694505e116102865780631694505e146103fb57806318160ddd146104265780631816467f146104515780631d7778561461047a5780631fa07da5146104a557806323b872dd146104ce576102d4565b806302dbd8f8146102d9578063047fc9aa1461030257806306fdde031461032d578063095ea7b31461035857806310d5de5314610395578063150de0bb146103d2576102d4565b366102d457005b600080fd5b3480156102e557600080fd5b5061030060048036038101906102fb91906137d1565b610bb7565b005b34801561030e57600080fd5b50610317610cbc565b6040516103249190613820565b60405180910390f35b34801561033957600080fd5b50610342610cc2565b60405161034f91906138d4565b60405180910390f35b34801561036457600080fd5b5061037f600480360381019061037a9190613954565b610d54565b60405161038c91906139af565b60405180910390f35b3480156103a157600080fd5b506103bc60048036038101906103b791906139ca565b610d72565b6040516103c991906139af565b60405180910390f35b3480156103de57600080fd5b506103f960048036038101906103f491906139f7565b610d92565b005b34801561040757600080fd5b50610410610e49565b60405161041d9190613a83565b60405180910390f35b34801561043257600080fd5b5061043b610e6d565b6040516104489190613820565b60405180910390f35b34801561045d57600080fd5b50610478600480360381019061047391906139ca565b610e77565b005b34801561048657600080fd5b5061048f610f52565b60405161049c9190613820565b60405180910390f35b3480156104b157600080fd5b506104cc60048036038101906104c791906139f7565b610f58565b005b3480156104da57600080fd5b506104f560048036038101906104f09190613a9e565b61100f565b60405161050291906139af565b60405180910390f35b34801561051757600080fd5b506105206110e8565b60405161052d9190613b00565b60405180910390f35b34801561054257600080fd5b5061054b6110ee565b6040516105589190613b37565b60405180910390f35b34801561056d57600080fd5b5061058860048036038101906105839190613954565b6110f7565b60405161059591906139af565b60405180910390f35b3480156105aa57600080fd5b506105b36111aa565b6040516105c09190613b00565b60405180910390f35b3480156105d557600080fd5b506105de6111ce565b6040516105eb91906139af565b60405180910390f35b34801561060057600080fd5b5061061b600480360381019061061691906139ca565b6111e1565b60405161062891906139af565b60405180910390f35b34801561063d57600080fd5b50610658600480360381019061065391906137d1565b611237565b005b34801561066657600080fd5b5061066f61133b565b60405161067c9190613820565b60405180910390f35b34801561069157600080fd5b5061069a611341565b6040516106a791906139af565b60405180910390f35b3480156106bc57600080fd5b506106d760048036038101906106d291906139ca565b611354565b6040516106e49190613820565b60405180910390f35b3480156106f957600080fd5b5061070261139c565b005b34801561071057600080fd5b5061072b60048036038101906107269190613b7e565b6114f4565b005b34801561073957600080fd5b506107426115e6565b60405161074f9190613820565b60405180910390f35b34801561076457600080fd5b5061076d6115ec565b005b34801561077b57600080fd5b506107846116d9565b6040516107919190613b00565b60405180910390f35b3480156107a657600080fd5b506107af611703565b6040516107bc9190613b00565b60405180910390f35b3480156107d157600080fd5b506107da611729565b6040516107e791906138d4565b60405180910390f35b3480156107fc57600080fd5b506108056117bb565b6040516108129190613820565b60405180910390f35b34801561082757600080fd5b50610842600480360381019061083d9190613b7e565b6117c1565b005b34801561085057600080fd5b506108596118f5565b6040516108669190613820565b60405180910390f35b34801561087b57600080fd5b506108846118fb565b6040516108919190613820565b60405180910390f35b3480156108a657600080fd5b506108c160048036038101906108bc91906139f7565b611901565b005b3480156108cf57600080fd5b506108d86119a2565b6040516108e59190613820565b60405180910390f35b3480156108fa57600080fd5b5061091560048036038101906109109190613954565b6119a8565b60405161092291906139af565b60405180910390f35b34801561093757600080fd5b50610952600480360381019061094d9190613954565b611a75565b60405161095f91906139af565b60405180910390f35b34801561097457600080fd5b5061097d611a93565b60405161098a9190613820565b60405180910390f35b34801561099f57600080fd5b506109ba60048036038101906109b591906139ca565b611a99565b6040516109c791906139af565b60405180910390f35b3480156109dc57600080fd5b506109e5611ab9565b6040516109f291906139af565b60405180910390f35b348015610a0757600080fd5b50610a226004803603810190610a1d9190613b7e565b611acc565b005b348015610a3057600080fd5b50610a39611c0c565b604051610a4691906139af565b60405180910390f35b348015610a5b57600080fd5b50610a64611c1f565b604051610a719190613820565b60405180910390f35b348015610a8657600080fd5b50610a8f611c25565b604051610a9c9190613820565b60405180910390f35b348015610ab157600080fd5b50610acc6004803603810190610ac79190613bbe565b611c2b565b604051610ad99190613820565b60405180910390f35b348015610aee57600080fd5b50610af7611cb2565b604051610b049190613820565b60405180910390f35b348015610b1957600080fd5b50610b22611cb8565b604051610b2f9190613820565b60405180910390f35b348015610b4457600080fd5b50610b4d611cbe565b604051610b5a9190613820565b60405180910390f35b348015610b6f57600080fd5b50610b8a6004803603810190610b8591906139ca565b611cc4565b005b348015610b9857600080fd5b50610ba1611e8b565b604051610bae9190613820565b60405180910390f35b610bbf611eef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4590613c4a565b60405180910390fd5b8160108190555080601181905550601154601054610c6c9190613c99565b601281905550600f6012541115610cb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610caf90613d3b565b60405180910390fd5b5050565b60095481565b606060038054610cd190613d8a565b80601f0160208091040260200160405190810160405280929190818152602001828054610cfd90613d8a565b8015610d4a5780601f10610d1f57610100808354040283529160200191610d4a565b820191906000526020600020905b815481529060010190602001808311610d2d57829003601f168201915b5050505050905090565b6000610d68610d61611eef565b8484611ef7565b6001905092915050565b60196020528060005260406000206000915054906101000a900460ff1681565b610d9a611eef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2090613c4a565b60405180910390fd5b6001811015610e3757600080fd5b80601581905550610e466120c2565b50565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610e7f611eef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0590613c4a565b60405180910390fd5b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60135481565b610f60611eef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610fef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe690613c4a565b60405180910390fd5b6001811015610ffd57600080fd5b8060168190555061100c6120c2565b50565b600061101c84848461212a565b6110dd84611028611eef565b6110d88560405180606001604052806028815260200161494860289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061108e611eef565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612da19092919063ffffffff16565b611ef7565b600190509392505050565b61dead81565b60006006905090565b60006111a0611104611eef565b8461119b8560016000611115611eef565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e9190919063ffffffff16565b611ef7565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600a60149054906101000a900460ff1681565b6000601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b61123f611eef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146112ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c590613c4a565b60405180910390fd5b81600d8190555080600e81905550600e54600d546112ec9190613c99565b600f81905550600f80541115611337576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132e90613e08565b60405180910390fd5b5050565b60125481565b600a60169054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113a4611eef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611433576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142a90613c4a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6114fc611eef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461158b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158290613c4a565b60405180910390fd5b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60155481565b6115f4611eef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611683576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167a90613c4a565b60405180910390fd5b6001600d819055506001600e81905550600e54600d546116a39190613c99565b600f81905550600160108190555060016011819055506011546010546116c99190613c99565b6012819055506005601781905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606004805461173890613d8a565b80601f016020809104026020016040519081016040528092919081815260200182805461176490613d8a565b80156117b15780601f10611786576101008083540402835291602001916117b1565b820191906000526020600020905b81548152906001019060200180831161179457829003601f168201915b5050505050905090565b60165481565b6117c9611eef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611858576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184f90613c4a565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118de90613e9a565b60405180910390fd5b6118f18282612e05565b5050565b600e5481565b60145481565b611909611eef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611998576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198f90613c4a565b60405180910390fd5b8060178190555050565b60115481565b6000611a6b6119b5611eef565b84611a668560405180606001604052806025815260200161497060259139600160006119df611eef565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612da19092919063ffffffff16565b611ef7565b6001905092915050565b6000611a89611a82611eef565b848461212a565b6001905092915050565b60105481565b601a6020528060005260406000206000915054906101000a900460ff1681565b600a60159054906101000a900460ff1681565b611ad4611eef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5a90613c4a565b60405180910390fd5b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611c0091906139af565b60405180910390a25050565b600c60009054906101000a900460ff1681565b60065481565b600f5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60075481565b600d5481565b60175481565b611ccc611eef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5290613c4a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611dcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc290613f2c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60085481565b6000808284611ea09190613c99565b905083811015611ee5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611edc90613f98565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611f67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5e9061402a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fce906140bc565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516120b59190613820565b60405180910390a3505050565b60646016546009546120d491906140dc565b6120de9190614165565b60068190555061271060056009546120f691906140dc565b6121009190614165565b600781905550606460155460095461211891906140dc565b6121229190614165565b600881905550565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561219a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219190614208565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561220a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122019061429a565b60405180910390fd5b60008114156122245761221f83836000612ea6565b612d9c565b600a60149054906101000a900460ff16156128f4576122416116d9565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156122af575061227f6116d9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156122e85750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612322575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561233b5750600560149054906101000a900460ff16155b156128f357600a60159054906101000a900460ff1661243557601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806123f55750601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612434576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242b90614306565b60405180910390fd5b5b600c60009054906101000a900460ff161561260a576124526116d9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156124d957507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561253157507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156126095743600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106125b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ae906143be565b60405180910390fd5b601754436125c59190613c99565b600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156126ad5750601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612754576006548111156126f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ee90614450565b60405180910390fd5b60085461270383611354565b8261270e9190613c99565b111561274f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612746906144bc565b60405180910390fd5b6128f2565b601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156127f75750601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561284657600654811115612841576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128389061454e565b60405180910390fd5b6128f1565b601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166128f0576008546128a383611354565b826128ae9190613c99565b11156128ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e6906144bc565b60405180910390fd5b5b5b5b5b5b60006128ff30611354565b9050600060075482101590508080156129255750600560149054906101000a900460ff16155b801561293d5750600a60169054906101000a900460ff165b80156129935750601a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156129e95750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612a3f5750601860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612a83576001600560146101000a81548160ff021916908315150217905550612a6761313b565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612b395750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612b4357600090505b60008115612d8c57601a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612ba657506000601254115b15612c4057612bd36064612bc56012548861322590919063ffffffff16565b6132a090919063ffffffff16565b905060125460105482612be691906140dc565b612bf09190614165565b60136000828254612c019190613c99565b9250508190555060125460115482612c1991906140dc565b612c239190614165565b60146000828254612c349190613c99565b92505081905550612d32565b601a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612c9b57506000600f54115b15612d3157612cc86064612cba600f548861322590919063ffffffff16565b6132a090919063ffffffff16565b9050600f54600d5482612cdb91906140dc565b612ce59190614165565b60136000828254612cf69190613c99565b92505081905550600f54600e5482612d0e91906140dc565b612d189190614165565b60146000828254612d299190613c99565b925050819055505b5b6000811115612d7d57612d46873083612ea6565b60006013541115612d7c57612d5d306013546132ea565b612d65610e6d565b600981905550612d736120c2565b60006013819055505b5b8085612d89919061456e565b94505b612d97878787612ea6565b505050505b505050565b6000838311158290612de9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612de091906138d4565b60405180910390fd5b5060008385612df8919061456e565b9050809150509392505050565b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612f16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f0d90614208565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f7d9061429a565b60405180910390fd5b612f91838383613498565b612ffc81604051806060016040528060268152602001614922602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612da19092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061308f816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e9190919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161312e9190613820565b60405180910390a3505050565b600061314630611354565b9050600080821415613159575050613223565b601460075461316891906140dc565b82111561318157601460075461317e91906140dc565b91505b61318a8261349d565b6000601481905550600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516131d8906145d3565b60006040518083038185875af1925050503d8060008114613215576040519150601f19603f3d011682016040523d82523d6000602084013e61321a565b606091505b50508091505050505b565b600080831415613238576000905061329a565b6000828461324691906140dc565b90508284826132559190614165565b14613295576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161328c9061465a565b60405180910390fd5b809150505b92915050565b60006132e283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506136e9565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561335a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613351906146ec565b60405180910390fd5b61336682600083613498565b6133d181604051806060016040528060228152602001614900602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612da19092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506134288160025461374c90919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161348c9190613820565b60405180910390a35050565b505050565b6000600267ffffffffffffffff8111156134ba576134b961470c565b5b6040519080825280602002602001820160405280156134e85781602001602082028036833780820191505090505b5090503081600081518110613500576134ff61473b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156135a057600080fd5b505afa1580156135b4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135d8919061477f565b816001815181106135ec576135eb61473b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613651307f000000000000000000000000000000000000000000000000000000000000000084611ef7565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016136b39594939291906148a5565b600060405180830381600087803b1580156136cd57600080fd5b505af11580156136e1573d6000803e3d6000fd5b505050505050565b60008083118290613730576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161372791906138d4565b60405180910390fd5b506000838561373f9190614165565b9050809150509392505050565b600061378e83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612da1565b905092915050565b600080fd5b6000819050919050565b6137ae8161379b565b81146137b957600080fd5b50565b6000813590506137cb816137a5565b92915050565b600080604083850312156137e8576137e7613796565b5b60006137f6858286016137bc565b9250506020613807858286016137bc565b9150509250929050565b61381a8161379b565b82525050565b60006020820190506138356000830184613811565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561387557808201518184015260208101905061385a565b83811115613884576000848401525b50505050565b6000601f19601f8301169050919050565b60006138a68261383b565b6138b08185613846565b93506138c0818560208601613857565b6138c98161388a565b840191505092915050565b600060208201905081810360008301526138ee818461389b565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613921826138f6565b9050919050565b61393181613916565b811461393c57600080fd5b50565b60008135905061394e81613928565b92915050565b6000806040838503121561396b5761396a613796565b5b60006139798582860161393f565b925050602061398a858286016137bc565b9150509250929050565b60008115159050919050565b6139a981613994565b82525050565b60006020820190506139c460008301846139a0565b92915050565b6000602082840312156139e0576139df613796565b5b60006139ee8482850161393f565b91505092915050565b600060208284031215613a0d57613a0c613796565b5b6000613a1b848285016137bc565b91505092915050565b6000819050919050565b6000613a49613a44613a3f846138f6565b613a24565b6138f6565b9050919050565b6000613a5b82613a2e565b9050919050565b6000613a6d82613a50565b9050919050565b613a7d81613a62565b82525050565b6000602082019050613a986000830184613a74565b92915050565b600080600060608486031215613ab757613ab6613796565b5b6000613ac58682870161393f565b9350506020613ad68682870161393f565b9250506040613ae7868287016137bc565b9150509250925092565b613afa81613916565b82525050565b6000602082019050613b156000830184613af1565b92915050565b600060ff82169050919050565b613b3181613b1b565b82525050565b6000602082019050613b4c6000830184613b28565b92915050565b613b5b81613994565b8114613b6657600080fd5b50565b600081359050613b7881613b52565b92915050565b60008060408385031215613b9557613b94613796565b5b6000613ba38582860161393f565b9250506020613bb485828601613b69565b9150509250929050565b60008060408385031215613bd557613bd4613796565b5b6000613be38582860161393f565b9250506020613bf48582860161393f565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613c34602083613846565b9150613c3f82613bfe565b602082019050919050565b60006020820190508181036000830152613c6381613c27565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613ca48261379b565b9150613caf8361379b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ce457613ce3613c6a565b5b828201905092915050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b6000613d25601d83613846565b9150613d3082613cef565b602082019050919050565b60006020820190508181036000830152613d5481613d18565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613da257607f821691505b60208210811415613db657613db5613d5b565b5b50919050565b7f4d757374206b656570206665657320617420323025206f72206c657373000000600082015250565b6000613df2601d83613846565b9150613dfd82613dbc565b602082019050919050565b60006020820190508181036000830152613e2181613de5565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000613e84603983613846565b9150613e8f82613e28565b604082019050919050565b60006020820190508181036000830152613eb381613e77565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613f16602683613846565b9150613f2182613eba565b604082019050919050565b60006020820190508181036000830152613f4581613f09565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000613f82601b83613846565b9150613f8d82613f4c565b602082019050919050565b60006020820190508181036000830152613fb181613f75565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614014602483613846565b915061401f82613fb8565b604082019050919050565b6000602082019050818103600083015261404381614007565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006140a6602283613846565b91506140b18261404a565b604082019050919050565b600060208201905081810360008301526140d581614099565b9050919050565b60006140e78261379b565b91506140f28361379b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561412b5761412a613c6a565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006141708261379b565b915061417b8361379b565b92508261418b5761418a614136565b5b828204905092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006141f2602583613846565b91506141fd82614196565b604082019050919050565b60006020820190508181036000830152614221816141e5565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614284602383613846565b915061428f82614228565b604082019050919050565b600060208201905081810360008301526142b381614277565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006142f0601683613846565b91506142fb826142ba565b602082019050919050565b6000602082019050818103600083015261431f816142e3565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006143a8604983613846565b91506143b382614326565b606082019050919050565b600060208201905081810360008301526143d78161439b565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b600061443a603583613846565b9150614445826143de565b604082019050919050565b600060208201905081810360008301526144698161442d565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006144a6601383613846565b91506144b182614470565b602082019050919050565b600060208201905081810360008301526144d581614499565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614538603683613846565b9150614543826144dc565b604082019050919050565b600060208201905081810360008301526145678161452b565b9050919050565b60006145798261379b565b91506145848361379b565b92508282101561459757614596613c6a565b5b828203905092915050565b600081905092915050565b50565b60006145bd6000836145a2565b91506145c8826145ad565b600082019050919050565b60006145de826145b0565b9150819050919050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b6000614644602183613846565b915061464f826145e8565b604082019050919050565b6000602082019050818103600083015261467381614637565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006146d6602183613846565b91506146e18261467a565b604082019050919050565b60006020820190508181036000830152614705816146c9565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061477981613928565b92915050565b60006020828403121561479557614794613796565b5b60006147a38482850161476a565b91505092915050565b6000819050919050565b60006147d16147cc6147c7846147ac565b613a24565b61379b565b9050919050565b6147e1816147b6565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61481c81613916565b82525050565b600061482e8383614813565b60208301905092915050565b6000602082019050919050565b6000614852826147e7565b61485c81856147f2565b935061486783614803565b8060005b8381101561489857815161487f8882614822565b975061488a8361483a565b92505060018101905061486b565b5085935050505092915050565b600060a0820190506148ba6000830188613811565b6148c760208301876147d8565b81810360408301526148d98186614847565b90506148e86060830185613af1565b6148f56080830184613811565b969550505050505056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122063188d34810b6ae07f1ee64b95a889e6e368f1567f9c3bbd2d8e40ce2b58250864736f6c63430008090033

Deployed Bytecode

0x6080604052600436106102cd5760003560e01c80638a8c523c11610175578063adb873bd116100dc578063d85ba06311610095578063e71dc3f51161006f578063e71dc3f514610b0d578063f203acb614610b38578063f2fde38b14610b63578063f8b45b0514610b8c576102d4565b8063d85ba06314610a7a578063dd62ed3e14610aa5578063e2f4560514610ae2576102d4565b8063adb873bd14610968578063b62496f514610993578063bbc0c742146109d0578063c0246668146109fb578063c876d0b914610a24578063c8c8ebe414610a4f576102d4565b80639c3b4fdc1161012e5780639c3b4fdc146108445780639fccce321461086f5780639fdc48241461089a578063a0d82dc5146108c3578063a457c2d7146108ee578063a9059cbb1461092b576102d4565b80638a8c523c146107585780638da5cb5b1461076f5780638ea5220f1461079a57806395d89b41146107c5578063975d71e2146107f05780639a7a23d61461081b576102d4565b806327c8f8351161023457806366ca9b83116101ed57806370a08231116101c757806370a08231146106b0578063715018a6146106ed5780637571336a146107045780637ab439831461072d576102d4565b806366ca9b83146106315780636a486a8e1461065a5780636ddd171314610685576102d4565b806327c8f8351461050b578063313ce56714610536578063395093511461056157806349bd5a5e1461059e5780634a62bb65146105c95780634fbee193146105f4576102d4565b80631694505e116102865780631694505e146103fb57806318160ddd146104265780631816467f146104515780631d7778561461047a5780631fa07da5146104a557806323b872dd146104ce576102d4565b806302dbd8f8146102d9578063047fc9aa1461030257806306fdde031461032d578063095ea7b31461035857806310d5de5314610395578063150de0bb146103d2576102d4565b366102d457005b600080fd5b3480156102e557600080fd5b5061030060048036038101906102fb91906137d1565b610bb7565b005b34801561030e57600080fd5b50610317610cbc565b6040516103249190613820565b60405180910390f35b34801561033957600080fd5b50610342610cc2565b60405161034f91906138d4565b60405180910390f35b34801561036457600080fd5b5061037f600480360381019061037a9190613954565b610d54565b60405161038c91906139af565b60405180910390f35b3480156103a157600080fd5b506103bc60048036038101906103b791906139ca565b610d72565b6040516103c991906139af565b60405180910390f35b3480156103de57600080fd5b506103f960048036038101906103f491906139f7565b610d92565b005b34801561040757600080fd5b50610410610e49565b60405161041d9190613a83565b60405180910390f35b34801561043257600080fd5b5061043b610e6d565b6040516104489190613820565b60405180910390f35b34801561045d57600080fd5b50610478600480360381019061047391906139ca565b610e77565b005b34801561048657600080fd5b5061048f610f52565b60405161049c9190613820565b60405180910390f35b3480156104b157600080fd5b506104cc60048036038101906104c791906139f7565b610f58565b005b3480156104da57600080fd5b506104f560048036038101906104f09190613a9e565b61100f565b60405161050291906139af565b60405180910390f35b34801561051757600080fd5b506105206110e8565b60405161052d9190613b00565b60405180910390f35b34801561054257600080fd5b5061054b6110ee565b6040516105589190613b37565b60405180910390f35b34801561056d57600080fd5b5061058860048036038101906105839190613954565b6110f7565b60405161059591906139af565b60405180910390f35b3480156105aa57600080fd5b506105b36111aa565b6040516105c09190613b00565b60405180910390f35b3480156105d557600080fd5b506105de6111ce565b6040516105eb91906139af565b60405180910390f35b34801561060057600080fd5b5061061b600480360381019061061691906139ca565b6111e1565b60405161062891906139af565b60405180910390f35b34801561063d57600080fd5b50610658600480360381019061065391906137d1565b611237565b005b34801561066657600080fd5b5061066f61133b565b60405161067c9190613820565b60405180910390f35b34801561069157600080fd5b5061069a611341565b6040516106a791906139af565b60405180910390f35b3480156106bc57600080fd5b506106d760048036038101906106d291906139ca565b611354565b6040516106e49190613820565b60405180910390f35b3480156106f957600080fd5b5061070261139c565b005b34801561071057600080fd5b5061072b60048036038101906107269190613b7e565b6114f4565b005b34801561073957600080fd5b506107426115e6565b60405161074f9190613820565b60405180910390f35b34801561076457600080fd5b5061076d6115ec565b005b34801561077b57600080fd5b506107846116d9565b6040516107919190613b00565b60405180910390f35b3480156107a657600080fd5b506107af611703565b6040516107bc9190613b00565b60405180910390f35b3480156107d157600080fd5b506107da611729565b6040516107e791906138d4565b60405180910390f35b3480156107fc57600080fd5b506108056117bb565b6040516108129190613820565b60405180910390f35b34801561082757600080fd5b50610842600480360381019061083d9190613b7e565b6117c1565b005b34801561085057600080fd5b506108596118f5565b6040516108669190613820565b60405180910390f35b34801561087b57600080fd5b506108846118fb565b6040516108919190613820565b60405180910390f35b3480156108a657600080fd5b506108c160048036038101906108bc91906139f7565b611901565b005b3480156108cf57600080fd5b506108d86119a2565b6040516108e59190613820565b60405180910390f35b3480156108fa57600080fd5b5061091560048036038101906109109190613954565b6119a8565b60405161092291906139af565b60405180910390f35b34801561093757600080fd5b50610952600480360381019061094d9190613954565b611a75565b60405161095f91906139af565b60405180910390f35b34801561097457600080fd5b5061097d611a93565b60405161098a9190613820565b60405180910390f35b34801561099f57600080fd5b506109ba60048036038101906109b591906139ca565b611a99565b6040516109c791906139af565b60405180910390f35b3480156109dc57600080fd5b506109e5611ab9565b6040516109f291906139af565b60405180910390f35b348015610a0757600080fd5b50610a226004803603810190610a1d9190613b7e565b611acc565b005b348015610a3057600080fd5b50610a39611c0c565b604051610a4691906139af565b60405180910390f35b348015610a5b57600080fd5b50610a64611c1f565b604051610a719190613820565b60405180910390f35b348015610a8657600080fd5b50610a8f611c25565b604051610a9c9190613820565b60405180910390f35b348015610ab157600080fd5b50610acc6004803603810190610ac79190613bbe565b611c2b565b604051610ad99190613820565b60405180910390f35b348015610aee57600080fd5b50610af7611cb2565b604051610b049190613820565b60405180910390f35b348015610b1957600080fd5b50610b22611cb8565b604051610b2f9190613820565b60405180910390f35b348015610b4457600080fd5b50610b4d611cbe565b604051610b5a9190613820565b60405180910390f35b348015610b6f57600080fd5b50610b8a6004803603810190610b8591906139ca565b611cc4565b005b348015610b9857600080fd5b50610ba1611e8b565b604051610bae9190613820565b60405180910390f35b610bbf611eef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4590613c4a565b60405180910390fd5b8160108190555080601181905550601154601054610c6c9190613c99565b601281905550600f6012541115610cb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610caf90613d3b565b60405180910390fd5b5050565b60095481565b606060038054610cd190613d8a565b80601f0160208091040260200160405190810160405280929190818152602001828054610cfd90613d8a565b8015610d4a5780601f10610d1f57610100808354040283529160200191610d4a565b820191906000526020600020905b815481529060010190602001808311610d2d57829003601f168201915b5050505050905090565b6000610d68610d61611eef565b8484611ef7565b6001905092915050565b60196020528060005260406000206000915054906101000a900460ff1681565b610d9a611eef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2090613c4a565b60405180910390fd5b6001811015610e3757600080fd5b80601581905550610e466120c2565b50565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610e7f611eef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0590613c4a565b60405180910390fd5b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60135481565b610f60611eef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610fef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe690613c4a565b60405180910390fd5b6001811015610ffd57600080fd5b8060168190555061100c6120c2565b50565b600061101c84848461212a565b6110dd84611028611eef565b6110d88560405180606001604052806028815260200161494860289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061108e611eef565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612da19092919063ffffffff16565b611ef7565b600190509392505050565b61dead81565b60006006905090565b60006111a0611104611eef565b8461119b8560016000611115611eef565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e9190919063ffffffff16565b611ef7565b6001905092915050565b7f000000000000000000000000d7aa93ae7a954a672035dd78a49a8c1ccfd8c5d481565b600a60149054906101000a900460ff1681565b6000601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b61123f611eef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146112ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c590613c4a565b60405180910390fd5b81600d8190555080600e81905550600e54600d546112ec9190613c99565b600f81905550600f80541115611337576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132e90613e08565b60405180910390fd5b5050565b60125481565b600a60169054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113a4611eef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611433576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142a90613c4a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6114fc611eef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461158b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158290613c4a565b60405180910390fd5b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60155481565b6115f4611eef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611683576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167a90613c4a565b60405180910390fd5b6001600d819055506001600e81905550600e54600d546116a39190613c99565b600f81905550600160108190555060016011819055506011546010546116c99190613c99565b6012819055506005601781905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606004805461173890613d8a565b80601f016020809104026020016040519081016040528092919081815260200182805461176490613d8a565b80156117b15780601f10611786576101008083540402835291602001916117b1565b820191906000526020600020905b81548152906001019060200180831161179457829003601f168201915b5050505050905090565b60165481565b6117c9611eef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611858576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184f90613c4a565b60405180910390fd5b7f000000000000000000000000d7aa93ae7a954a672035dd78a49a8c1ccfd8c5d473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118de90613e9a565b60405180910390fd5b6118f18282612e05565b5050565b600e5481565b60145481565b611909611eef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611998576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198f90613c4a565b60405180910390fd5b8060178190555050565b60115481565b6000611a6b6119b5611eef565b84611a668560405180606001604052806025815260200161497060259139600160006119df611eef565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612da19092919063ffffffff16565b611ef7565b6001905092915050565b6000611a89611a82611eef565b848461212a565b6001905092915050565b60105481565b601a6020528060005260406000206000915054906101000a900460ff1681565b600a60159054906101000a900460ff1681565b611ad4611eef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5a90613c4a565b60405180910390fd5b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611c0091906139af565b60405180910390a25050565b600c60009054906101000a900460ff1681565b60065481565b600f5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60075481565b600d5481565b60175481565b611ccc611eef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5290613c4a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611dcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc290613f2c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60085481565b6000808284611ea09190613c99565b905083811015611ee5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611edc90613f98565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611f67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5e9061402a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fce906140bc565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516120b59190613820565b60405180910390a3505050565b60646016546009546120d491906140dc565b6120de9190614165565b60068190555061271060056009546120f691906140dc565b6121009190614165565b600781905550606460155460095461211891906140dc565b6121229190614165565b600881905550565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561219a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219190614208565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561220a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122019061429a565b60405180910390fd5b60008114156122245761221f83836000612ea6565b612d9c565b600a60149054906101000a900460ff16156128f4576122416116d9565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156122af575061227f6116d9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156122e85750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612322575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561233b5750600560149054906101000a900460ff16155b156128f357600a60159054906101000a900460ff1661243557601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806123f55750601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612434576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242b90614306565b60405180910390fd5b5b600c60009054906101000a900460ff161561260a576124526116d9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156124d957507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561253157507f000000000000000000000000d7aa93ae7a954a672035dd78a49a8c1ccfd8c5d473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156126095743600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106125b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ae906143be565b60405180910390fd5b601754436125c59190613c99565b600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156126ad5750601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612754576006548111156126f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ee90614450565b60405180910390fd5b60085461270383611354565b8261270e9190613c99565b111561274f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612746906144bc565b60405180910390fd5b6128f2565b601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156127f75750601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561284657600654811115612841576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128389061454e565b60405180910390fd5b6128f1565b601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166128f0576008546128a383611354565b826128ae9190613c99565b11156128ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e6906144bc565b60405180910390fd5b5b5b5b5b5b60006128ff30611354565b9050600060075482101590508080156129255750600560149054906101000a900460ff16155b801561293d5750600a60169054906101000a900460ff165b80156129935750601a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156129e95750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612a3f5750601860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612a83576001600560146101000a81548160ff021916908315150217905550612a6761313b565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612b395750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612b4357600090505b60008115612d8c57601a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612ba657506000601254115b15612c4057612bd36064612bc56012548861322590919063ffffffff16565b6132a090919063ffffffff16565b905060125460105482612be691906140dc565b612bf09190614165565b60136000828254612c019190613c99565b9250508190555060125460115482612c1991906140dc565b612c239190614165565b60146000828254612c349190613c99565b92505081905550612d32565b601a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612c9b57506000600f54115b15612d3157612cc86064612cba600f548861322590919063ffffffff16565b6132a090919063ffffffff16565b9050600f54600d5482612cdb91906140dc565b612ce59190614165565b60136000828254612cf69190613c99565b92505081905550600f54600e5482612d0e91906140dc565b612d189190614165565b60146000828254612d299190613c99565b925050819055505b5b6000811115612d7d57612d46873083612ea6565b60006013541115612d7c57612d5d306013546132ea565b612d65610e6d565b600981905550612d736120c2565b60006013819055505b5b8085612d89919061456e565b94505b612d97878787612ea6565b505050505b505050565b6000838311158290612de9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612de091906138d4565b60405180910390fd5b5060008385612df8919061456e565b9050809150509392505050565b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612f16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f0d90614208565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f7d9061429a565b60405180910390fd5b612f91838383613498565b612ffc81604051806060016040528060268152602001614922602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612da19092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061308f816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e9190919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161312e9190613820565b60405180910390a3505050565b600061314630611354565b9050600080821415613159575050613223565b601460075461316891906140dc565b82111561318157601460075461317e91906140dc565b91505b61318a8261349d565b6000601481905550600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516131d8906145d3565b60006040518083038185875af1925050503d8060008114613215576040519150601f19603f3d011682016040523d82523d6000602084013e61321a565b606091505b50508091505050505b565b600080831415613238576000905061329a565b6000828461324691906140dc565b90508284826132559190614165565b14613295576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161328c9061465a565b60405180910390fd5b809150505b92915050565b60006132e283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506136e9565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561335a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613351906146ec565b60405180910390fd5b61336682600083613498565b6133d181604051806060016040528060228152602001614900602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612da19092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506134288160025461374c90919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161348c9190613820565b60405180910390a35050565b505050565b6000600267ffffffffffffffff8111156134ba576134b961470c565b5b6040519080825280602002602001820160405280156134e85781602001602082028036833780820191505090505b5090503081600081518110613500576134ff61473b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156135a057600080fd5b505afa1580156135b4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135d8919061477f565b816001815181106135ec576135eb61473b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613651307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611ef7565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016136b39594939291906148a5565b600060405180830381600087803b1580156136cd57600080fd5b505af11580156136e1573d6000803e3d6000fd5b505050505050565b60008083118290613730576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161372791906138d4565b60405180910390fd5b506000838561373f9190614165565b9050809150509392505050565b600061378e83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612da1565b905092915050565b600080fd5b6000819050919050565b6137ae8161379b565b81146137b957600080fd5b50565b6000813590506137cb816137a5565b92915050565b600080604083850312156137e8576137e7613796565b5b60006137f6858286016137bc565b9250506020613807858286016137bc565b9150509250929050565b61381a8161379b565b82525050565b60006020820190506138356000830184613811565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561387557808201518184015260208101905061385a565b83811115613884576000848401525b50505050565b6000601f19601f8301169050919050565b60006138a68261383b565b6138b08185613846565b93506138c0818560208601613857565b6138c98161388a565b840191505092915050565b600060208201905081810360008301526138ee818461389b565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613921826138f6565b9050919050565b61393181613916565b811461393c57600080fd5b50565b60008135905061394e81613928565b92915050565b6000806040838503121561396b5761396a613796565b5b60006139798582860161393f565b925050602061398a858286016137bc565b9150509250929050565b60008115159050919050565b6139a981613994565b82525050565b60006020820190506139c460008301846139a0565b92915050565b6000602082840312156139e0576139df613796565b5b60006139ee8482850161393f565b91505092915050565b600060208284031215613a0d57613a0c613796565b5b6000613a1b848285016137bc565b91505092915050565b6000819050919050565b6000613a49613a44613a3f846138f6565b613a24565b6138f6565b9050919050565b6000613a5b82613a2e565b9050919050565b6000613a6d82613a50565b9050919050565b613a7d81613a62565b82525050565b6000602082019050613a986000830184613a74565b92915050565b600080600060608486031215613ab757613ab6613796565b5b6000613ac58682870161393f565b9350506020613ad68682870161393f565b9250506040613ae7868287016137bc565b9150509250925092565b613afa81613916565b82525050565b6000602082019050613b156000830184613af1565b92915050565b600060ff82169050919050565b613b3181613b1b565b82525050565b6000602082019050613b4c6000830184613b28565b92915050565b613b5b81613994565b8114613b6657600080fd5b50565b600081359050613b7881613b52565b92915050565b60008060408385031215613b9557613b94613796565b5b6000613ba38582860161393f565b9250506020613bb485828601613b69565b9150509250929050565b60008060408385031215613bd557613bd4613796565b5b6000613be38582860161393f565b9250506020613bf48582860161393f565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613c34602083613846565b9150613c3f82613bfe565b602082019050919050565b60006020820190508181036000830152613c6381613c27565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613ca48261379b565b9150613caf8361379b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ce457613ce3613c6a565b5b828201905092915050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b6000613d25601d83613846565b9150613d3082613cef565b602082019050919050565b60006020820190508181036000830152613d5481613d18565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613da257607f821691505b60208210811415613db657613db5613d5b565b5b50919050565b7f4d757374206b656570206665657320617420323025206f72206c657373000000600082015250565b6000613df2601d83613846565b9150613dfd82613dbc565b602082019050919050565b60006020820190508181036000830152613e2181613de5565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000613e84603983613846565b9150613e8f82613e28565b604082019050919050565b60006020820190508181036000830152613eb381613e77565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613f16602683613846565b9150613f2182613eba565b604082019050919050565b60006020820190508181036000830152613f4581613f09565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000613f82601b83613846565b9150613f8d82613f4c565b602082019050919050565b60006020820190508181036000830152613fb181613f75565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614014602483613846565b915061401f82613fb8565b604082019050919050565b6000602082019050818103600083015261404381614007565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006140a6602283613846565b91506140b18261404a565b604082019050919050565b600060208201905081810360008301526140d581614099565b9050919050565b60006140e78261379b565b91506140f28361379b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561412b5761412a613c6a565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006141708261379b565b915061417b8361379b565b92508261418b5761418a614136565b5b828204905092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006141f2602583613846565b91506141fd82614196565b604082019050919050565b60006020820190508181036000830152614221816141e5565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614284602383613846565b915061428f82614228565b604082019050919050565b600060208201905081810360008301526142b381614277565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006142f0601683613846565b91506142fb826142ba565b602082019050919050565b6000602082019050818103600083015261431f816142e3565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006143a8604983613846565b91506143b382614326565b606082019050919050565b600060208201905081810360008301526143d78161439b565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b600061443a603583613846565b9150614445826143de565b604082019050919050565b600060208201905081810360008301526144698161442d565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006144a6601383613846565b91506144b182614470565b602082019050919050565b600060208201905081810360008301526144d581614499565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614538603683613846565b9150614543826144dc565b604082019050919050565b600060208201905081810360008301526145678161452b565b9050919050565b60006145798261379b565b91506145848361379b565b92508282101561459757614596613c6a565b5b828203905092915050565b600081905092915050565b50565b60006145bd6000836145a2565b91506145c8826145ad565b600082019050919050565b60006145de826145b0565b9150819050919050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b6000614644602183613846565b915061464f826145e8565b604082019050919050565b6000602082019050818103600083015261467381614637565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006146d6602183613846565b91506146e18261467a565b604082019050919050565b60006020820190508181036000830152614705816146c9565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061477981613928565b92915050565b60006020828403121561479557614794613796565b5b60006147a38482850161476a565b91505092915050565b6000819050919050565b60006147d16147cc6147c7846147ac565b613a24565b61379b565b9050919050565b6147e1816147b6565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61481c81613916565b82525050565b600061482e8383614813565b60208301905092915050565b6000602082019050919050565b6000614852826147e7565b61485c81856147f2565b935061486783614803565b8060005b8381101561489857815161487f8882614822565b975061488a8361483a565b92505060018101905061486b565b5085935050505092915050565b600060a0820190506148ba6000830188613811565b6148c760208301876147d8565b81810360408301526148d98186614847565b90506148e86060830185613af1565b6148f56080830184613811565b969550505050505056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122063188d34810b6ae07f1ee64b95a889e6e368f1567f9c3bbd2d8e40ce2b58250864736f6c63430008090033

Deployed Bytecode Sourcemap

29627:11336:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34437:273;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30032:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7758:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9924:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30861:64;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33728:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29710:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8877:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34718:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30546:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33565:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10575:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29813:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8720:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11339:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29768:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30099:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35695:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34159:266;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30502:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30178:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9048:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22222:148;;;;;;;;;;;;;:::i;:::-;;34003:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30617:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33273:280;;;;;;;;;;;;;:::i;:::-;;21580:79;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30062:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7977:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30650:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35247:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30370:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30581:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33893:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30470:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12060:269;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9388:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30437:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31083:58;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30139:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34829:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30290:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29913:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30401:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9626:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29955:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30338:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30682;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22525:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29995:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34437:273;21802:12;:10;:12::i;:::-;21792:22;;:6;;;;;;;;;;;:22;;;21784:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34540:8:::1;34526:11;:22;;;;34572:7;34559:10;:20;;;;34620:10;;34606:11;;:24;;;;:::i;:::-;34590:13;:40;;;;34666:2;34649:13;;:19;;34641:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;34437:273:::0;;:::o;30032:21::-;;;;:::o;7758:100::-;7812:13;7845:5;7838:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7758:100;:::o;9924:169::-;10007:4;10024:39;10033:12;:10;:12::i;:::-;10047:7;10056:6;10024:8;:39::i;:::-;10081:4;10074:11;;9924:169;;;;:::o;30861:64::-;;;;;;;;;;;;;;;;;;;;;;:::o;33728:157::-;21802:12;:10;:12::i;:::-;21792:22;;:6;;;;;;;;;;;:22;;;21784:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;33819:1:::1;33809:6;:11;;33801:20;;;::::0;::::1;;33846:6;33832:11;:20;;;;33863:14;:12;:14::i;:::-;33728:157:::0;:::o;29710:51::-;;;:::o;8877:108::-;8938:7;8965:12;;8958:19;;8877:108;:::o;34718:103::-;21802:12;:10;:12::i;:::-;21792:22;;:6;;;;;;;;;;;:22;;;21784:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34804:9:::1;34792;;:21;;;;;;;;;;;;;;;;;;34718:103:::0;:::o;30546:28::-;;;;:::o;33565:155::-;21802:12;:10;:12::i;:::-;21792:22;;:6;;;;;;;;;;;:22;;;21784:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;33655:1:::1;33645:6;:11;;33637:20;;;::::0;::::1;;33681:6;33668:10;:19;;;;33698:14;:12;:14::i;:::-;33565:155:::0;:::o;10575:355::-;10715:4;10732:36;10742:6;10750:9;10761:6;10732:9;:36::i;:::-;10779:121;10788:6;10796:12;:10;:12::i;:::-;10810:89;10848:6;10810:89;;;;;;;;;;;;;;;;;:11;:19;10822:6;10810:19;;;;;;;;;;;;;;;:33;10830:12;:10;:12::i;:::-;10810:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;10779:8;:121::i;:::-;10918:4;10911:11;;10575:355;;;;;:::o;29813:53::-;29859:6;29813:53;:::o;8720:92::-;8778:5;8803:1;8796:8;;8720:92;:::o;11339:218::-;11427:4;11444:83;11453:12;:10;:12::i;:::-;11467:7;11476:50;11515:10;11476:11;:25;11488:12;:10;:12::i;:::-;11476:25;;;;;;;;;;;;;;;:34;11502:7;11476:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;11444:8;:83::i;:::-;11545:4;11538:11;;11339:218;;;;:::o;29768:38::-;;;:::o;30099:33::-;;;;;;;;;;;;;:::o;35695:125::-;35760:4;35784:19;:28;35804:7;35784:28;;;;;;;;;;;;;;;;;;;;;;;;;35777:35;;35695:125;;;:::o;34159:266::-;21802:12;:10;:12::i;:::-;21792:22;;:6;;;;;;;;;;;:22;;;21784:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34260:8:::1;34247:10;:21;;;;34291:7;34279:9;:19;;;;34337:9;;34324:10;;:22;;;;:::i;:::-;34309:12;:37;;;;34381:2;34365:12:::0;::::1;:18;;34357:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;34159:266:::0;;:::o;30502:28::-;;;;:::o;30178:30::-;;;;;;;;;;;;;:::o;9048:127::-;9122:7;9149:9;:18;9159:7;9149:18;;;;;;;;;;;;;;;;9142:25;;9048:127;;;:::o;22222:148::-;21802:12;:10;:12::i;:::-;21792:22;;:6;;;;;;;;;;;:22;;;21784:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;22329:1:::1;22292:40;;22313:6;;;;;;;;;;;22292:40;;;;;;;;;;;;22360:1;22343:6;;:19;;;;;;;;;;;;;;;;;;22222:148::o:0;34003:144::-;21802:12;:10;:12::i;:::-;21792:22;;:6;;;;;;;;;;;:22;;;21784:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34135:4:::1;34093:31;:39;34125:6;34093:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;34003:144:::0;;:::o;30617:26::-;;;;:::o;33273:280::-;21802:12;:10;:12::i;:::-;21792:22;;:6;;;;;;;;;;;:22;;;21784:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;33341:1:::1;33328:10;:14;;;;33365:1;33353:9;:13;;;;33405:9;;33392:10;;:22;;;;:::i;:::-;33377:12;:37;;;;33441:1;33427:11;:15;;;;33466:1;33453:10;:14;;;;33508:10;;33494:11;;:24;;;;:::i;:::-;33478:13;:40;;;;33544:1;33531:10;:14;;;;33273:280::o:0;21580:79::-;21618:7;21645:6;;;;;;;;;;;21638:13;;21580:79;:::o;30062:24::-;;;;;;;;;;;;;:::o;7977:104::-;8033:13;8066:7;8059:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7977:104;:::o;30650:25::-;;;;:::o;35247:244::-;21802:12;:10;:12::i;:::-;21792:22;;:6;;;;;;;;;;;:22;;;21784:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35354:13:::1;35346:21;;:4;:21;;;;35338:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;35442:41;35471:4;35477:5;35442:28;:41::i;:::-;35247:244:::0;;:::o;30370:24::-;;;;:::o;30581:27::-;;;;:::o;33893:98::-;21802:12;:10;:12::i;:::-;21792:22;;:6;;;;;;;;;;;:22;;;21784:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;33977:6:::1;33964:10;:19;;;;33893:98:::0;:::o;30470:25::-;;;;:::o;12060:269::-;12153:4;12170:129;12179:12;:10;:12::i;:::-;12193:7;12202:96;12241:15;12202:96;;;;;;;;;;;;;;;;;:11;:25;12214:12;:10;:12::i;:::-;12202:25;;;;;;;;;;;;;;;:34;12228:7;12202:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;12170:8;:129::i;:::-;12317:4;12310:11;;12060:269;;;;:::o;9388:175::-;9474:4;9491:42;9501:12;:10;:12::i;:::-;9515:9;9526:6;9491:9;:42::i;:::-;9551:4;9544:11;;9388:175;;;;:::o;30437:26::-;;;;:::o;31083:58::-;;;;;;;;;;;;;;;;;;;;;;:::o;30139:32::-;;;;;;;;;;;;;:::o;34829:182::-;21802:12;:10;:12::i;:::-;21792:22;;:6;;;;;;;;;;;:22;;;21784:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34945:8:::1;34914:19;:28;34934:7;34914:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;34985:7;34969:34;;;34994:8;34969:34;;;;;;:::i;:::-;;;;;;;;34829:182:::0;;:::o;30290:39::-;;;;;;;;;;;;;:::o;29913:35::-;;;;:::o;30401:27::-;;;;:::o;9626:151::-;9715:7;9742:11;:18;9754:5;9742:18;;;;;;;;;;;;;;;:27;9761:7;9742:27;;;;;;;;;;;;;;;;9735:34;;9626:151;;;;:::o;29955:33::-;;;;:::o;30338:25::-;;;;:::o;30682:::-;;;;:::o;22525:244::-;21802:12;:10;:12::i;:::-;21792:22;;:6;;;;;;;;;;;:22;;;21784:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;22634:1:::1;22614:22;;:8;:22;;;;22606:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;22724:8;22695:38;;22716:6;;;;;;;;;;;22695:38;;;;;;;;;;;;22753:8;22744:6;;:17;;;;;;;;;;;;;;;;;;22525:244:::0;:::o;29995:24::-;;;;:::o;16624:181::-;16682:7;16702:9;16718:1;16714;:5;;;;:::i;:::-;16702:17;;16743:1;16738;:6;;16730:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;16796:1;16789:8;;;16624:181;;;;:::o;394:98::-;447:7;474:10;467:17;;394:98;:::o;15246:380::-;15399:1;15382:19;;:5;:19;;;;15374:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15480:1;15461:21;;:7;:21;;;;15453:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15564:6;15534:11;:18;15546:5;15534:18;;;;;;;;;;;;;;;:27;15553:7;15534:27;;;;;;;;;;;;;;;:36;;;;15602:7;15586:32;;15595:5;15586:32;;;15611:6;15586:32;;;;;;:::i;:::-;;;;;;;;15246:380;;;:::o;35019:220::-;35107:3;35094:10;;35085:6;;:19;;;;:::i;:::-;:25;;;;:::i;:::-;35062:20;:48;;;;35155:5;35151:1;35142:6;;:10;;;;:::i;:::-;:18;;;;:::i;:::-;35121;:39;;;;35228:3;35214:11;;35205:6;;:20;;;;:::i;:::-;:26;;;;:::i;:::-;35193:9;:38;;;;35019:220::o;35832:4041::-;35980:1;35964:18;;:4;:18;;;;35956:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36057:1;36043:16;;:2;:16;;;;36035:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;36134:1;36124:6;:11;36121:92;;;36152:28;36168:4;36174:2;36178:1;36152:15;:28::i;:::-;36195:7;;36121:92;36236:14;;;;;;;;;;;36233:1854;;;36296:7;:5;:7::i;:::-;36288:15;;:4;:15;;;;:49;;;;;36330:7;:5;:7::i;:::-;36324:13;;:2;:13;;;;36288:49;:86;;;;;36372:1;36358:16;;:2;:16;;;;36288:86;:128;;;;;36409:6;36395:21;;:2;:21;;;;36288:128;:158;;;;;36438:8;;;;;;;;;;;36437:9;36288:158;36266:1810;;;36484:13;;;;;;;;;;;36480:148;;36529:19;:25;36549:4;36529:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;36558:19;:23;36578:2;36558:23;;;;;;;;;;;;;;;;;;;;;;;;;36529:52;36521:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;36480:148;36786:20;;;;;;;;;;;36782:436;;;36840:7;:5;:7::i;:::-;36834:13;;:2;:13;;;;:47;;;;;36865:15;36851:30;;:2;:30;;;;36834:47;:79;;;;;36899:13;36885:28;;:2;:28;;;;36834:79;36830:369;;;36991:12;36949:28;:39;36978:9;36949:39;;;;;;;;;;;;;;;;:54;36941:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;37165:10;;37150:12;:25;;;;:::i;:::-;37108:28;:39;37137:9;37108:39;;;;;;;;;;;;;;;:67;;;;36830:369;36782:436;37287:25;:31;37313:4;37287:31;;;;;;;;;;;;;;;;;;;;;;;;;:71;;;;;37323:31;:35;37355:2;37323:35;;;;;;;;;;;;;;;;;;;;;;;;;37322:36;37287:71;37283:778;;;37405:20;;37395:6;:30;;37387:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;37544:9;;37527:13;37537:2;37527:9;:13::i;:::-;37518:6;:22;;;;:::i;:::-;:35;;37510:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;37283:778;;;37671:25;:29;37697:2;37671:29;;;;;;;;;;;;;;;;;;;;;;;;;:71;;;;;37705:31;:37;37737:4;37705:37;;;;;;;;;;;;;;;;;;;;;;;;;37704:38;37671:71;37667:394;;;37789:20;;37779:6;:30;;37771:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;37667:394;;;37915:31;:35;37947:2;37915:35;;;;;;;;;;;;;;;;;;;;;;;;;37911:150;;38008:9;;37991:13;38001:2;37991:9;:13::i;:::-;37982:6;:22;;;;:::i;:::-;:35;;37974:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;37911:150;37667:394;37283:778;36266:1810;36233:1854;38097:28;38128:24;38146:4;38128:9;:24::i;:::-;38097:55;;38173:12;38212:18;;38188:20;:42;;38173:57;;38261:7;:33;;;;;38286:8;;;;;;;;;;;38285:9;38261:33;:61;;;;;38311:11;;;;;;;;;;;38261:61;:110;;;;;38340:25;:31;38366:4;38340:31;;;;;;;;;;;;;;;;;;;;;;;;;38339:32;38261:110;:153;;;;;38389:19;:25;38409:4;38389:25;;;;;;;;;;;;;;;;;;;;;;;;;38388:26;38261:153;:194;;;;;38432:19;:23;38452:2;38432:23;;;;;;;;;;;;;;;;;;;;;;;;;38431:24;38261:194;38243:338;;;38493:4;38482:8;;:15;;;;;;;;;;;;;;;;;;38526:10;:8;:10::i;:::-;38564:5;38553:8;;:16;;;;;;;;;;;;;;;;;;38243:338;38601:12;38617:8;;;;;;;;;;;38616:9;38601:24;;38641:19;:25;38661:4;38641:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;38670:19;:23;38690:2;38670:23;;;;;;;;;;;;;;;;;;;;;;;;;38641:52;38638:99;;;38720:5;38710:15;;38638:99;38757:12;38789:7;38786:1034;;;38840:25;:29;38866:2;38840:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;38889:1;38873:13;;:17;38840:50;38836:574;;;38917:34;38947:3;38917:25;38928:13;;38917:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;38910:41;;39008:13;;38994:11;;38987:4;:18;;;;:::i;:::-;:34;;;;:::i;:::-;38970:13;;:51;;;;;;;:::i;:::-;;;;;;;;39076:13;;39063:10;;39056:4;:17;;;;:::i;:::-;:33;;;;:::i;:::-;39040:12;;:49;;;;;;;:::i;:::-;;;;;;;;38836:574;;;39152:25;:31;39178:4;39152:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;39202:1;39187:12;;:16;39152:51;39149:261;;;39230:33;39259:3;39230:24;39241:12;;39230:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;39223:40;;39316:12;;39303:10;;39296:4;:17;;;;:::i;:::-;:32;;;;:::i;:::-;39279:13;;:49;;;;;;;:::i;:::-;;;;;;;;39382:12;;39370:9;;39363:4;:16;;;;:::i;:::-;:31;;;;:::i;:::-;39347:12;;:47;;;;;;;:::i;:::-;;;;;;;;39149:261;38836:574;39448:1;39441:4;:8;39438:334;;;39473:42;39489:4;39503;39510;39473:15;:42::i;:::-;39554:1;39538:13;;:17;39534:223;;;39580:35;39594:4;39601:13;;39580:5;:35::i;:::-;39647:13;:11;:13::i;:::-;39638:6;:22;;;;39683:14;:12;:14::i;:::-;39736:1;39720:13;:17;;;;39534:223;39438:334;39804:4;39794:14;;;;;:::i;:::-;;;38786:1034;39832:33;39848:4;39854:2;39858:6;39832:15;:33::i;:::-;35945:3928;;;;35832:4041;;;;:::o;17527:192::-;17613:7;17646:1;17641;:6;;17649:12;17633:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;17673:9;17689:1;17685;:5;;;;:::i;:::-;17673:17;;17710:1;17703:8;;;17527:192;;;;;:::o;35499:188::-;35616:5;35582:25;:31;35608:4;35582:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;35673:5;35639:40;;35667:4;35639:40;;;;;;;;;;;;35499:188;;:::o;12819:573::-;12977:1;12959:20;;:6;:20;;;;12951:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;13061:1;13040:23;;:9;:23;;;;13032:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;13116:47;13137:6;13145:9;13156:6;13116:20;:47::i;:::-;13196:71;13218:6;13196:71;;;;;;;;;;;;;;;;;:9;:17;13206:6;13196:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;13176:9;:17;13186:6;13176:17;;;;;;;;;;;;;;;:91;;;;13301:32;13326:6;13301:9;:20;13311:9;13301:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;13278:9;:20;13288:9;13278:20;;;;;;;;;;;;;;;:55;;;;13366:9;13349:35;;13358:6;13349:35;;;13377:6;13349:35;;;;;;:::i;:::-;;;;;;;;12819:573;;;:::o;40494:464::-;40533:23;40559:24;40577:4;40559:9;:24::i;:::-;40533:50;;40594:12;40649:1;40630:15;:20;40627:34;;;40653:7;;;;40627:34;40715:2;40694:18;;:23;;;;:::i;:::-;40676:15;:41;40673:111;;;40770:2;40749:18;;:23;;;;:::i;:::-;40731:41;;40673:111;40796:33;40813:15;40796:16;:33::i;:::-;40866:1;40851:12;:16;;;;40901:9;;;;;;;;;;;40893:23;;40924:21;40893:57;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40880:70;;;;;40522:436;;40494:464;:::o;17978:471::-;18036:7;18286:1;18281;:6;18277:47;;;18311:1;18304:8;;;;18277:47;18336:9;18352:1;18348;:5;;;;:::i;:::-;18336:17;;18381:1;18376;18372;:5;;;;:::i;:::-;:10;18364:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;18440:1;18433:8;;;17978:471;;;;;:::o;18925:132::-;18983:7;19010:39;19014:1;19017;19010:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;19003:46;;18925:132;;;;:::o;14390:418::-;14493:1;14474:21;;:7;:21;;;;14466:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;14546:49;14567:7;14584:1;14588:6;14546:20;:49::i;:::-;14629:68;14652:6;14629:68;;;;;;;;;;;;;;;;;:9;:18;14639:7;14629:18;;;;;;;;;;;;;;;;:22;;:68;;;;;:::i;:::-;14608:9;:18;14618:7;14608:18;;;;;;;;;;;;;;;:89;;;;14723:24;14740:6;14723:12;;:16;;:24;;;;:::i;:::-;14708:12;:39;;;;14789:1;14763:37;;14772:7;14763:37;;;14793:6;14763:37;;;;;;:::i;:::-;;;;;;;;14390:418;;:::o;16229:125::-;;;;:::o;39881:601::-;40009:21;40047:1;40033:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40009:40;;40078:4;40060;40065:1;40060:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;40104:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;40094:4;40099:1;40094:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;40139:62;40156:4;40171:15;40189:11;40139:8;:62::i;:::-;40240:15;:66;;;40321:11;40347:1;40391:4;40418;40438:15;40240:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39936:546;39881:601;:::o;19553:278::-;19639:7;19671:1;19667;:5;19674:12;19659:28;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;19698:9;19714:1;19710;:5;;;;:::i;:::-;19698:17;;19822:1;19815:8;;;19553:278;;;;;:::o;17088:136::-;17146:7;17173:43;17177:1;17180;17173:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;17166:50;;17088:136;;;;:::o;88:117:1:-;197:1;194;187:12;334:77;371:7;400:5;389:16;;334:77;;;:::o;417:122::-;490:24;508:5;490:24;:::i;:::-;483:5;480:35;470:63;;529:1;526;519:12;470:63;417:122;:::o;545:139::-;591:5;629:6;616:20;607:29;;645:33;672:5;645:33;:::i;:::-;545:139;;;;:::o;690:474::-;758:6;766;815:2;803:9;794:7;790:23;786:32;783:119;;;821:79;;:::i;:::-;783:119;941:1;966:53;1011:7;1002:6;991:9;987:22;966:53;:::i;:::-;956:63;;912:117;1068:2;1094:53;1139:7;1130:6;1119:9;1115:22;1094:53;:::i;:::-;1084:63;;1039:118;690:474;;;;;:::o;1170:118::-;1257:24;1275:5;1257:24;:::i;:::-;1252:3;1245:37;1170:118;;:::o;1294:222::-;1387:4;1425:2;1414:9;1410:18;1402:26;;1438:71;1506:1;1495:9;1491:17;1482:6;1438:71;:::i;:::-;1294:222;;;;:::o;1522:99::-;1574:6;1608:5;1602:12;1592:22;;1522:99;;;:::o;1627:169::-;1711:11;1745:6;1740:3;1733:19;1785:4;1780:3;1776:14;1761:29;;1627:169;;;;:::o;1802:307::-;1870:1;1880:113;1894:6;1891:1;1888:13;1880:113;;;1979:1;1974:3;1970:11;1964:18;1960:1;1955:3;1951:11;1944:39;1916:2;1913:1;1909:10;1904:15;;1880:113;;;2011:6;2008:1;2005:13;2002:101;;;2091:1;2082:6;2077:3;2073:16;2066:27;2002:101;1851:258;1802:307;;;:::o;2115:102::-;2156:6;2207:2;2203:7;2198:2;2191:5;2187:14;2183:28;2173:38;;2115:102;;;:::o;2223:364::-;2311:3;2339:39;2372:5;2339:39;:::i;:::-;2394:71;2458:6;2453:3;2394:71;:::i;:::-;2387:78;;2474:52;2519:6;2514:3;2507:4;2500:5;2496:16;2474:52;:::i;:::-;2551:29;2573:6;2551:29;:::i;:::-;2546:3;2542:39;2535:46;;2315:272;2223:364;;;;:::o;2593:313::-;2706:4;2744:2;2733:9;2729:18;2721:26;;2793:9;2787:4;2783:20;2779:1;2768:9;2764:17;2757:47;2821:78;2894:4;2885:6;2821:78;:::i;:::-;2813:86;;2593:313;;;;:::o;2912:126::-;2949:7;2989:42;2982:5;2978:54;2967:65;;2912:126;;;:::o;3044:96::-;3081:7;3110:24;3128:5;3110:24;:::i;:::-;3099:35;;3044:96;;;:::o;3146:122::-;3219:24;3237:5;3219:24;:::i;:::-;3212:5;3209:35;3199:63;;3258:1;3255;3248:12;3199:63;3146:122;:::o;3274:139::-;3320:5;3358:6;3345:20;3336:29;;3374:33;3401:5;3374:33;:::i;:::-;3274:139;;;;:::o;3419:474::-;3487:6;3495;3544:2;3532:9;3523:7;3519:23;3515:32;3512:119;;;3550:79;;:::i;:::-;3512:119;3670:1;3695:53;3740:7;3731:6;3720:9;3716:22;3695:53;:::i;:::-;3685:63;;3641:117;3797:2;3823:53;3868:7;3859:6;3848:9;3844:22;3823:53;:::i;:::-;3813:63;;3768:118;3419:474;;;;;:::o;3899:90::-;3933:7;3976:5;3969:13;3962:21;3951:32;;3899:90;;;:::o;3995:109::-;4076:21;4091:5;4076:21;:::i;:::-;4071:3;4064:34;3995:109;;:::o;4110:210::-;4197:4;4235:2;4224:9;4220:18;4212:26;;4248:65;4310:1;4299:9;4295:17;4286:6;4248:65;:::i;:::-;4110:210;;;;:::o;4326:329::-;4385:6;4434:2;4422:9;4413:7;4409:23;4405:32;4402:119;;;4440:79;;:::i;:::-;4402:119;4560:1;4585:53;4630:7;4621:6;4610:9;4606:22;4585:53;:::i;:::-;4575:63;;4531:117;4326:329;;;;:::o;4661:::-;4720:6;4769:2;4757:9;4748:7;4744:23;4740:32;4737:119;;;4775:79;;:::i;:::-;4737:119;4895:1;4920:53;4965:7;4956:6;4945:9;4941:22;4920:53;:::i;:::-;4910:63;;4866:117;4661:329;;;;:::o;4996:60::-;5024:3;5045:5;5038:12;;4996:60;;;:::o;5062:142::-;5112:9;5145:53;5163:34;5172:24;5190:5;5172:24;:::i;:::-;5163:34;:::i;:::-;5145:53;:::i;:::-;5132:66;;5062:142;;;:::o;5210:126::-;5260:9;5293:37;5324:5;5293:37;:::i;:::-;5280:50;;5210:126;;;:::o;5342:153::-;5419:9;5452:37;5483:5;5452:37;:::i;:::-;5439:50;;5342:153;;;:::o;5501:185::-;5615:64;5673:5;5615:64;:::i;:::-;5610:3;5603:77;5501:185;;:::o;5692:276::-;5812:4;5850:2;5839:9;5835:18;5827:26;;5863:98;5958:1;5947:9;5943:17;5934:6;5863:98;:::i;:::-;5692:276;;;;:::o;5974:619::-;6051:6;6059;6067;6116:2;6104:9;6095:7;6091:23;6087:32;6084:119;;;6122:79;;:::i;:::-;6084:119;6242:1;6267:53;6312:7;6303:6;6292:9;6288:22;6267:53;:::i;:::-;6257:63;;6213:117;6369:2;6395:53;6440:7;6431:6;6420:9;6416:22;6395:53;:::i;:::-;6385:63;;6340:118;6497:2;6523:53;6568:7;6559:6;6548:9;6544:22;6523:53;:::i;:::-;6513:63;;6468:118;5974:619;;;;;:::o;6599:118::-;6686:24;6704:5;6686:24;:::i;:::-;6681:3;6674:37;6599:118;;:::o;6723:222::-;6816:4;6854:2;6843:9;6839:18;6831:26;;6867:71;6935:1;6924:9;6920:17;6911:6;6867:71;:::i;:::-;6723:222;;;;:::o;6951:86::-;6986:7;7026:4;7019:5;7015:16;7004:27;;6951:86;;;:::o;7043:112::-;7126:22;7142:5;7126:22;:::i;:::-;7121:3;7114:35;7043:112;;:::o;7161:214::-;7250:4;7288:2;7277:9;7273:18;7265:26;;7301:67;7365:1;7354:9;7350:17;7341:6;7301:67;:::i;:::-;7161:214;;;;:::o;7381:116::-;7451:21;7466:5;7451:21;:::i;:::-;7444:5;7441:32;7431:60;;7487:1;7484;7477:12;7431:60;7381:116;:::o;7503:133::-;7546:5;7584:6;7571:20;7562:29;;7600:30;7624:5;7600:30;:::i;:::-;7503:133;;;;:::o;7642:468::-;7707:6;7715;7764:2;7752:9;7743:7;7739:23;7735:32;7732:119;;;7770:79;;:::i;:::-;7732:119;7890:1;7915:53;7960:7;7951:6;7940:9;7936:22;7915:53;:::i;:::-;7905:63;;7861:117;8017:2;8043:50;8085:7;8076:6;8065:9;8061:22;8043:50;:::i;:::-;8033:60;;7988:115;7642:468;;;;;:::o;8116:474::-;8184:6;8192;8241:2;8229:9;8220:7;8216:23;8212:32;8209:119;;;8247:79;;:::i;:::-;8209:119;8367:1;8392:53;8437:7;8428:6;8417:9;8413:22;8392:53;:::i;:::-;8382:63;;8338:117;8494:2;8520:53;8565:7;8556:6;8545:9;8541:22;8520:53;:::i;:::-;8510:63;;8465:118;8116:474;;;;;:::o;8596:182::-;8736:34;8732:1;8724:6;8720:14;8713:58;8596:182;:::o;8784:366::-;8926:3;8947:67;9011:2;9006:3;8947:67;:::i;:::-;8940:74;;9023:93;9112:3;9023:93;:::i;:::-;9141:2;9136:3;9132:12;9125:19;;8784:366;;;:::o;9156:419::-;9322:4;9360:2;9349:9;9345:18;9337:26;;9409:9;9403:4;9399:20;9395:1;9384:9;9380:17;9373:47;9437:131;9563:4;9437:131;:::i;:::-;9429:139;;9156:419;;;:::o;9581:180::-;9629:77;9626:1;9619:88;9726:4;9723:1;9716:15;9750:4;9747:1;9740:15;9767:305;9807:3;9826:20;9844:1;9826:20;:::i;:::-;9821:25;;9860:20;9878:1;9860:20;:::i;:::-;9855:25;;10014:1;9946:66;9942:74;9939:1;9936:81;9933:107;;;10020:18;;:::i;:::-;9933:107;10064:1;10061;10057:9;10050:16;;9767:305;;;;:::o;10078:179::-;10218:31;10214:1;10206:6;10202:14;10195:55;10078:179;:::o;10263:366::-;10405:3;10426:67;10490:2;10485:3;10426:67;:::i;:::-;10419:74;;10502:93;10591:3;10502:93;:::i;:::-;10620:2;10615:3;10611:12;10604:19;;10263:366;;;:::o;10635:419::-;10801:4;10839:2;10828:9;10824:18;10816:26;;10888:9;10882:4;10878:20;10874:1;10863:9;10859:17;10852:47;10916:131;11042:4;10916:131;:::i;:::-;10908:139;;10635:419;;;:::o;11060:180::-;11108:77;11105:1;11098:88;11205:4;11202:1;11195:15;11229:4;11226:1;11219:15;11246:320;11290:6;11327:1;11321:4;11317:12;11307:22;;11374:1;11368:4;11364:12;11395:18;11385:81;;11451:4;11443:6;11439:17;11429:27;;11385:81;11513:2;11505:6;11502:14;11482:18;11479:38;11476:84;;;11532:18;;:::i;:::-;11476:84;11297:269;11246:320;;;:::o;11572:179::-;11712:31;11708:1;11700:6;11696:14;11689:55;11572:179;:::o;11757:366::-;11899:3;11920:67;11984:2;11979:3;11920:67;:::i;:::-;11913:74;;11996:93;12085:3;11996:93;:::i;:::-;12114:2;12109:3;12105:12;12098:19;;11757:366;;;:::o;12129:419::-;12295:4;12333:2;12322:9;12318:18;12310:26;;12382:9;12376:4;12372:20;12368:1;12357:9;12353:17;12346:47;12410:131;12536:4;12410:131;:::i;:::-;12402:139;;12129:419;;;:::o;12554:244::-;12694:34;12690:1;12682:6;12678:14;12671:58;12763:27;12758:2;12750:6;12746:15;12739:52;12554:244;:::o;12804:366::-;12946:3;12967:67;13031:2;13026:3;12967:67;:::i;:::-;12960:74;;13043:93;13132:3;13043:93;:::i;:::-;13161:2;13156:3;13152:12;13145:19;;12804:366;;;:::o;13176:419::-;13342:4;13380:2;13369:9;13365:18;13357:26;;13429:9;13423:4;13419:20;13415:1;13404:9;13400:17;13393:47;13457:131;13583:4;13457:131;:::i;:::-;13449:139;;13176:419;;;:::o;13601:225::-;13741:34;13737:1;13729:6;13725:14;13718:58;13810:8;13805:2;13797:6;13793:15;13786:33;13601:225;:::o;13832:366::-;13974:3;13995:67;14059:2;14054:3;13995:67;:::i;:::-;13988:74;;14071:93;14160:3;14071:93;:::i;:::-;14189:2;14184:3;14180:12;14173:19;;13832:366;;;:::o;14204:419::-;14370:4;14408:2;14397:9;14393:18;14385:26;;14457:9;14451:4;14447:20;14443:1;14432:9;14428:17;14421:47;14485:131;14611:4;14485:131;:::i;:::-;14477:139;;14204:419;;;:::o;14629:177::-;14769:29;14765:1;14757:6;14753:14;14746:53;14629:177;:::o;14812:366::-;14954:3;14975:67;15039:2;15034:3;14975:67;:::i;:::-;14968:74;;15051:93;15140:3;15051:93;:::i;:::-;15169:2;15164:3;15160:12;15153:19;;14812:366;;;:::o;15184:419::-;15350:4;15388:2;15377:9;15373:18;15365:26;;15437:9;15431:4;15427:20;15423:1;15412:9;15408:17;15401:47;15465:131;15591:4;15465:131;:::i;:::-;15457:139;;15184:419;;;:::o;15609:223::-;15749:34;15745:1;15737:6;15733:14;15726:58;15818:6;15813:2;15805:6;15801:15;15794:31;15609:223;:::o;15838:366::-;15980:3;16001:67;16065:2;16060:3;16001:67;:::i;:::-;15994:74;;16077:93;16166:3;16077:93;:::i;:::-;16195:2;16190:3;16186:12;16179:19;;15838:366;;;:::o;16210:419::-;16376:4;16414:2;16403:9;16399:18;16391:26;;16463:9;16457:4;16453:20;16449:1;16438:9;16434:17;16427:47;16491:131;16617:4;16491:131;:::i;:::-;16483:139;;16210:419;;;:::o;16635:221::-;16775:34;16771:1;16763:6;16759:14;16752:58;16844:4;16839:2;16831:6;16827:15;16820:29;16635:221;:::o;16862:366::-;17004:3;17025:67;17089:2;17084:3;17025:67;:::i;:::-;17018:74;;17101:93;17190:3;17101:93;:::i;:::-;17219:2;17214:3;17210:12;17203:19;;16862:366;;;:::o;17234:419::-;17400:4;17438:2;17427:9;17423:18;17415:26;;17487:9;17481:4;17477:20;17473:1;17462:9;17458:17;17451:47;17515:131;17641:4;17515:131;:::i;:::-;17507:139;;17234:419;;;:::o;17659:348::-;17699:7;17722:20;17740:1;17722:20;:::i;:::-;17717:25;;17756:20;17774:1;17756:20;:::i;:::-;17751:25;;17944:1;17876:66;17872:74;17869:1;17866:81;17861:1;17854:9;17847:17;17843:105;17840:131;;;17951:18;;:::i;:::-;17840:131;17999:1;17996;17992:9;17981:20;;17659:348;;;;:::o;18013:180::-;18061:77;18058:1;18051:88;18158:4;18155:1;18148:15;18182:4;18179:1;18172:15;18199:185;18239:1;18256:20;18274:1;18256:20;:::i;:::-;18251:25;;18290:20;18308:1;18290:20;:::i;:::-;18285:25;;18329:1;18319:35;;18334:18;;:::i;:::-;18319:35;18376:1;18373;18369:9;18364:14;;18199:185;;;;:::o;18390:224::-;18530:34;18526:1;18518:6;18514:14;18507:58;18599:7;18594:2;18586:6;18582:15;18575:32;18390:224;:::o;18620:366::-;18762:3;18783:67;18847:2;18842:3;18783:67;:::i;:::-;18776:74;;18859:93;18948:3;18859:93;:::i;:::-;18977:2;18972:3;18968:12;18961:19;;18620:366;;;:::o;18992:419::-;19158:4;19196:2;19185:9;19181:18;19173:26;;19245:9;19239:4;19235:20;19231:1;19220:9;19216:17;19209:47;19273:131;19399:4;19273:131;:::i;:::-;19265:139;;18992:419;;;:::o;19417:222::-;19557:34;19553:1;19545:6;19541:14;19534:58;19626:5;19621:2;19613:6;19609:15;19602:30;19417:222;:::o;19645:366::-;19787:3;19808:67;19872:2;19867:3;19808:67;:::i;:::-;19801:74;;19884:93;19973:3;19884:93;:::i;:::-;20002:2;19997:3;19993:12;19986:19;;19645:366;;;:::o;20017:419::-;20183:4;20221:2;20210:9;20206:18;20198:26;;20270:9;20264:4;20260:20;20256:1;20245:9;20241:17;20234:47;20298:131;20424:4;20298:131;:::i;:::-;20290:139;;20017:419;;;:::o;20442:172::-;20582:24;20578:1;20570:6;20566:14;20559:48;20442:172;:::o;20620:366::-;20762:3;20783:67;20847:2;20842:3;20783:67;:::i;:::-;20776:74;;20859:93;20948:3;20859:93;:::i;:::-;20977:2;20972:3;20968:12;20961:19;;20620:366;;;:::o;20992:419::-;21158:4;21196:2;21185:9;21181:18;21173:26;;21245:9;21239:4;21235:20;21231:1;21220:9;21216:17;21209:47;21273:131;21399:4;21273:131;:::i;:::-;21265:139;;20992:419;;;:::o;21417:297::-;21557:34;21553:1;21545:6;21541:14;21534:58;21626:34;21621:2;21613:6;21609:15;21602:59;21695:11;21690:2;21682:6;21678:15;21671:36;21417:297;:::o;21720:366::-;21862:3;21883:67;21947:2;21942:3;21883:67;:::i;:::-;21876:74;;21959:93;22048:3;21959:93;:::i;:::-;22077:2;22072:3;22068:12;22061:19;;21720:366;;;:::o;22092:419::-;22258:4;22296:2;22285:9;22281:18;22273:26;;22345:9;22339:4;22335:20;22331:1;22320:9;22316:17;22309:47;22373:131;22499:4;22373:131;:::i;:::-;22365:139;;22092:419;;;:::o;22517:240::-;22657:34;22653:1;22645:6;22641:14;22634:58;22726:23;22721:2;22713:6;22709:15;22702:48;22517:240;:::o;22763:366::-;22905:3;22926:67;22990:2;22985:3;22926:67;:::i;:::-;22919:74;;23002:93;23091:3;23002:93;:::i;:::-;23120:2;23115:3;23111:12;23104:19;;22763:366;;;:::o;23135:419::-;23301:4;23339:2;23328:9;23324:18;23316:26;;23388:9;23382:4;23378:20;23374:1;23363:9;23359:17;23352:47;23416:131;23542:4;23416:131;:::i;:::-;23408:139;;23135:419;;;:::o;23560:169::-;23700:21;23696:1;23688:6;23684:14;23677:45;23560:169;:::o;23735:366::-;23877:3;23898:67;23962:2;23957:3;23898:67;:::i;:::-;23891:74;;23974:93;24063:3;23974:93;:::i;:::-;24092:2;24087:3;24083:12;24076:19;;23735:366;;;:::o;24107:419::-;24273:4;24311:2;24300:9;24296:18;24288:26;;24360:9;24354:4;24350:20;24346:1;24335:9;24331:17;24324:47;24388:131;24514:4;24388:131;:::i;:::-;24380:139;;24107:419;;;:::o;24532:241::-;24672:34;24668:1;24660:6;24656:14;24649:58;24741:24;24736:2;24728:6;24724:15;24717:49;24532:241;:::o;24779:366::-;24921:3;24942:67;25006:2;25001:3;24942:67;:::i;:::-;24935:74;;25018:93;25107:3;25018:93;:::i;:::-;25136:2;25131:3;25127:12;25120:19;;24779:366;;;:::o;25151:419::-;25317:4;25355:2;25344:9;25340:18;25332:26;;25404:9;25398:4;25394:20;25390:1;25379:9;25375:17;25368:47;25432:131;25558:4;25432:131;:::i;:::-;25424:139;;25151:419;;;:::o;25576:191::-;25616:4;25636:20;25654:1;25636:20;:::i;:::-;25631:25;;25670:20;25688:1;25670:20;:::i;:::-;25665:25;;25709:1;25706;25703:8;25700:34;;;25714:18;;:::i;:::-;25700:34;25759:1;25756;25752:9;25744:17;;25576:191;;;;:::o;25773:147::-;25874:11;25911:3;25896:18;;25773:147;;;;:::o;25926:114::-;;:::o;26046:398::-;26205:3;26226:83;26307:1;26302:3;26226:83;:::i;:::-;26219:90;;26318:93;26407:3;26318:93;:::i;:::-;26436:1;26431:3;26427:11;26420:18;;26046:398;;;:::o;26450:379::-;26634:3;26656:147;26799:3;26656:147;:::i;:::-;26649:154;;26820:3;26813:10;;26450:379;;;:::o;26835:220::-;26975:34;26971:1;26963:6;26959:14;26952:58;27044:3;27039:2;27031:6;27027:15;27020:28;26835:220;:::o;27061:366::-;27203:3;27224:67;27288:2;27283:3;27224:67;:::i;:::-;27217:74;;27300:93;27389:3;27300:93;:::i;:::-;27418:2;27413:3;27409:12;27402:19;;27061:366;;;:::o;27433:419::-;27599:4;27637:2;27626:9;27622:18;27614:26;;27686:9;27680:4;27676:20;27672:1;27661:9;27657:17;27650:47;27714:131;27840:4;27714:131;:::i;:::-;27706:139;;27433:419;;;:::o;27858:220::-;27998:34;27994:1;27986:6;27982:14;27975:58;28067:3;28062:2;28054:6;28050:15;28043:28;27858:220;:::o;28084:366::-;28226:3;28247:67;28311:2;28306:3;28247:67;:::i;:::-;28240:74;;28323:93;28412:3;28323:93;:::i;:::-;28441:2;28436:3;28432:12;28425:19;;28084:366;;;:::o;28456:419::-;28622:4;28660:2;28649:9;28645:18;28637:26;;28709:9;28703:4;28699:20;28695:1;28684:9;28680:17;28673:47;28737:131;28863:4;28737:131;:::i;:::-;28729:139;;28456:419;;;:::o;28881:180::-;28929:77;28926:1;28919:88;29026:4;29023:1;29016:15;29050:4;29047:1;29040:15;29067:180;29115:77;29112:1;29105:88;29212:4;29209:1;29202:15;29236:4;29233:1;29226:15;29253:143;29310:5;29341:6;29335:13;29326:22;;29357:33;29384:5;29357:33;:::i;:::-;29253:143;;;;:::o;29402:351::-;29472:6;29521:2;29509:9;29500:7;29496:23;29492:32;29489:119;;;29527:79;;:::i;:::-;29489:119;29647:1;29672:64;29728:7;29719:6;29708:9;29704:22;29672:64;:::i;:::-;29662:74;;29618:128;29402:351;;;;:::o;29759:85::-;29804:7;29833:5;29822:16;;29759:85;;;:::o;29850:158::-;29908:9;29941:61;29959:42;29968:32;29994:5;29968:32;:::i;:::-;29959:42;:::i;:::-;29941:61;:::i;:::-;29928:74;;29850:158;;;:::o;30014:147::-;30109:45;30148:5;30109:45;:::i;:::-;30104:3;30097:58;30014:147;;:::o;30167:114::-;30234:6;30268:5;30262:12;30252:22;;30167:114;;;:::o;30287:184::-;30386:11;30420:6;30415:3;30408:19;30460:4;30455:3;30451:14;30436:29;;30287:184;;;;:::o;30477:132::-;30544:4;30567:3;30559:11;;30597:4;30592:3;30588:14;30580:22;;30477:132;;;:::o;30615:108::-;30692:24;30710:5;30692:24;:::i;:::-;30687:3;30680:37;30615:108;;:::o;30729:179::-;30798:10;30819:46;30861:3;30853:6;30819:46;:::i;:::-;30897:4;30892:3;30888:14;30874:28;;30729:179;;;;:::o;30914:113::-;30984:4;31016;31011:3;31007:14;30999:22;;30914:113;;;:::o;31063:732::-;31182:3;31211:54;31259:5;31211:54;:::i;:::-;31281:86;31360:6;31355:3;31281:86;:::i;:::-;31274:93;;31391:56;31441:5;31391:56;:::i;:::-;31470:7;31501:1;31486:284;31511:6;31508:1;31505:13;31486:284;;;31587:6;31581:13;31614:63;31673:3;31658:13;31614:63;:::i;:::-;31607:70;;31700:60;31753:6;31700:60;:::i;:::-;31690:70;;31546:224;31533:1;31530;31526:9;31521:14;;31486:284;;;31490:14;31786:3;31779:10;;31187:608;;;31063:732;;;;:::o;31801:831::-;32064:4;32102:3;32091:9;32087:19;32079:27;;32116:71;32184:1;32173:9;32169:17;32160:6;32116:71;:::i;:::-;32197:80;32273:2;32262:9;32258:18;32249:6;32197:80;:::i;:::-;32324:9;32318:4;32314:20;32309:2;32298:9;32294:18;32287:48;32352:108;32455:4;32446:6;32352:108;:::i;:::-;32344:116;;32470:72;32538:2;32527:9;32523:18;32514:6;32470:72;:::i;:::-;32552:73;32620:3;32609:9;32605:19;32596:6;32552:73;:::i;:::-;31801:831;;;;;;;;:::o

Swarm Source

ipfs://63188d34810b6ae07f1ee64b95a889e6e368f1567f9c3bbd2d8e40ce2b582508
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.