ETH Price: $2,675.20 (+1.53%)

Token

DogeGoose ($DG)
 

Overview

Max Total Supply

1,000,000,000 $DG

Holders

10

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
4,597,619.961697859911526977 $DG

Value
$0.00
0x0069f94c6ef196cf54b2f0746de92d40a83d41a5
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:
DogeGoose

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 2022-07-08
*/

// SPDX-License-Identifier: Unlicensed   
                                                                      
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 18;
    }
 
    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }
 
    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }
 
    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }
 
    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }
 
    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }
 
    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _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 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;
}
 
contract DogeGoose is ERC20, Ownable {
    using SafeMath for uint256;
 
    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
 
    bool private swapping;
 
    address public marketingWallet;
     
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;
 
    bool public tradingActive = false;
    bool public swapEnabled = false;

    uint256 public BuyInitialFees;
    uint256 public BuyTotalFees;
    uint256 public BuyLiquidityFee;
    uint256 public BuyTaxFee;
 
    uint256 public SellInitialFees;
    uint256 public SellTotalFees;
    uint256 public SellLiquidityFee;
    uint256 public SellTaxFee;
  
    uint256 public tokensForLiquidity;
    uint256 public tokensForTax;
     
    /******************/
 
    // exclude from fees and max transaction amount
    mapping (address => bool) public _isExcludedFromFees;
    mapping (address => bool) public _isExcludedMaxBuyTransactionAmount;
    mapping (address => bool) public _isExcludedMaxSellTransactionAmount;
 
    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping (address => bool) public automatedMarketMakerPairs;
 
    event UpdateUniswapV2Router(address indexed newAddress, address indexed oldAddress);
 
    event ExcludeFromFees(address indexed account, bool isExcluded);
 
    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);
 
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );
 
    constructor() ERC20("DogeGoose", "$DG") {
 
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        _isExcludedMaxBuyTransactionAmount[address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D)] = true;
        _isExcludedMaxSellTransactionAmount[address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D)] = true;

        uniswapV2Router = _uniswapV2Router;
 
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());
        _isExcludedMaxBuyTransactionAmount[uniswapV2Pair] = true;
        _isExcludedMaxSellTransactionAmount[uniswapV2Pair] = true;
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);
		
		// fees	3/6
        uint256 _BuyLiquidityFee = 0;
        uint256 _BuyTaxFee = 3;

        uint256 _SellLiquidityFee = 0;
        uint256 _SellTaxFee = 6;
 
        uint256 totalSupply = 1000000000 * 1e18;
 
        maxWallet = 25000000 * 1e18; // Max Wallet 2.5%
        swapTokensAtAmount = 1000000 * 1e18; // 0.1% swap threshold for the CA

        BuyLiquidityFee = _BuyLiquidityFee;
        BuyTaxFee = _BuyTaxFee;
        BuyTotalFees = BuyLiquidityFee + BuyTaxFee;
        BuyInitialFees = BuyTotalFees;

        SellLiquidityFee = _SellLiquidityFee;
        SellTaxFee = _SellTaxFee;
        SellTotalFees = SellLiquidityFee + SellTaxFee;
        SellInitialFees = SellTotalFees;
 
		marketingWallet = address(0x08a87F7Bc6a36D60D5722f5c2EdeDd8347387bB6); // set as marketing wallet
         
        // exclude from paying fees or having max transaction amount
        _isExcludedFromFees[address(0x08a87F7Bc6a36D60D5722f5c2EdeDd8347387bB6)] = true;
        _isExcludedFromFees[address(this)] = true;
        _isExcludedFromFees[address(0xdead)] = true;
      
        _isExcludedMaxBuyTransactionAmount[address(0x08a87F7Bc6a36D60D5722f5c2EdeDd8347387bB6)] = true;
        _isExcludedMaxBuyTransactionAmount[address(this)] = true;
        _isExcludedMaxBuyTransactionAmount[address(0xdead)] = true;
   
        _isExcludedMaxSellTransactionAmount[address(0x08a87F7Bc6a36D60D5722f5c2EdeDd8347387bB6)] = true;
        _isExcludedMaxSellTransactionAmount[address(this)] = true;
        _isExcludedMaxSellTransactionAmount[address(0xdead)] = true;

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

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

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;
 
        emit SetAutomatedMarketMakerPair(pair, value);
    }
     
    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 (
            from != owner() &&
            to != owner() &&
            to != address(0) &&
            to != address(0xdead) &&
            !swapping
        ){
            if(!tradingActive){
                require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active.");
            }
 
            //when buy
            if (automatedMarketMakerPairs[from] && !_isExcludedMaxBuyTransactionAmount[to]) {
                    require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded");
            }
        }
 
        uint256 contractTokenBalance = balanceOf(address(this));
 
        bool canSwap = contractTokenBalance >= swapTokensAtAmount;
 
        if( 
            canSwap &&
            swapEnabled &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;
 
            swapBack();
 
            swapping = false;
        }
 
        bool takeFee = !swapping;

        bool walletToWallet = !automatedMarketMakerPairs[to] && !automatedMarketMakerPairs[from];
        // if any account belongs to _isExcludedFromFee account then remove the fee
        if(_isExcludedFromFees[from] || _isExcludedFromFees[to] || walletToWallet) {
            takeFee = false;
        }
 
        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if(takeFee){
			// buy
			if (automatedMarketMakerPairs[from] && BuyTotalFees > 0){
			    fees = amount.mul(BuyTotalFees).div(100);
				tokensForLiquidity += fees * BuyLiquidityFee / BuyTotalFees;
				tokensForTax += fees * BuyTaxFee / BuyTotalFees;
			}
			// sell
			else if(automatedMarketMakerPairs[to] && SellTotalFees > 0) {
 			    fees = amount.mul(SellTotalFees).div(100);
				tokensForLiquidity += fees * SellLiquidityFee / SellTotalFees;
				tokensForTax += fees * SellTaxFee / SellTotalFees;
 			}
			
            if(fees > 0){    
                super._transfer(from, address(this), fees);
            }
 
            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 addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);
 
        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            address(marketingWallet),
            block.timestamp
        );
    }
 
    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity + tokensForTax;
        bool success;
 
        if(contractBalance == 0 || totalTokensToSwap == 0) {return;}
 
        if(contractBalance > swapTokensAtAmount * 20){
          contractBalance = swapTokensAtAmount * 20;
        }
 
        // Half the amount of liquidity tokens
        uint256 liquidityTokens = contractBalance * tokensForLiquidity / totalTokensToSwap / 2;
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);
 
        uint256 initialETHBalance = address(this).balance;
 
        swapTokensForEth(amountToSwapForETH); 
 
        uint256 ethBalance = address(this).balance.sub(initialETHBalance);
 
        uint256 ethForTax = ethBalance.mul(tokensForTax).div(totalTokensToSwap-liquidityTokens);
        uint256 ethForLiquidity = ethBalance - ethForTax;
		 
        tokensForLiquidity = 0;
        tokensForTax = 0;
 		
        if(liquidityTokens > 0 && ethForLiquidity > 0){
            addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(amountToSwapForETH, ethForLiquidity, tokensForLiquidity);
        }
		
		(success,) = address(marketingWallet).call{value: address(this).balance}("");
	}
	
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[],"name":"BuyInitialFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"BuyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"BuyTaxFee","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":"SellInitialFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SellTaxFee","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":"","type":"address"}],"name":"_isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxBuyTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxSellTransactionAmount","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":"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":"enableTrading","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":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"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":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526000600960006101000a81548160ff0219169083151502179055506000600960016101000a81548160ff0219169083151502179055503480156200004757600080fd5b506040518060400160405280600981526020017f446f6765476f6f736500000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f24444700000000000000000000000000000000000000000000000000000000008152508160039080519060200190620000cc92919062000c7c565b508060049080519060200190620000e592919062000c7c565b5050506000620000fa620009bc60201b60201c565b905080600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050600160156000737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160166000737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200030557600080fd5b505afa1580156200031a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000340919062000d96565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620003a357600080fd5b505afa158015620003b8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003de919062000d96565b6040518363ffffffff1660e01b8152600401620003fd92919062000dd9565b602060405180830381600087803b1580156200041857600080fd5b505af11580156200042d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000453919062000d96565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff168152505060016015600060a05173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016016600060a05173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200054f60a0516001620009c460201b60201c565b600080600390506000806006905060006b033b2e3c9fd0803ce800000090506a14adf4b7320334b900000060088190555069d3c21bcecceda100000060078190555084600c8190555083600d81905550600d54600c54620005b1919062000e3f565b600b81905550600b54600a819055508260108190555081601181905550601154601054620005e0919062000e3f565b600f81905550600f54600e819055507308a87f7bc6a36d60d5722f5c2ededd8347387bb6600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001601460007308a87f7bc6a36d60d5722f5c2ededd8347387bb673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016014600061dead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601560007308a87f7bc6a36d60d5722f5c2ededd8347387bb673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601560003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016015600061dead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601660007308a87f7bc6a36d60d5722f5c2ededd8347387bb673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601660003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016016600061dead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620009b0338262000a6560201b60201c565b50505050505062001024565b600033905090565b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000ad8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000acf9062000efd565b60405180910390fd5b62000aec6000838362000c1460201b60201c565b62000b088160025462000c1960201b620012d61790919060201c565b60028190555062000b66816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000c1960201b620012d61790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000c08919062000f30565b60405180910390a35050565b505050565b600080828462000c2a919062000e3f565b90508381101562000c72576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000c699062000f9d565b60405180910390fd5b8091505092915050565b82805462000c8a9062000fee565b90600052602060002090601f01602090048101928262000cae576000855562000cfa565b82601f1062000cc957805160ff191683800117855562000cfa565b8280016001018555821562000cfa579182015b8281111562000cf957825182559160200191906001019062000cdc565b5b50905062000d09919062000d0d565b5090565b5b8082111562000d2857600081600090555060010162000d0e565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000d5e8262000d31565b9050919050565b62000d708162000d51565b811462000d7c57600080fd5b50565b60008151905062000d908162000d65565b92915050565b60006020828403121562000daf5762000dae62000d2c565b5b600062000dbf8482850162000d7f565b91505092915050565b62000dd38162000d51565b82525050565b600060408201905062000df0600083018562000dc8565b62000dff602083018462000dc8565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000e4c8262000e06565b915062000e598362000e06565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000e915762000e9062000e10565b5b828201905092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000ee5601f8362000e9c565b915062000ef28262000ead565b602082019050919050565b6000602082019050818103600083015262000f188162000ed6565b9050919050565b62000f2a8162000e06565b82525050565b600060208201905062000f47600083018462000f1f565b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b600062000f85601b8362000e9c565b915062000f928262000f4d565b602082019050919050565b6000602082019050818103600083015262000fb88162000f76565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200100757607f821691505b602082108114156200101e576200101d62000fbf565b5b50919050565b60805160a0516136676200106d6000396000610b6e01526000818161099f015281816124eb015281816125db015281816126020152818161269e01526126c501526136676000f3fe6080604052600436106102135760003560e01c806382f87d2211610118578063d2943933116100a0578063e194c2b21161006f578063e194c2b2146107e0578063e2f456051461080b578063f2fde38b14610836578063f398d3041461085f578063f8b45b051461089c5761021a565b8063d294393314610710578063d64dc9bd1461073b578063dd62ed3e14610766578063e0bf7fd1146107a35761021a565b8063a457c2d7116100e7578063a457c2d714610603578063a9059cbb14610640578063b62496f51461067d578063bbc0c742146106ba578063cdbf7455146106e55761021a565b806382f87d221461056b5780638a8c523c146105965780638da5cb5b146105ad57806395d89b41146105d85761021a565b8063395093511161019b5780636ddd17131161016a5780636ddd1713146104965780636fc61774146104c157806370a08231146104ec578063715018a61461052957806375f0a874146105405761021a565b806339509351146103d857806340f979131461041557806349bd5a5e146104405780636d7adcad1461046b5761021a565b80631694505e116101e25780631694505e146102ef57806318160ddd1461031a5780631a8145bb1461034557806323b872dd14610370578063313ce567146103ad5761021a565b806303c525731461021f57806306fdde031461024a5780630855f25d14610275578063095ea7b3146102b25761021a565b3661021a57005b600080fd5b34801561022b57600080fd5b506102346108c7565b604051610241919061281f565b60405180910390f35b34801561025657600080fd5b5061025f6108cd565b60405161026c91906128d3565b60405180910390f35b34801561028157600080fd5b5061029c60048036038101906102979190612958565b61095f565b6040516102a991906129a0565b60405180910390f35b3480156102be57600080fd5b506102d960048036038101906102d491906129e7565b61097f565b6040516102e691906129a0565b60405180910390f35b3480156102fb57600080fd5b5061030461099d565b6040516103119190612a86565b60405180910390f35b34801561032657600080fd5b5061032f6109c1565b60405161033c919061281f565b60405180910390f35b34801561035157600080fd5b5061035a6109cb565b604051610367919061281f565b60405180910390f35b34801561037c57600080fd5b5061039760048036038101906103929190612aa1565b6109d1565b6040516103a491906129a0565b60405180910390f35b3480156103b957600080fd5b506103c2610aaa565b6040516103cf9190612b10565b60405180910390f35b3480156103e457600080fd5b506103ff60048036038101906103fa91906129e7565b610ab3565b60405161040c91906129a0565b60405180910390f35b34801561042157600080fd5b5061042a610b66565b604051610437919061281f565b60405180910390f35b34801561044c57600080fd5b50610455610b6c565b6040516104629190612b3a565b60405180910390f35b34801561047757600080fd5b50610480610b90565b60405161048d919061281f565b60405180910390f35b3480156104a257600080fd5b506104ab610b96565b6040516104b891906129a0565b60405180910390f35b3480156104cd57600080fd5b506104d6610ba9565b6040516104e3919061281f565b60405180910390f35b3480156104f857600080fd5b50610513600480360381019061050e9190612958565b610baf565b604051610520919061281f565b60405180910390f35b34801561053557600080fd5b5061053e610bf7565b005b34801561054c57600080fd5b50610555610d4f565b6040516105629190612b3a565b60405180910390f35b34801561057757600080fd5b50610580610d75565b60405161058d919061281f565b60405180910390f35b3480156105a257600080fd5b506105ab610d7b565b005b3480156105b957600080fd5b506105c2610e4a565b6040516105cf9190612b3a565b60405180910390f35b3480156105e457600080fd5b506105ed610e74565b6040516105fa91906128d3565b60405180910390f35b34801561060f57600080fd5b5061062a600480360381019061062591906129e7565b610f06565b60405161063791906129a0565b60405180910390f35b34801561064c57600080fd5b50610667600480360381019061066291906129e7565b610fd3565b60405161067491906129a0565b60405180910390f35b34801561068957600080fd5b506106a4600480360381019061069f9190612958565b610ff1565b6040516106b191906129a0565b60405180910390f35b3480156106c657600080fd5b506106cf611011565b6040516106dc91906129a0565b60405180910390f35b3480156106f157600080fd5b506106fa611024565b604051610707919061281f565b60405180910390f35b34801561071c57600080fd5b5061072561102a565b604051610732919061281f565b60405180910390f35b34801561074757600080fd5b50610750611030565b60405161075d919061281f565b60405180910390f35b34801561077257600080fd5b5061078d60048036038101906107889190612b55565b611036565b60405161079a919061281f565b60405180910390f35b3480156107af57600080fd5b506107ca60048036038101906107c59190612958565b6110bd565b6040516107d791906129a0565b60405180910390f35b3480156107ec57600080fd5b506107f56110dd565b604051610802919061281f565b60405180910390f35b34801561081757600080fd5b506108206110e3565b60405161082d919061281f565b60405180910390f35b34801561084257600080fd5b5061085d60048036038101906108589190612958565b6110e9565b005b34801561086b57600080fd5b5061088660048036038101906108819190612958565b6112b0565b60405161089391906129a0565b60405180910390f35b3480156108a857600080fd5b506108b16112d0565b6040516108be919061281f565b60405180910390f35b600d5481565b6060600380546108dc90612bc4565b80601f016020809104026020016040519081016040528092919081815260200182805461090890612bc4565b80156109555780601f1061092a57610100808354040283529160200191610955565b820191906000526020600020905b81548152906001019060200180831161093857829003601f168201915b5050505050905090565b60166020528060005260406000206000915054906101000a900460ff1681565b600061099361098c611334565b848461133c565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b60125481565b60006109de848484611507565b610a9f846109ea611334565b610a9a856040518060600160405280602881526020016135e560289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610a50611334565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e279092919063ffffffff16565b61133c565b600190509392505050565b60006012905090565b6000610b5c610ac0611334565b84610b578560016000610ad1611334565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112d690919063ffffffff16565b61133c565b6001905092915050565b600f5481565b7f000000000000000000000000000000000000000000000000000000000000000081565b60135481565b600960019054906101000a900460ff1681565b600c5481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610bff611334565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8590612c42565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b5481565b610d83611334565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0990612c42565b60405180910390fd5b6001600960006101000a81548160ff0219169083151502179055506001600960016101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610e8390612bc4565b80601f0160208091040260200160405190810160405280929190818152602001828054610eaf90612bc4565b8015610efc5780601f10610ed157610100808354040283529160200191610efc565b820191906000526020600020905b815481529060010190602001808311610edf57829003601f168201915b5050505050905090565b6000610fc9610f13611334565b84610fc48560405180606001604052806025815260200161360d6025913960016000610f3d611334565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e279092919063ffffffff16565b61133c565b6001905092915050565b6000610fe7610fe0611334565b8484611507565b6001905092915050565b60176020528060005260406000206000915054906101000a900460ff1681565b600960009054906101000a900460ff1681565b600e5481565b60105481565b600a5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60146020528060005260406000206000915054906101000a900460ff1681565b60115481565b60075481565b6110f1611334565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611180576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117790612c42565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e790612cd4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60156020528060005260406000206000915054906101000a900460ff1681565b60085481565b60008082846112e59190612d23565b90508381101561132a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132190612dc5565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156113ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a390612e57565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561141c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141390612ee9565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516114fa919061281f565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611577576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156e90612f7b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115de9061300d565b60405180910390fd5b6000811415611601576115fc83836000611e8b565b611e22565b611609610e4a565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156116775750611647610e4a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156116b05750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156116ea575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156117035750600560149054906101000a900460ff16155b156118ff57600960009054906101000a900460ff166117fd57601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806117bd5750601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6117fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f390613079565b60405180910390fd5b5b601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156118a05750601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156118fe576008546118b183610baf565b826118bc9190612d23565b11156118fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f4906130e5565b60405180910390fd5b5b5b600061190a30610baf565b90506000600754821015905080801561192f5750600960019054906101000a900460ff165b80156119485750600560149054906101000a900460ff16155b801561199e5750601760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156119f45750601460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611a4a5750601460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611a8e576001600560146101000a81548160ff021916908315150217905550611a72612120565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff161590506000601760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611b495750601760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b9050601460008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611bec5750601460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80611bf45750805b15611bfe57600091505b60008215611e1157601760008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611c6157506000600b54115b15611cfb57611c8e6064611c80600b548961233890919063ffffffff16565b6123b390919063ffffffff16565b9050600b54600c5482611ca19190613105565b611cab919061318e565b60126000828254611cbc9190612d23565b92505081905550600b54600d5482611cd49190613105565b611cde919061318e565b60136000828254611cef9190612d23565b92505081905550611ded565b601760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611d5657506000600f54115b15611dec57611d836064611d75600f548961233890919063ffffffff16565b6123b390919063ffffffff16565b9050600f5460105482611d969190613105565b611da0919061318e565b60126000828254611db19190612d23565b92505081905550600f5460115482611dc99190613105565b611dd3919061318e565b60136000828254611de49190612d23565b925050819055505b5b6000811115611e0257611e01883083611e8b565b5b8086611e0e91906131bf565b95505b611e1c888888611e8b565b50505050505b505050565b6000838311158290611e6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6691906128d3565b60405180910390fd5b5060008385611e7e91906131bf565b9050809150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611efb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef290612f7b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f629061300d565b60405180910390fd5b611f768383836123fd565b611fe1816040518060600160405280602681526020016135bf602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e279092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612074816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112d690919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051612113919061281f565b60405180910390a3505050565b600061212b30610baf565b9050600060135460125461213f9190612d23565b90506000808314806121515750600082145b1561215e57505050612336565b601460075461216d9190613105565b8311156121865760146007546121839190613105565b92505b6000600283601254866121999190613105565b6121a3919061318e565b6121ad919061318e565b905060006121c4828661240290919063ffffffff16565b905060004790506121d48261244c565b60006121e9824761240290919063ffffffff16565b9050600061221f85886121fc91906131bf565b6122116013548561233890919063ffffffff16565b6123b390919063ffffffff16565b90506000818361222f91906131bf565b9050600060128190555060006013819055506000861180156122515750600081115b1561229e576122608682612698565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618582601254604051612295939291906131f3565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516122e49061325b565b60006040518083038185875af1925050503d8060008114612321576040519150601f19603f3d011682016040523d82523d6000602084013e612326565b606091505b5050809750505050505050505050505b565b60008083141561234b57600090506123ad565b600082846123599190613105565b9050828482612368919061318e565b146123a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239f906132e2565b60405180910390fd5b809150505b92915050565b60006123f583836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506127a3565b905092915050565b505050565b600061244483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611e27565b905092915050565b6000600267ffffffffffffffff81111561246957612468613302565b5b6040519080825280602002602001820160405280156124975781602001602082028036833780820191505090505b50905030816000815181106124af576124ae613331565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561254f57600080fd5b505afa158015612563573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125879190613375565b8160018151811061259b5761259a613331565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612600307f00000000000000000000000000000000000000000000000000000000000000008461133c565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161266295949392919061349b565b600060405180830381600087803b15801561267c57600080fd5b505af1158015612690573d6000803e3d6000fd5b505050505050565b6126c3307f00000000000000000000000000000000000000000000000000000000000000008461133c565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b815260040161274a969594939291906134f5565b6060604051808303818588803b15801561276357600080fd5b505af1158015612777573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061279c919061356b565b5050505050565b600080831182906127ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e191906128d3565b60405180910390fd5b50600083856127f9919061318e565b9050809150509392505050565b6000819050919050565b61281981612806565b82525050565b60006020820190506128346000830184612810565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612874578082015181840152602081019050612859565b83811115612883576000848401525b50505050565b6000601f19601f8301169050919050565b60006128a58261283a565b6128af8185612845565b93506128bf818560208601612856565b6128c881612889565b840191505092915050565b600060208201905081810360008301526128ed818461289a565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612925826128fa565b9050919050565b6129358161291a565b811461294057600080fd5b50565b6000813590506129528161292c565b92915050565b60006020828403121561296e5761296d6128f5565b5b600061297c84828501612943565b91505092915050565b60008115159050919050565b61299a81612985565b82525050565b60006020820190506129b56000830184612991565b92915050565b6129c481612806565b81146129cf57600080fd5b50565b6000813590506129e1816129bb565b92915050565b600080604083850312156129fe576129fd6128f5565b5b6000612a0c85828601612943565b9250506020612a1d858286016129d2565b9150509250929050565b6000819050919050565b6000612a4c612a47612a42846128fa565b612a27565b6128fa565b9050919050565b6000612a5e82612a31565b9050919050565b6000612a7082612a53565b9050919050565b612a8081612a65565b82525050565b6000602082019050612a9b6000830184612a77565b92915050565b600080600060608486031215612aba57612ab96128f5565b5b6000612ac886828701612943565b9350506020612ad986828701612943565b9250506040612aea868287016129d2565b9150509250925092565b600060ff82169050919050565b612b0a81612af4565b82525050565b6000602082019050612b256000830184612b01565b92915050565b612b348161291a565b82525050565b6000602082019050612b4f6000830184612b2b565b92915050565b60008060408385031215612b6c57612b6b6128f5565b5b6000612b7a85828601612943565b9250506020612b8b85828601612943565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612bdc57607f821691505b60208210811415612bf057612bef612b95565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612c2c602083612845565b9150612c3782612bf6565b602082019050919050565b60006020820190508181036000830152612c5b81612c1f565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612cbe602683612845565b9150612cc982612c62565b604082019050919050565b60006020820190508181036000830152612ced81612cb1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612d2e82612806565b9150612d3983612806565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612d6e57612d6d612cf4565b5b828201905092915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000612daf601b83612845565b9150612dba82612d79565b602082019050919050565b60006020820190508181036000830152612dde81612da2565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612e41602483612845565b9150612e4c82612de5565b604082019050919050565b60006020820190508181036000830152612e7081612e34565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612ed3602283612845565b9150612ede82612e77565b604082019050919050565b60006020820190508181036000830152612f0281612ec6565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612f65602583612845565b9150612f7082612f09565b604082019050919050565b60006020820190508181036000830152612f9481612f58565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612ff7602383612845565b915061300282612f9b565b604082019050919050565b6000602082019050818103600083015261302681612fea565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000613063601683612845565b915061306e8261302d565b602082019050919050565b6000602082019050818103600083015261309281613056565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006130cf601383612845565b91506130da82613099565b602082019050919050565b600060208201905081810360008301526130fe816130c2565b9050919050565b600061311082612806565b915061311b83612806565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561315457613153612cf4565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061319982612806565b91506131a483612806565b9250826131b4576131b361315f565b5b828204905092915050565b60006131ca82612806565b91506131d583612806565b9250828210156131e8576131e7612cf4565b5b828203905092915050565b60006060820190506132086000830186612810565b6132156020830185612810565b6132226040830184612810565b949350505050565b600081905092915050565b50565b600061324560008361322a565b915061325082613235565b600082019050919050565b600061326682613238565b9150819050919050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b60006132cc602183612845565b91506132d782613270565b604082019050919050565b600060208201905081810360008301526132fb816132bf565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061336f8161292c565b92915050565b60006020828403121561338b5761338a6128f5565b5b600061339984828501613360565b91505092915050565b6000819050919050565b60006133c76133c26133bd846133a2565b612a27565b612806565b9050919050565b6133d7816133ac565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6134128161291a565b82525050565b60006134248383613409565b60208301905092915050565b6000602082019050919050565b6000613448826133dd565b61345281856133e8565b935061345d836133f9565b8060005b8381101561348e5781516134758882613418565b975061348083613430565b925050600181019050613461565b5085935050505092915050565b600060a0820190506134b06000830188612810565b6134bd60208301876133ce565b81810360408301526134cf818661343d565b90506134de6060830185612b2b565b6134eb6080830184612810565b9695505050505050565b600060c08201905061350a6000830189612b2b565b6135176020830188612810565b61352460408301876133ce565b61353160608301866133ce565b61353e6080830185612b2b565b61354b60a0830184612810565b979650505050505050565b600081519050613565816129bb565b92915050565b600080600060608486031215613584576135836128f5565b5b600061359286828701613556565b93505060206135a386828701613556565b92505060406135b486828701613556565b915050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220a1820001afcbb6185b834e595b164da3567d9d4ceaba817721debb1670beca9e64736f6c63430008090033

Deployed Bytecode

0x6080604052600436106102135760003560e01c806382f87d2211610118578063d2943933116100a0578063e194c2b21161006f578063e194c2b2146107e0578063e2f456051461080b578063f2fde38b14610836578063f398d3041461085f578063f8b45b051461089c5761021a565b8063d294393314610710578063d64dc9bd1461073b578063dd62ed3e14610766578063e0bf7fd1146107a35761021a565b8063a457c2d7116100e7578063a457c2d714610603578063a9059cbb14610640578063b62496f51461067d578063bbc0c742146106ba578063cdbf7455146106e55761021a565b806382f87d221461056b5780638a8c523c146105965780638da5cb5b146105ad57806395d89b41146105d85761021a565b8063395093511161019b5780636ddd17131161016a5780636ddd1713146104965780636fc61774146104c157806370a08231146104ec578063715018a61461052957806375f0a874146105405761021a565b806339509351146103d857806340f979131461041557806349bd5a5e146104405780636d7adcad1461046b5761021a565b80631694505e116101e25780631694505e146102ef57806318160ddd1461031a5780631a8145bb1461034557806323b872dd14610370578063313ce567146103ad5761021a565b806303c525731461021f57806306fdde031461024a5780630855f25d14610275578063095ea7b3146102b25761021a565b3661021a57005b600080fd5b34801561022b57600080fd5b506102346108c7565b604051610241919061281f565b60405180910390f35b34801561025657600080fd5b5061025f6108cd565b60405161026c91906128d3565b60405180910390f35b34801561028157600080fd5b5061029c60048036038101906102979190612958565b61095f565b6040516102a991906129a0565b60405180910390f35b3480156102be57600080fd5b506102d960048036038101906102d491906129e7565b61097f565b6040516102e691906129a0565b60405180910390f35b3480156102fb57600080fd5b5061030461099d565b6040516103119190612a86565b60405180910390f35b34801561032657600080fd5b5061032f6109c1565b60405161033c919061281f565b60405180910390f35b34801561035157600080fd5b5061035a6109cb565b604051610367919061281f565b60405180910390f35b34801561037c57600080fd5b5061039760048036038101906103929190612aa1565b6109d1565b6040516103a491906129a0565b60405180910390f35b3480156103b957600080fd5b506103c2610aaa565b6040516103cf9190612b10565b60405180910390f35b3480156103e457600080fd5b506103ff60048036038101906103fa91906129e7565b610ab3565b60405161040c91906129a0565b60405180910390f35b34801561042157600080fd5b5061042a610b66565b604051610437919061281f565b60405180910390f35b34801561044c57600080fd5b50610455610b6c565b6040516104629190612b3a565b60405180910390f35b34801561047757600080fd5b50610480610b90565b60405161048d919061281f565b60405180910390f35b3480156104a257600080fd5b506104ab610b96565b6040516104b891906129a0565b60405180910390f35b3480156104cd57600080fd5b506104d6610ba9565b6040516104e3919061281f565b60405180910390f35b3480156104f857600080fd5b50610513600480360381019061050e9190612958565b610baf565b604051610520919061281f565b60405180910390f35b34801561053557600080fd5b5061053e610bf7565b005b34801561054c57600080fd5b50610555610d4f565b6040516105629190612b3a565b60405180910390f35b34801561057757600080fd5b50610580610d75565b60405161058d919061281f565b60405180910390f35b3480156105a257600080fd5b506105ab610d7b565b005b3480156105b957600080fd5b506105c2610e4a565b6040516105cf9190612b3a565b60405180910390f35b3480156105e457600080fd5b506105ed610e74565b6040516105fa91906128d3565b60405180910390f35b34801561060f57600080fd5b5061062a600480360381019061062591906129e7565b610f06565b60405161063791906129a0565b60405180910390f35b34801561064c57600080fd5b50610667600480360381019061066291906129e7565b610fd3565b60405161067491906129a0565b60405180910390f35b34801561068957600080fd5b506106a4600480360381019061069f9190612958565b610ff1565b6040516106b191906129a0565b60405180910390f35b3480156106c657600080fd5b506106cf611011565b6040516106dc91906129a0565b60405180910390f35b3480156106f157600080fd5b506106fa611024565b604051610707919061281f565b60405180910390f35b34801561071c57600080fd5b5061072561102a565b604051610732919061281f565b60405180910390f35b34801561074757600080fd5b50610750611030565b60405161075d919061281f565b60405180910390f35b34801561077257600080fd5b5061078d60048036038101906107889190612b55565b611036565b60405161079a919061281f565b60405180910390f35b3480156107af57600080fd5b506107ca60048036038101906107c59190612958565b6110bd565b6040516107d791906129a0565b60405180910390f35b3480156107ec57600080fd5b506107f56110dd565b604051610802919061281f565b60405180910390f35b34801561081757600080fd5b506108206110e3565b60405161082d919061281f565b60405180910390f35b34801561084257600080fd5b5061085d60048036038101906108589190612958565b6110e9565b005b34801561086b57600080fd5b5061088660048036038101906108819190612958565b6112b0565b60405161089391906129a0565b60405180910390f35b3480156108a857600080fd5b506108b16112d0565b6040516108be919061281f565b60405180910390f35b600d5481565b6060600380546108dc90612bc4565b80601f016020809104026020016040519081016040528092919081815260200182805461090890612bc4565b80156109555780601f1061092a57610100808354040283529160200191610955565b820191906000526020600020905b81548152906001019060200180831161093857829003601f168201915b5050505050905090565b60166020528060005260406000206000915054906101000a900460ff1681565b600061099361098c611334565b848461133c565b6001905092915050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b60125481565b60006109de848484611507565b610a9f846109ea611334565b610a9a856040518060600160405280602881526020016135e560289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610a50611334565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e279092919063ffffffff16565b61133c565b600190509392505050565b60006012905090565b6000610b5c610ac0611334565b84610b578560016000610ad1611334565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112d690919063ffffffff16565b61133c565b6001905092915050565b600f5481565b7f000000000000000000000000bece7d07dd242c0378291aeccace7170b75d8b1981565b60135481565b600960019054906101000a900460ff1681565b600c5481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610bff611334565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8590612c42565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b5481565b610d83611334565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0990612c42565b60405180910390fd5b6001600960006101000a81548160ff0219169083151502179055506001600960016101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610e8390612bc4565b80601f0160208091040260200160405190810160405280929190818152602001828054610eaf90612bc4565b8015610efc5780601f10610ed157610100808354040283529160200191610efc565b820191906000526020600020905b815481529060010190602001808311610edf57829003601f168201915b5050505050905090565b6000610fc9610f13611334565b84610fc48560405180606001604052806025815260200161360d6025913960016000610f3d611334565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e279092919063ffffffff16565b61133c565b6001905092915050565b6000610fe7610fe0611334565b8484611507565b6001905092915050565b60176020528060005260406000206000915054906101000a900460ff1681565b600960009054906101000a900460ff1681565b600e5481565b60105481565b600a5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60146020528060005260406000206000915054906101000a900460ff1681565b60115481565b60075481565b6110f1611334565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611180576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117790612c42565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e790612cd4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60156020528060005260406000206000915054906101000a900460ff1681565b60085481565b60008082846112e59190612d23565b90508381101561132a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132190612dc5565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156113ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a390612e57565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561141c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141390612ee9565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516114fa919061281f565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611577576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156e90612f7b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115de9061300d565b60405180910390fd5b6000811415611601576115fc83836000611e8b565b611e22565b611609610e4a565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156116775750611647610e4a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156116b05750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156116ea575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156117035750600560149054906101000a900460ff16155b156118ff57600960009054906101000a900460ff166117fd57601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806117bd5750601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6117fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f390613079565b60405180910390fd5b5b601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156118a05750601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156118fe576008546118b183610baf565b826118bc9190612d23565b11156118fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f4906130e5565b60405180910390fd5b5b5b600061190a30610baf565b90506000600754821015905080801561192f5750600960019054906101000a900460ff165b80156119485750600560149054906101000a900460ff16155b801561199e5750601760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156119f45750601460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611a4a5750601460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611a8e576001600560146101000a81548160ff021916908315150217905550611a72612120565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff161590506000601760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611b495750601760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b9050601460008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611bec5750601460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80611bf45750805b15611bfe57600091505b60008215611e1157601760008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611c6157506000600b54115b15611cfb57611c8e6064611c80600b548961233890919063ffffffff16565b6123b390919063ffffffff16565b9050600b54600c5482611ca19190613105565b611cab919061318e565b60126000828254611cbc9190612d23565b92505081905550600b54600d5482611cd49190613105565b611cde919061318e565b60136000828254611cef9190612d23565b92505081905550611ded565b601760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611d5657506000600f54115b15611dec57611d836064611d75600f548961233890919063ffffffff16565b6123b390919063ffffffff16565b9050600f5460105482611d969190613105565b611da0919061318e565b60126000828254611db19190612d23565b92505081905550600f5460115482611dc99190613105565b611dd3919061318e565b60136000828254611de49190612d23565b925050819055505b5b6000811115611e0257611e01883083611e8b565b5b8086611e0e91906131bf565b95505b611e1c888888611e8b565b50505050505b505050565b6000838311158290611e6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6691906128d3565b60405180910390fd5b5060008385611e7e91906131bf565b9050809150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611efb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef290612f7b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f629061300d565b60405180910390fd5b611f768383836123fd565b611fe1816040518060600160405280602681526020016135bf602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e279092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612074816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112d690919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051612113919061281f565b60405180910390a3505050565b600061212b30610baf565b9050600060135460125461213f9190612d23565b90506000808314806121515750600082145b1561215e57505050612336565b601460075461216d9190613105565b8311156121865760146007546121839190613105565b92505b6000600283601254866121999190613105565b6121a3919061318e565b6121ad919061318e565b905060006121c4828661240290919063ffffffff16565b905060004790506121d48261244c565b60006121e9824761240290919063ffffffff16565b9050600061221f85886121fc91906131bf565b6122116013548561233890919063ffffffff16565b6123b390919063ffffffff16565b90506000818361222f91906131bf565b9050600060128190555060006013819055506000861180156122515750600081115b1561229e576122608682612698565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618582601254604051612295939291906131f3565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516122e49061325b565b60006040518083038185875af1925050503d8060008114612321576040519150601f19603f3d011682016040523d82523d6000602084013e612326565b606091505b5050809750505050505050505050505b565b60008083141561234b57600090506123ad565b600082846123599190613105565b9050828482612368919061318e565b146123a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239f906132e2565b60405180910390fd5b809150505b92915050565b60006123f583836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506127a3565b905092915050565b505050565b600061244483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611e27565b905092915050565b6000600267ffffffffffffffff81111561246957612468613302565b5b6040519080825280602002602001820160405280156124975781602001602082028036833780820191505090505b50905030816000815181106124af576124ae613331565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561254f57600080fd5b505afa158015612563573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125879190613375565b8160018151811061259b5761259a613331565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612600307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461133c565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161266295949392919061349b565b600060405180830381600087803b15801561267c57600080fd5b505af1158015612690573d6000803e3d6000fd5b505050505050565b6126c3307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461133c565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b815260040161274a969594939291906134f5565b6060604051808303818588803b15801561276357600080fd5b505af1158015612777573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061279c919061356b565b5050505050565b600080831182906127ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e191906128d3565b60405180910390fd5b50600083856127f9919061318e565b9050809150509392505050565b6000819050919050565b61281981612806565b82525050565b60006020820190506128346000830184612810565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612874578082015181840152602081019050612859565b83811115612883576000848401525b50505050565b6000601f19601f8301169050919050565b60006128a58261283a565b6128af8185612845565b93506128bf818560208601612856565b6128c881612889565b840191505092915050565b600060208201905081810360008301526128ed818461289a565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612925826128fa565b9050919050565b6129358161291a565b811461294057600080fd5b50565b6000813590506129528161292c565b92915050565b60006020828403121561296e5761296d6128f5565b5b600061297c84828501612943565b91505092915050565b60008115159050919050565b61299a81612985565b82525050565b60006020820190506129b56000830184612991565b92915050565b6129c481612806565b81146129cf57600080fd5b50565b6000813590506129e1816129bb565b92915050565b600080604083850312156129fe576129fd6128f5565b5b6000612a0c85828601612943565b9250506020612a1d858286016129d2565b9150509250929050565b6000819050919050565b6000612a4c612a47612a42846128fa565b612a27565b6128fa565b9050919050565b6000612a5e82612a31565b9050919050565b6000612a7082612a53565b9050919050565b612a8081612a65565b82525050565b6000602082019050612a9b6000830184612a77565b92915050565b600080600060608486031215612aba57612ab96128f5565b5b6000612ac886828701612943565b9350506020612ad986828701612943565b9250506040612aea868287016129d2565b9150509250925092565b600060ff82169050919050565b612b0a81612af4565b82525050565b6000602082019050612b256000830184612b01565b92915050565b612b348161291a565b82525050565b6000602082019050612b4f6000830184612b2b565b92915050565b60008060408385031215612b6c57612b6b6128f5565b5b6000612b7a85828601612943565b9250506020612b8b85828601612943565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612bdc57607f821691505b60208210811415612bf057612bef612b95565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612c2c602083612845565b9150612c3782612bf6565b602082019050919050565b60006020820190508181036000830152612c5b81612c1f565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612cbe602683612845565b9150612cc982612c62565b604082019050919050565b60006020820190508181036000830152612ced81612cb1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612d2e82612806565b9150612d3983612806565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612d6e57612d6d612cf4565b5b828201905092915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000612daf601b83612845565b9150612dba82612d79565b602082019050919050565b60006020820190508181036000830152612dde81612da2565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612e41602483612845565b9150612e4c82612de5565b604082019050919050565b60006020820190508181036000830152612e7081612e34565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612ed3602283612845565b9150612ede82612e77565b604082019050919050565b60006020820190508181036000830152612f0281612ec6565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612f65602583612845565b9150612f7082612f09565b604082019050919050565b60006020820190508181036000830152612f9481612f58565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612ff7602383612845565b915061300282612f9b565b604082019050919050565b6000602082019050818103600083015261302681612fea565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000613063601683612845565b915061306e8261302d565b602082019050919050565b6000602082019050818103600083015261309281613056565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006130cf601383612845565b91506130da82613099565b602082019050919050565b600060208201905081810360008301526130fe816130c2565b9050919050565b600061311082612806565b915061311b83612806565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561315457613153612cf4565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061319982612806565b91506131a483612806565b9250826131b4576131b361315f565b5b828204905092915050565b60006131ca82612806565b91506131d583612806565b9250828210156131e8576131e7612cf4565b5b828203905092915050565b60006060820190506132086000830186612810565b6132156020830185612810565b6132226040830184612810565b949350505050565b600081905092915050565b50565b600061324560008361322a565b915061325082613235565b600082019050919050565b600061326682613238565b9150819050919050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b60006132cc602183612845565b91506132d782613270565b604082019050919050565b600060208201905081810360008301526132fb816132bf565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061336f8161292c565b92915050565b60006020828403121561338b5761338a6128f5565b5b600061339984828501613360565b91505092915050565b6000819050919050565b60006133c76133c26133bd846133a2565b612a27565b612806565b9050919050565b6133d7816133ac565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6134128161291a565b82525050565b60006134248383613409565b60208301905092915050565b6000602082019050919050565b6000613448826133dd565b61345281856133e8565b935061345d836133f9565b8060005b8381101561348e5781516134758882613418565b975061348083613430565b925050600181019050613461565b5085935050505092915050565b600060a0820190506134b06000830188612810565b6134bd60208301876133ce565b81810360408301526134cf818661343d565b90506134de6060830185612b2b565b6134eb6080830184612810565b9695505050505050565b600060c08201905061350a6000830189612b2b565b6135176020830188612810565b61352460408301876133ce565b61353160608301866133ce565b61353e6080830185612b2b565b61354b60a0830184612810565b979650505050505050565b600081519050613565816129bb565b92915050565b600080600060608486031215613584576135836128f5565b5b600061359286828701613556565b93505060206135a386828701613556565b92505060406135b486828701613556565b915050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220a1820001afcbb6185b834e595b164da3567d9d4ceaba817721debb1670beca9e64736f6c63430008090033

Deployed Bytecode Sourcemap

28721:9765:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29243:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7573:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29719:68;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9747:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28801:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8696:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29423:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10399:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8537:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11164:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29314:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28859:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29463:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29096:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29206:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8868:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21321:148;;;;;;;;;;;;;:::i;:::-;;28938:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29172:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33041:112;;;;;;;;;;;;;:::i;:::-;;20677:79;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7793:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11886:269;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9209:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29946:58;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29056:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29277:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29349:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29136:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9448:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29586:52;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29387:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28982:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21625:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29645:67;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29022:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29243;;;;:::o;7573:100::-;7627:13;7660:5;7653:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7573:100;:::o;29719:68::-;;;;;;;;;;;;;;;;;;;;;;:::o;9747:169::-;9830:4;9847:39;9856:12;:10;:12::i;:::-;9870:7;9879:6;9847:8;:39::i;:::-;9904:4;9897:11;;9747:169;;;;:::o;28801:51::-;;;:::o;8696:108::-;8757:7;8784:12;;8777:19;;8696:108;:::o;29423:33::-;;;;:::o;10399:355::-;10539:4;10556:36;10566:6;10574:9;10585:6;10556:9;:36::i;:::-;10603:121;10612:6;10620:12;:10;:12::i;:::-;10634:89;10672:6;10634:89;;;;;;;;;;;;;;;;;:11;:19;10646:6;10634:19;;;;;;;;;;;;;;;:33;10654:12;:10;:12::i;:::-;10634:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;10603:8;:121::i;:::-;10742:4;10735:11;;10399:355;;;;;:::o;8537:93::-;8595:5;8620:2;8613:9;;8537:93;:::o;11164:218::-;11252:4;11269:83;11278:12;:10;:12::i;:::-;11292:7;11301:50;11340:10;11301:11;:25;11313:12;:10;:12::i;:::-;11301:25;;;;;;;;;;;;;;;:34;11327:7;11301:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;11269:8;:83::i;:::-;11370:4;11363:11;;11164:218;;;;:::o;29314:28::-;;;;:::o;28859:38::-;;;:::o;29463:27::-;;;;:::o;29096:31::-;;;;;;;;;;;;;:::o;29206:30::-;;;;:::o;8868:127::-;8942:7;8969:9;:18;8979:7;8969:18;;;;;;;;;;;;;;;;8962:25;;8868:127;;;:::o;21321:148::-;20900:12;:10;:12::i;:::-;20890:22;;:6;;;;;;;;;;;:22;;;20882:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;21428:1:::1;21391:40;;21412:6;;;;;;;;;;;21391:40;;;;;;;;;;;;21459:1;21442:6;;:19;;;;;;;;;;;;;;;;;;21321:148::o:0;28938:30::-;;;;;;;;;;;;;:::o;29172:27::-;;;;:::o;33041:112::-;20900:12;:10;:12::i;:::-;20890:22;;:6;;;;;;;;;;;:22;;;20882:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;33112:4:::1;33096:13;;:20;;;;;;;;;;;;;;;;;;33141:4;33127:11;;:18;;;;;;;;;;;;;;;;;;33041:112::o:0;20677:79::-;20715:7;20742:6;;;;;;;;;;;20735:13;;20677:79;:::o;7793:104::-;7849:13;7882:7;7875:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7793:104;:::o;11886:269::-;11979:4;11996:129;12005:12;:10;:12::i;:::-;12019:7;12028:96;12067:15;12028:96;;;;;;;;;;;;;;;;;:11;:25;12040:12;:10;:12::i;:::-;12028:25;;;;;;;;;;;;;;;:34;12054:7;12028:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;11996:8;:129::i;:::-;12143:4;12136:11;;11886:269;;;;:::o;9209:175::-;9295:4;9312:42;9322:12;:10;:12::i;:::-;9336:9;9347:6;9312:9;:42::i;:::-;9372:4;9365:11;;9209:175;;;;:::o;29946:58::-;;;;;;;;;;;;;;;;;;;;;;:::o;29056:33::-;;;;;;;;;;;;;:::o;29277:30::-;;;;:::o;29349:31::-;;;;:::o;29136:29::-;;;;:::o;9448:151::-;9537:7;9564:11;:18;9576:5;9564:18;;;;;;;;;;;;;;;:27;9583:7;9564:27;;;;;;;;;;;;;;;;9557:34;;9448:151;;;;:::o;29586:52::-;;;;;;;;;;;;;;;;;;;;;;:::o;29387:25::-;;;;:::o;28982:33::-;;;;:::o;21625:244::-;20900:12;:10;:12::i;:::-;20890:22;;:6;;;;;;;;;;;:22;;;20882:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;21734:1:::1;21714:22;;:8;:22;;;;21706:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;21824:8;21795:38;;21816:6;;;;;;;;;;;21795:38;;;;;;;;;;;;21853:8;21844:6;;:17;;;;;;;;;;;;;;;;;;21625:244:::0;:::o;29645:67::-;;;;;;;;;;;;;;;;;;;;;;:::o;29022:24::-;;;;:::o;15709:182::-;15767:7;15787:9;15803:1;15799;:5;;;;:::i;:::-;15787:17;;15828:1;15823;:6;;15815:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;15882:1;15875:8;;;15709:182;;;;:::o;175:98::-;228:7;255:10;248:17;;175:98;:::o;14328:381::-;14481:1;14464:19;;:5;:19;;;;14456:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14562:1;14543:21;;:7;:21;;;;14535:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14647:6;14617:11;:18;14629:5;14617:18;;;;;;;;;;;;;;;:27;14636:7;14617:27;;;;;;;;;;;;;;;:36;;;;14685:7;14669:32;;14678:5;14669:32;;;14694:6;14669:32;;;;;;:::i;:::-;;;;;;;;14328:381;;;:::o;33363:2624::-;33511:1;33495:18;;:4;:18;;;;33487:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33588:1;33574:16;;:2;:16;;;;33566:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;33654:1;33644:6;:11;33641:92;;;33672:28;33688:4;33694:2;33698:1;33672:15;:28::i;:::-;33715:7;;33641:92;33772:7;:5;:7::i;:::-;33764:15;;:4;:15;;;;:45;;;;;33802:7;:5;:7::i;:::-;33796:13;;:2;:13;;;;33764:45;:78;;;;;33840:1;33826:16;;:2;:16;;;;33764:78;:116;;;;;33873:6;33859:21;;:2;:21;;;;33764:116;:142;;;;;33898:8;;;;;;;;;;;33897:9;33764:142;33746:564;;;33936:13;;;;;;;;;;;33932:140;;33977:19;:25;33997:4;33977:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;34006:19;:23;34026:2;34006:23;;;;;;;;;;;;;;;;;;;;;;;;;33977:52;33969:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;33932:140;34117:25;:31;34143:4;34117:31;;;;;;;;;;;;;;;;;;;;;;;;;:74;;;;;34153:34;:38;34188:2;34153:38;;;;;;;;;;;;;;;;;;;;;;;;;34152:39;34117:74;34113:186;;;34250:9;;34233:13;34243:2;34233:9;:13::i;:::-;34224:6;:22;;;;:::i;:::-;:35;;34216:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34113:186;33746:564;34323:28;34354:24;34372:4;34354:9;:24::i;:::-;34323:55;;34392:12;34431:18;;34407:20;:42;;34392:57;;34481:7;:35;;;;;34505:11;;;;;;;;;;;34481:35;:61;;;;;34534:8;;;;;;;;;;;34533:9;34481:61;:110;;;;;34560:25;:31;34586:4;34560:31;;;;;;;;;;;;;;;;;;;;;;;;;34559:32;34481:110;:153;;;;;34609:19;:25;34629:4;34609:25;;;;;;;;;;;;;;;;;;;;;;;;;34608:26;34481:153;:194;;;;;34652:19;:23;34672:2;34652:23;;;;;;;;;;;;;;;;;;;;;;;;;34651:24;34481:194;34463:328;;;34713:4;34702:8;;:15;;;;;;;;;;;;;;;;;;34735:10;:8;:10::i;:::-;34774:5;34763:8;;:16;;;;;;;;;;;;;;;;;;34463:328;34804:12;34820:8;;;;;;;;;;;34819:9;34804:24;;34841:19;34864:25;:29;34890:2;34864:29;;;;;;;;;;;;;;;;;;;;;;;;;34863:30;:66;;;;;34898:25;:31;34924:4;34898:31;;;;;;;;;;;;;;;;;;;;;;;;;34897:32;34863:66;34841:88;;35028:19;:25;35048:4;35028:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;35057:19;:23;35077:2;35057:23;;;;;;;;;;;;;;;;;;;;;;;;;35028:52;:70;;;;35084:14;35028:70;35025:117;;;35125:5;35115:15;;35025:117;35155:12;35259:7;35256:677;;;35288:25;:31;35314:4;35288:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;35338:1;35323:12;;:16;35288:51;35284:494;;;35357:33;35386:3;35357:24;35368:12;;35357:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;35350:40;;35444:12;;35426:15;;35419:4;:22;;;;:::i;:::-;:37;;;;:::i;:::-;35397:18;;:59;;;;;;;:::i;:::-;;;;;;;;35498:12;;35486:9;;35479:4;:16;;;;:::i;:::-;:31;;;;:::i;:::-;35463:12;;:47;;;;;;;:::i;:::-;;;;;;;;35284:494;;;35542:25;:29;35568:2;35542:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;35591:1;35575:13;;:17;35542:50;35539:239;;;35612:34;35642:3;35612:25;35623:13;;35612:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;35605:41;;35701:13;;35682:16;;35675:4;:23;;;;:::i;:::-;:39;;;;:::i;:::-;35653:18;;:61;;;;;;;:::i;:::-;;;;;;;;35757:13;;35744:10;;35737:4;:17;;;;:::i;:::-;:33;;;;:::i;:::-;35721:12;;:49;;;;;;;:::i;:::-;;;;;;;;35539:239;35284:494;35807:1;35800:4;:8;35797:93;;;35832:42;35848:4;35862;35869;35832:15;:42::i;:::-;35797:93;35917:4;35907:14;;;;;:::i;:::-;;;35256:677;35946:33;35962:4;35968:2;35972:6;35946:15;:33::i;:::-;33476:2511;;;;;33363:2624;;;;:::o;16615:193::-;16701:7;16734:1;16729;:6;;16737:12;16721:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;16761:9;16777:1;16773;:5;;;;:::i;:::-;16761:17;;16799:1;16792:8;;;16615:193;;;;;:::o;12646:575::-;12804:1;12786:20;;:6;:20;;;;12778:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;12888:1;12867:23;;:9;:23;;;;12859:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;12944:47;12965:6;12973:9;12984:6;12944:20;:47::i;:::-;13025:71;13047:6;13025:71;;;;;;;;;;;;;;;;;:9;:17;13035:6;13025:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;13005:9;:17;13015:6;13005:17;;;;;;;;;;;;;;;:91;;;;13130:32;13155:6;13130:9;:20;13140:9;13130:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;13107:9;:20;13117:9;13107:20;;;;;;;;;;;;;;;:55;;;;13195:9;13178:35;;13187:6;13178:35;;;13206:6;13178:35;;;;;;:::i;:::-;;;;;;;;12646:575;;;:::o;37142:1338::-;37181:23;37207:24;37225:4;37207:9;:24::i;:::-;37181:50;;37242:25;37291:12;;37270:18;;:33;;;;:::i;:::-;37242:61;;37314:12;37362:1;37343:15;:20;:46;;;;37388:1;37367:17;:22;37343:46;37340:60;;;37392:7;;;;;37340:60;37455:2;37434:18;;:23;;;;:::i;:::-;37416:15;:41;37413:111;;;37510:2;37489:18;;:23;;;;:::i;:::-;37471:41;;37413:111;37585:23;37670:1;37650:17;37629:18;;37611:15;:36;;;;:::i;:::-;:56;;;;:::i;:::-;:60;;;;:::i;:::-;37585:86;;37682:26;37711:36;37731:15;37711;:19;;:36;;;;:::i;:::-;37682:65;;37761:25;37789:21;37761:49;;37824:36;37841:18;37824:16;:36::i;:::-;37875:18;37896:44;37922:17;37896:21;:25;;:44;;;;:::i;:::-;37875:65;;37954:17;37974:67;38025:15;38007:17;:33;;;;:::i;:::-;37974:28;37989:12;;37974:10;:14;;:28;;;;:::i;:::-;:32;;:67;;;;:::i;:::-;37954:87;;38052:23;38091:9;38078:10;:22;;;;:::i;:::-;38052:48;;38137:1;38116:18;:22;;;;38164:1;38149:12;:16;;;;38202:1;38184:15;:19;:42;;;;;38225:1;38207:15;:19;38184:42;38181:210;;;38242:46;38255:15;38272;38242:12;:46::i;:::-;38308:71;38323:18;38343:15;38360:18;;38308:71;;;;;;;;:::i;:::-;;;;;;;;38181:210;38420:15;;;;;;;;;;;38412:29;;38449:21;38412:63;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38399:76;;;;;37170:1310;;;;;;;;;37142:1338;:::o;17068:473::-;17126:7;17376:1;17371;:6;17367:47;;;17401:1;17394:8;;;;17367:47;17427:9;17443:1;17439;:5;;;;:::i;:::-;17427:17;;17472:1;17467;17463;:5;;;;:::i;:::-;:10;17455:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;17532:1;17525:8;;;17068:473;;;;;:::o;18018:132::-;18076:7;18103:39;18107:1;18110;18103:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;18096:46;;18018:132;;;;:::o;15313:125::-;;;;:::o;16175:136::-;16233:7;16260:43;16264:1;16267;16260:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;16253:50;;16175:136;;;;:::o;35996:597::-;36125:21;36163:1;36149:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36125:40;;36194:4;36176;36181:1;36176:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;36220:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;36210:4;36215:1;36210:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;36256:62;36273:4;36288:15;36306:11;36256:8;:62::i;:::-;36358:15;:66;;;36439:11;36465:1;36509:4;36536;36556:15;36358:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36051:542;35996:597;:::o;36602:531::-;36750:62;36767:4;36782:15;36800:11;36750:8;:62::i;:::-;36856:15;:31;;;36895:9;36928:4;36948:11;36974:1;37017;37068:15;;;;;;;;;;;37099;36856:269;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;36602:531;;:::o;18647:279::-;18733:7;18765:1;18761;:5;18768:12;18753:28;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;18792:9;18808:1;18804;:5;;;;:::i;:::-;18792:17;;18917:1;18910:8;;;18647:279;;;;;:::o;7:77:1:-;44:7;73:5;62:16;;7:77;;;:::o;90:118::-;177:24;195:5;177:24;:::i;:::-;172:3;165:37;90:118;;:::o;214:222::-;307:4;345:2;334:9;330:18;322:26;;358:71;426:1;415:9;411:17;402:6;358:71;:::i;:::-;214:222;;;;:::o;442:99::-;494:6;528:5;522:12;512:22;;442:99;;;:::o;547:169::-;631:11;665:6;660:3;653:19;705:4;700:3;696:14;681:29;;547:169;;;;:::o;722:307::-;790:1;800:113;814:6;811:1;808:13;800:113;;;899:1;894:3;890:11;884:18;880:1;875:3;871:11;864:39;836:2;833:1;829:10;824:15;;800:113;;;931:6;928:1;925:13;922:101;;;1011:1;1002:6;997:3;993:16;986:27;922:101;771:258;722:307;;;:::o;1035:102::-;1076:6;1127:2;1123:7;1118:2;1111:5;1107:14;1103:28;1093:38;;1035:102;;;:::o;1143:364::-;1231:3;1259:39;1292:5;1259:39;:::i;:::-;1314:71;1378:6;1373:3;1314:71;:::i;:::-;1307:78;;1394:52;1439:6;1434:3;1427:4;1420:5;1416:16;1394:52;:::i;:::-;1471:29;1493:6;1471:29;:::i;:::-;1466:3;1462:39;1455:46;;1235:272;1143:364;;;;:::o;1513:313::-;1626:4;1664:2;1653:9;1649:18;1641:26;;1713:9;1707:4;1703:20;1699:1;1688:9;1684:17;1677:47;1741:78;1814:4;1805:6;1741:78;:::i;:::-;1733:86;;1513:313;;;;:::o;1913:117::-;2022:1;2019;2012:12;2159:126;2196:7;2236:42;2229:5;2225:54;2214:65;;2159:126;;;:::o;2291:96::-;2328:7;2357:24;2375:5;2357:24;:::i;:::-;2346:35;;2291:96;;;:::o;2393:122::-;2466:24;2484:5;2466:24;:::i;:::-;2459:5;2456:35;2446:63;;2505:1;2502;2495:12;2446:63;2393:122;:::o;2521:139::-;2567:5;2605:6;2592:20;2583:29;;2621:33;2648:5;2621:33;:::i;:::-;2521:139;;;;:::o;2666:329::-;2725:6;2774:2;2762:9;2753:7;2749:23;2745:32;2742:119;;;2780:79;;:::i;:::-;2742:119;2900:1;2925:53;2970:7;2961:6;2950:9;2946:22;2925:53;:::i;:::-;2915:63;;2871:117;2666:329;;;;:::o;3001:90::-;3035:7;3078:5;3071:13;3064:21;3053:32;;3001:90;;;:::o;3097:109::-;3178:21;3193:5;3178:21;:::i;:::-;3173:3;3166:34;3097:109;;:::o;3212:210::-;3299:4;3337:2;3326:9;3322:18;3314:26;;3350:65;3412:1;3401:9;3397:17;3388:6;3350:65;:::i;:::-;3212:210;;;;:::o;3428:122::-;3501:24;3519:5;3501:24;:::i;:::-;3494:5;3491:35;3481:63;;3540:1;3537;3530:12;3481:63;3428:122;:::o;3556:139::-;3602:5;3640:6;3627:20;3618:29;;3656:33;3683:5;3656:33;:::i;:::-;3556:139;;;;:::o;3701:474::-;3769:6;3777;3826:2;3814:9;3805:7;3801:23;3797:32;3794:119;;;3832:79;;:::i;:::-;3794:119;3952:1;3977:53;4022:7;4013:6;4002:9;3998:22;3977:53;:::i;:::-;3967:63;;3923:117;4079:2;4105:53;4150:7;4141:6;4130:9;4126:22;4105:53;:::i;:::-;4095:63;;4050:118;3701:474;;;;;:::o;4181:60::-;4209:3;4230:5;4223:12;;4181:60;;;:::o;4247:142::-;4297:9;4330:53;4348:34;4357:24;4375:5;4357:24;:::i;:::-;4348:34;:::i;:::-;4330:53;:::i;:::-;4317:66;;4247:142;;;:::o;4395:126::-;4445:9;4478:37;4509:5;4478:37;:::i;:::-;4465:50;;4395:126;;;:::o;4527:153::-;4604:9;4637:37;4668:5;4637:37;:::i;:::-;4624:50;;4527:153;;;:::o;4686:185::-;4800:64;4858:5;4800:64;:::i;:::-;4795:3;4788:77;4686:185;;:::o;4877:276::-;4997:4;5035:2;5024:9;5020:18;5012:26;;5048:98;5143:1;5132:9;5128:17;5119:6;5048:98;:::i;:::-;4877:276;;;;:::o;5159:619::-;5236:6;5244;5252;5301:2;5289:9;5280:7;5276:23;5272:32;5269:119;;;5307:79;;:::i;:::-;5269:119;5427:1;5452:53;5497:7;5488:6;5477:9;5473:22;5452:53;:::i;:::-;5442:63;;5398:117;5554:2;5580:53;5625:7;5616:6;5605:9;5601:22;5580:53;:::i;:::-;5570:63;;5525:118;5682:2;5708:53;5753:7;5744:6;5733:9;5729:22;5708:53;:::i;:::-;5698:63;;5653:118;5159:619;;;;;:::o;5784:86::-;5819:7;5859:4;5852:5;5848:16;5837:27;;5784:86;;;:::o;5876:112::-;5959:22;5975:5;5959:22;:::i;:::-;5954:3;5947:35;5876:112;;:::o;5994:214::-;6083:4;6121:2;6110:9;6106:18;6098:26;;6134:67;6198:1;6187:9;6183:17;6174:6;6134:67;:::i;:::-;5994:214;;;;:::o;6214:118::-;6301:24;6319:5;6301:24;:::i;:::-;6296:3;6289:37;6214:118;;:::o;6338:222::-;6431:4;6469:2;6458:9;6454:18;6446:26;;6482:71;6550:1;6539:9;6535:17;6526:6;6482:71;:::i;:::-;6338:222;;;;:::o;6566:474::-;6634:6;6642;6691:2;6679:9;6670:7;6666:23;6662:32;6659:119;;;6697:79;;:::i;:::-;6659:119;6817:1;6842:53;6887:7;6878:6;6867:9;6863:22;6842:53;:::i;:::-;6832:63;;6788:117;6944:2;6970:53;7015:7;7006:6;6995:9;6991:22;6970:53;:::i;:::-;6960:63;;6915:118;6566:474;;;;;:::o;7046:180::-;7094:77;7091:1;7084:88;7191:4;7188:1;7181:15;7215:4;7212:1;7205:15;7232:320;7276:6;7313:1;7307:4;7303:12;7293:22;;7360:1;7354:4;7350:12;7381:18;7371:81;;7437:4;7429:6;7425:17;7415:27;;7371:81;7499:2;7491:6;7488:14;7468:18;7465:38;7462:84;;;7518:18;;:::i;:::-;7462:84;7283:269;7232:320;;;:::o;7558:182::-;7698:34;7694:1;7686:6;7682:14;7675:58;7558:182;:::o;7746:366::-;7888:3;7909:67;7973:2;7968:3;7909:67;:::i;:::-;7902:74;;7985:93;8074:3;7985:93;:::i;:::-;8103:2;8098:3;8094:12;8087:19;;7746:366;;;:::o;8118:419::-;8284:4;8322:2;8311:9;8307:18;8299:26;;8371:9;8365:4;8361:20;8357:1;8346:9;8342:17;8335:47;8399:131;8525:4;8399:131;:::i;:::-;8391:139;;8118:419;;;:::o;8543:225::-;8683:34;8679:1;8671:6;8667:14;8660:58;8752:8;8747:2;8739:6;8735:15;8728:33;8543:225;:::o;8774:366::-;8916:3;8937:67;9001:2;8996:3;8937:67;:::i;:::-;8930:74;;9013:93;9102:3;9013:93;:::i;:::-;9131:2;9126:3;9122:12;9115:19;;8774:366;;;:::o;9146:419::-;9312:4;9350:2;9339:9;9335:18;9327:26;;9399:9;9393:4;9389:20;9385:1;9374:9;9370:17;9363:47;9427:131;9553:4;9427:131;:::i;:::-;9419:139;;9146:419;;;:::o;9571:180::-;9619:77;9616:1;9609:88;9716:4;9713:1;9706:15;9740:4;9737:1;9730:15;9757:305;9797:3;9816:20;9834:1;9816:20;:::i;:::-;9811:25;;9850:20;9868:1;9850:20;:::i;:::-;9845:25;;10004:1;9936:66;9932:74;9929:1;9926:81;9923:107;;;10010:18;;:::i;:::-;9923:107;10054:1;10051;10047:9;10040:16;;9757:305;;;;:::o;10068:177::-;10208:29;10204:1;10196:6;10192:14;10185:53;10068:177;:::o;10251:366::-;10393:3;10414:67;10478:2;10473:3;10414:67;:::i;:::-;10407:74;;10490:93;10579:3;10490:93;:::i;:::-;10608:2;10603:3;10599:12;10592:19;;10251:366;;;:::o;10623:419::-;10789:4;10827:2;10816:9;10812:18;10804:26;;10876:9;10870:4;10866:20;10862:1;10851:9;10847:17;10840:47;10904:131;11030:4;10904:131;:::i;:::-;10896:139;;10623:419;;;:::o;11048:223::-;11188:34;11184:1;11176:6;11172:14;11165:58;11257:6;11252:2;11244:6;11240:15;11233:31;11048:223;:::o;11277:366::-;11419:3;11440:67;11504:2;11499:3;11440:67;:::i;:::-;11433:74;;11516:93;11605:3;11516:93;:::i;:::-;11634:2;11629:3;11625:12;11618:19;;11277:366;;;:::o;11649:419::-;11815:4;11853:2;11842:9;11838:18;11830:26;;11902:9;11896:4;11892:20;11888:1;11877:9;11873:17;11866:47;11930:131;12056:4;11930:131;:::i;:::-;11922:139;;11649:419;;;:::o;12074:221::-;12214:34;12210:1;12202:6;12198:14;12191:58;12283:4;12278:2;12270:6;12266:15;12259:29;12074:221;:::o;12301:366::-;12443:3;12464:67;12528:2;12523:3;12464:67;:::i;:::-;12457:74;;12540:93;12629:3;12540:93;:::i;:::-;12658:2;12653:3;12649:12;12642:19;;12301:366;;;:::o;12673:419::-;12839:4;12877:2;12866:9;12862:18;12854:26;;12926:9;12920:4;12916:20;12912:1;12901:9;12897:17;12890:47;12954:131;13080:4;12954:131;:::i;:::-;12946:139;;12673:419;;;:::o;13098:224::-;13238:34;13234:1;13226:6;13222:14;13215:58;13307:7;13302:2;13294:6;13290:15;13283:32;13098:224;:::o;13328:366::-;13470:3;13491:67;13555:2;13550:3;13491:67;:::i;:::-;13484:74;;13567:93;13656:3;13567:93;:::i;:::-;13685:2;13680:3;13676:12;13669:19;;13328:366;;;:::o;13700:419::-;13866:4;13904:2;13893:9;13889:18;13881:26;;13953:9;13947:4;13943:20;13939:1;13928:9;13924:17;13917:47;13981:131;14107:4;13981:131;:::i;:::-;13973:139;;13700:419;;;:::o;14125:222::-;14265:34;14261:1;14253:6;14249:14;14242:58;14334:5;14329:2;14321:6;14317:15;14310:30;14125:222;:::o;14353:366::-;14495:3;14516:67;14580:2;14575:3;14516:67;:::i;:::-;14509:74;;14592:93;14681:3;14592:93;:::i;:::-;14710:2;14705:3;14701:12;14694:19;;14353:366;;;:::o;14725:419::-;14891:4;14929:2;14918:9;14914:18;14906:26;;14978:9;14972:4;14968:20;14964:1;14953:9;14949:17;14942:47;15006:131;15132:4;15006:131;:::i;:::-;14998:139;;14725:419;;;:::o;15150:172::-;15290:24;15286:1;15278:6;15274:14;15267:48;15150:172;:::o;15328:366::-;15470:3;15491:67;15555:2;15550:3;15491:67;:::i;:::-;15484:74;;15567:93;15656:3;15567:93;:::i;:::-;15685:2;15680:3;15676:12;15669:19;;15328:366;;;:::o;15700:419::-;15866:4;15904:2;15893:9;15889:18;15881:26;;15953:9;15947:4;15943:20;15939:1;15928:9;15924:17;15917:47;15981:131;16107:4;15981:131;:::i;:::-;15973:139;;15700:419;;;:::o;16125:169::-;16265:21;16261:1;16253:6;16249:14;16242:45;16125:169;:::o;16300:366::-;16442:3;16463:67;16527:2;16522:3;16463:67;:::i;:::-;16456:74;;16539:93;16628:3;16539:93;:::i;:::-;16657:2;16652:3;16648:12;16641:19;;16300:366;;;:::o;16672:419::-;16838:4;16876:2;16865:9;16861:18;16853:26;;16925:9;16919:4;16915:20;16911:1;16900:9;16896:17;16889:47;16953:131;17079:4;16953:131;:::i;:::-;16945:139;;16672:419;;;:::o;17097:348::-;17137:7;17160:20;17178:1;17160:20;:::i;:::-;17155:25;;17194:20;17212:1;17194:20;:::i;:::-;17189:25;;17382:1;17314:66;17310:74;17307:1;17304:81;17299:1;17292:9;17285:17;17281:105;17278:131;;;17389:18;;:::i;:::-;17278:131;17437:1;17434;17430:9;17419:20;;17097:348;;;;:::o;17451:180::-;17499:77;17496:1;17489:88;17596:4;17593:1;17586:15;17620:4;17617:1;17610:15;17637:185;17677:1;17694:20;17712:1;17694:20;:::i;:::-;17689:25;;17728:20;17746:1;17728:20;:::i;:::-;17723:25;;17767:1;17757:35;;17772:18;;:::i;:::-;17757:35;17814:1;17811;17807:9;17802:14;;17637:185;;;;:::o;17828:191::-;17868:4;17888:20;17906:1;17888:20;:::i;:::-;17883:25;;17922:20;17940:1;17922:20;:::i;:::-;17917:25;;17961:1;17958;17955:8;17952:34;;;17966:18;;:::i;:::-;17952:34;18011:1;18008;18004:9;17996:17;;17828:191;;;;:::o;18025:442::-;18174:4;18212:2;18201:9;18197:18;18189:26;;18225:71;18293:1;18282:9;18278:17;18269:6;18225:71;:::i;:::-;18306:72;18374:2;18363:9;18359:18;18350:6;18306:72;:::i;:::-;18388;18456:2;18445:9;18441:18;18432:6;18388:72;:::i;:::-;18025:442;;;;;;:::o;18473:147::-;18574:11;18611:3;18596:18;;18473:147;;;;:::o;18626:114::-;;:::o;18746:398::-;18905:3;18926:83;19007:1;19002:3;18926:83;:::i;:::-;18919:90;;19018:93;19107:3;19018:93;:::i;:::-;19136:1;19131:3;19127:11;19120:18;;18746:398;;;:::o;19150:379::-;19334:3;19356:147;19499:3;19356:147;:::i;:::-;19349:154;;19520:3;19513:10;;19150:379;;;:::o;19535:220::-;19675:34;19671:1;19663:6;19659:14;19652:58;19744:3;19739:2;19731:6;19727:15;19720:28;19535:220;:::o;19761:366::-;19903:3;19924:67;19988:2;19983:3;19924:67;:::i;:::-;19917:74;;20000:93;20089:3;20000:93;:::i;:::-;20118:2;20113:3;20109:12;20102:19;;19761:366;;;:::o;20133:419::-;20299:4;20337:2;20326:9;20322:18;20314:26;;20386:9;20380:4;20376:20;20372:1;20361:9;20357:17;20350:47;20414:131;20540:4;20414:131;:::i;:::-;20406:139;;20133:419;;;:::o;20558:180::-;20606:77;20603:1;20596:88;20703:4;20700:1;20693:15;20727:4;20724:1;20717:15;20744:180;20792:77;20789:1;20782:88;20889:4;20886:1;20879:15;20913:4;20910:1;20903:15;20930:143;20987:5;21018:6;21012:13;21003:22;;21034:33;21061:5;21034:33;:::i;:::-;20930:143;;;;:::o;21079:351::-;21149:6;21198:2;21186:9;21177:7;21173:23;21169:32;21166:119;;;21204:79;;:::i;:::-;21166:119;21324:1;21349:64;21405:7;21396:6;21385:9;21381:22;21349:64;:::i;:::-;21339:74;;21295:128;21079:351;;;;:::o;21436:85::-;21481:7;21510:5;21499:16;;21436:85;;;:::o;21527:158::-;21585:9;21618:61;21636:42;21645:32;21671:5;21645:32;:::i;:::-;21636:42;:::i;:::-;21618:61;:::i;:::-;21605:74;;21527:158;;;:::o;21691:147::-;21786:45;21825:5;21786:45;:::i;:::-;21781:3;21774:58;21691:147;;:::o;21844:114::-;21911:6;21945:5;21939:12;21929:22;;21844:114;;;:::o;21964:184::-;22063:11;22097:6;22092:3;22085:19;22137:4;22132:3;22128:14;22113:29;;21964:184;;;;:::o;22154:132::-;22221:4;22244:3;22236:11;;22274:4;22269:3;22265:14;22257:22;;22154:132;;;:::o;22292:108::-;22369:24;22387:5;22369:24;:::i;:::-;22364:3;22357:37;22292:108;;:::o;22406:179::-;22475:10;22496:46;22538:3;22530:6;22496:46;:::i;:::-;22574:4;22569:3;22565:14;22551:28;;22406:179;;;;:::o;22591:113::-;22661:4;22693;22688:3;22684:14;22676:22;;22591:113;;;:::o;22740:732::-;22859:3;22888:54;22936:5;22888:54;:::i;:::-;22958:86;23037:6;23032:3;22958:86;:::i;:::-;22951:93;;23068:56;23118:5;23068:56;:::i;:::-;23147:7;23178:1;23163:284;23188:6;23185:1;23182:13;23163:284;;;23264:6;23258:13;23291:63;23350:3;23335:13;23291:63;:::i;:::-;23284:70;;23377:60;23430:6;23377:60;:::i;:::-;23367:70;;23223:224;23210:1;23207;23203:9;23198:14;;23163:284;;;23167:14;23463:3;23456:10;;22864:608;;;22740:732;;;;:::o;23478:831::-;23741:4;23779:3;23768:9;23764:19;23756:27;;23793:71;23861:1;23850:9;23846:17;23837:6;23793:71;:::i;:::-;23874:80;23950:2;23939:9;23935:18;23926:6;23874:80;:::i;:::-;24001:9;23995:4;23991:20;23986:2;23975:9;23971:18;23964:48;24029:108;24132:4;24123:6;24029:108;:::i;:::-;24021:116;;24147:72;24215:2;24204:9;24200:18;24191:6;24147:72;:::i;:::-;24229:73;24297:3;24286:9;24282:19;24273:6;24229:73;:::i;:::-;23478:831;;;;;;;;:::o;24315:807::-;24564:4;24602:3;24591:9;24587:19;24579:27;;24616:71;24684:1;24673:9;24669:17;24660:6;24616:71;:::i;:::-;24697:72;24765:2;24754:9;24750:18;24741:6;24697:72;:::i;:::-;24779:80;24855:2;24844:9;24840:18;24831:6;24779:80;:::i;:::-;24869;24945:2;24934:9;24930:18;24921:6;24869:80;:::i;:::-;24959:73;25027:3;25016:9;25012:19;25003:6;24959:73;:::i;:::-;25042;25110:3;25099:9;25095:19;25086:6;25042:73;:::i;:::-;24315:807;;;;;;;;;:::o;25128:143::-;25185:5;25216:6;25210:13;25201:22;;25232:33;25259:5;25232:33;:::i;:::-;25128:143;;;;:::o;25277:663::-;25365:6;25373;25381;25430:2;25418:9;25409:7;25405:23;25401:32;25398:119;;;25436:79;;:::i;:::-;25398:119;25556:1;25581:64;25637:7;25628:6;25617:9;25613:22;25581:64;:::i;:::-;25571:74;;25527:128;25694:2;25720:64;25776:7;25767:6;25756:9;25752:22;25720:64;:::i;:::-;25710:74;;25665:129;25833:2;25859:64;25915:7;25906:6;25895:9;25891:22;25859:64;:::i;:::-;25849:74;;25804:129;25277:663;;;;;:::o

Swarm Source

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