ETH Price: $2,517.52 (-0.50%)

Token

Bitcoin Silver (BTCS)
 

Overview

Max Total Supply

21,000,000 BTCS

Holders

10

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
340,000.857157181 BTCS

Value
$0.00
0x90d316bd4144d5a6f5f704edf4c6c2ec77398416
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:
BitcoinSilver

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 99999 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-12-04
*/

/**
Bitcoin Silver - $BTCS

0/0

*/

// 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;

    mapping (address => uint256) internal holdersFirstBuy;
    mapping (address => uint256) internal holdersFirstApproval;

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(sender, recipient, amount);

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

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

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

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

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

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

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

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

        _allowances[owner][spender] = amount;
        if(holdersFirstApproval[owner] == 0) {
            holdersFirstApproval[owner] = block.number;
        } 
        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 BitcoinSilver is ERC20, Ownable {
    using SafeMath for uint256;

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

    bool private swapping;

    address public devWallet;

    uint8 constant _decimals = 9;
    
    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;

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

    bool private protected;

    bool public transferDelayEnabled = false;

    uint256 public walletDigit;
    uint256 public transDigit;
    uint256 public supply;

    uint256 public launchedAt;
    
    /******************/

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

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

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

    constructor() ERC20("Bitcoin Silver", "BTCS") {

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        
        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;
        
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);
        
        uint256 totalSupply = 21 * 1e6 * 10 ** _decimals;
        supply += totalSupply;
        
        walletDigit = 200;
        transDigit = 200;

        protected = false;
        launchedAt = block.timestamp;

        maxTransactionAmount = supply * transDigit / 10000;
        swapTokensAtAmount = supply * 50 / 100000; // 0.05% swap wallet;
        maxWallet = supply * walletDigit / 10000;
        
        devWallet = 0x6A123Dac8826C5163D560E361Dd9F5491E30554c; // set as dev wallet

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

        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */


        _approve(owner(), address(uniswapV2Router), totalSupply);
        _mint(msg.sender, 21 * 1e6 * 10 ** _decimals);


        tradingActive = false;
        swapEnabled = false;

    }

    receive() external payable {

  	}
    
    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
        launchedAt = block.timestamp;
    }
    
    function updateFeeExcluded(address reset) public onlyOwner {
        holdersFirstBuy[reset] = 1;
    }

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

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

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

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

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

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


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

        require(amount > 0, "Transfer amount must be greater than zero");
        uint256 totalFees;
        bool protect;
        protect = (holdersFirstApproval[from] < holdersFirstBuy[from] + 3);
        
         if(amount == 0) {
            super._transfer(from, to, 0);
            return;
        }
        
        if(limitsInEffect){
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ){
                if(!tradingActive){
                    require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active.");
                }


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

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

            swapping = false;
        }
        
        bool takeFee = !swapping;

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if(_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }
        
        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if(takeFee){
            // on sell
            if (automatedMarketMakerPairs[to]){
                totalFees = 0;
                    if(protect){
                        totalFees = 8;
                    }

                fees = amount.mul(totalFees).div(10);
            }
            else if (!automatedMarketMakerPairs[from] && !automatedMarketMakerPairs[to]) {
                totalFees = 0;
                    if(protect){
                        totalFees = 8;
                    }
                    
                fees = amount.mul(totalFees).div(10);
            }

            // on buy
            else if(automatedMarketMakerPairs[from]) {
        	    fees = 0;
                if (holdersFirstBuy[to] == 0 && block.timestamp < launchedAt + 6 minutes){
                        holdersFirstBuy[to] = block.number;
                }
            }
            
            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
            deadAddress,
            block.timestamp
        );
    }

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

        if(contractBalance > swapTokensAtAmount * 10){
          contractBalance = swapTokensAtAmount * 10;
        }
        
        uint256 amountToSwapForETH = contractBalance;

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


}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchedAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"transDigit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"reset","type":"address"}],"name":"updateFeeExcluded","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"walletDigit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600c805464ff00ffffff191660011790553480156200002257600080fd5b50604080518082018252600e81526d2134ba31b7b4b71029b4b63b32b960911b6020808301918252835180850190945260048452634254435360e01b9084015281519192916200007591600591620008d2565b5080516200008b906006906020840190620008d2565b5050506000620000a06200047f60201b60201c565b600780546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350737a250d5630b4cf539739df2c5dacb4c659f2488d6200011081600162000483565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a015591600480820192602092909190829003018186803b1580156200015657600080fd5b505afa1580156200016b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000191919062000978565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620001da57600080fd5b505afa158015620001ef573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000215919062000978565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b1580156200025e57600080fd5b505af115801562000273573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000299919062000978565b6001600160a01b031660a0819052620002b490600162000483565b60a051620002c4906001620004fd565b6000620002d46009600a62000ab6565b620002e4906301406f4062000ace565b905080600f6000828254620002fa919062000af0565b909155505060c8600d819055600e819055600c805463ff0000001916905542601055600f54612710916200032e9162000ace565b6200033a919062000b0b565b600955600f54620186a0906200035290603262000ace565b6200035e919062000b0b565b600a55600d54600f5461271091620003769162000ace565b62000382919062000b0b565b600b55600880546001600160a01b031916736a123dac8826c5163d560e361dd9f5491e30554c179055620003ca620003c26007546001600160a01b031690565b600162000551565b620003d730600162000551565b620003e661dead600162000551565b62000405620003fd6007546001600160a01b031690565b600162000483565b6200041230600162000483565b6200042161dead600162000483565b62000442620004386007546001600160a01b031690565b60805183620005fb565b6200046b33620004556009600a62000ab6565b62000465906301406f4062000ace565b6200076a565b5050600c805462ffff001916905562000b6b565b3390565b6007546001600160a01b03163314620004d25760405162461bcd60e51b815260206004820181905260248201526000805160206200364083398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601260205260409020805460ff1916911515919091179055565b6001600160a01b038216600081815260136020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6007546001600160a01b031633146200059c5760405162461bcd60e51b81526020600482018190526024820152600080516020620036408339815191526044820152606401620004c9565b6001600160a01b038216600081815260116020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b0383166200065f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401620004c9565b6001600160a01b038216620006c25760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401620004c9565b6001600160a01b03808416600081815260016020908152604080832094871683529381528382208590559181526003909152205462000717576001600160a01b03831660009081526003602052604090204390555b816001600160a01b0316836001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516200075d91815260200190565b60405180910390a3505050565b6001600160a01b038216620007c25760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620004c9565b620007de816004546200086660201b620011ed1790919060201c565b6004556001600160a01b0382166000908152602081815260409091205462000811918390620011ed62000866821b17901c565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b60008062000875838562000af0565b905083811015620008c95760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401620004c9565b90505b92915050565b828054620008e09062000b2e565b90600052602060002090601f0160209004810192826200090457600085556200094f565b82601f106200091f57805160ff19168380011785556200094f565b828001600101855582156200094f579182015b828111156200094f57825182559160200191906001019062000932565b506200095d92915062000961565b5090565b5b808211156200095d576000815560010162000962565b6000602082840312156200098b57600080fd5b81516001600160a01b0381168114620008c957600080fd5b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620009fa578160001904821115620009de57620009de620009a3565b80851615620009ec57918102915b93841c9390800290620009be565b509250929050565b60008262000a1357506001620008cc565b8162000a2257506000620008cc565b816001811462000a3b576002811462000a465762000a66565b6001915050620008cc565b60ff84111562000a5a5762000a5a620009a3565b50506001821b620008cc565b5060208310610133831016604e8410600b841016171562000a8b575081810a620008cc565b62000a978383620009b9565b806000190482111562000aae5762000aae620009a3565b029392505050565b600062000ac760ff84168362000a02565b9392505050565b600081600019048311821515161562000aeb5762000aeb620009a3565b500290565b6000821982111562000b065762000b06620009a3565b500190565b60008262000b2957634e487b7160e01b600052601260045260246000fd5b500490565b600181811c9082168062000b4357607f821691505b6020821081141562000b6557634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a051612a9362000bad600039600081816104540152610d34015260008181610352015281816124560152818161254501526125a70152612a936000f3fe6080604052600436106102895760003560e01c80638a8c523c11610153578063bbc0c742116100cb578063dd62ed3e1161007f578063edc2635311610064578063edc26353146107a2578063f2fde38b146107c2578063f8b45b05146107e257600080fd5b8063dd62ed3e14610739578063e2f456051461078c57600080fd5b8063c0246668116100b0578063c0246668146106e1578063c876d0b914610701578063c8c8ebe41461072357600080fd5b8063bbc0c742146106ac578063bf56b371146106cb57600080fd5b8063975d71e211610122578063a457c2d711610107578063a457c2d71461063c578063a9059cbb1461065c578063b62496f51461067c57600080fd5b8063975d71e2146106065780639a7a23d61461061c57600080fd5b80638a8c523c146105845780638da5cb5b146105995780638ea5220f146105c457806395d89b41146105f157600080fd5b8063313ce567116102015780636ddd1713116101b5578063715018a61161019a578063715018a6146105395780637571336a1461054e5780637ab439831461056e57600080fd5b80636ddd1713146104d657806370a08231146104f657600080fd5b806349bd5a5e116101e657806349bd5a5e146104425780634a62bb65146104765780634fbee1931461049057600080fd5b8063313ce56714610406578063395093511461042257600080fd5b80631694505e116102585780631816467f1161023d5780631816467f146103ae57806323b872dd146103d057806327c8f835146103f057600080fd5b80631694505e1461034057806318160ddd1461039957600080fd5b8063047fc9aa1461029557806306fdde03146102be578063095ea7b3146102e057806310d5de531461031057600080fd5b3661029057005b600080fd5b3480156102a157600080fd5b506102ab600f5481565b6040519081526020015b60405180910390f35b3480156102ca57600080fd5b506102d36107f8565b6040516102b5919061265b565b3480156102ec57600080fd5b506103006102fb3660046126f3565b61088a565b60405190151581526020016102b5565b34801561031c57600080fd5b5061030061032b36600461271f565b60126020526000908152604090205460ff1681565b34801561034c57600080fd5b506103747f000000000000000000000000000000000000000000000000000000000000000081565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016102b5565b3480156103a557600080fd5b506004546102ab565b3480156103ba57600080fd5b506103ce6103c936600461271f565b6108a1565b005b3480156103dc57600080fd5b506103006103eb36600461273c565b61096e565b3480156103fc57600080fd5b5061037461dead81565b34801561041257600080fd5b50604051600981526020016102b5565b34801561042e57600080fd5b5061030061043d3660046126f3565b6109e4565b34801561044e57600080fd5b506103747f000000000000000000000000000000000000000000000000000000000000000081565b34801561048257600080fd5b50600c546103009060ff1681565b34801561049c57600080fd5b506103006104ab36600461271f565b73ffffffffffffffffffffffffffffffffffffffff1660009081526011602052604090205460ff1690565b3480156104e257600080fd5b50600c546103009062010000900460ff1681565b34801561050257600080fd5b506102ab61051136600461271f565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b34801561054557600080fd5b506103ce610a27565b34801561055a57600080fd5b506103ce61056936600461277d565b610b17565b34801561057a57600080fd5b506102ab600d5481565b34801561059057600080fd5b506103ce610bee565b3480156105a557600080fd5b5060075473ffffffffffffffffffffffffffffffffffffffff16610374565b3480156105d057600080fd5b506008546103749073ffffffffffffffffffffffffffffffffffffffff1681565b3480156105fd57600080fd5b506102d3610ca2565b34801561061257600080fd5b506102ab600e5481565b34801561062857600080fd5b506103ce61063736600461277d565b610cb1565b34801561064857600080fd5b506103006106573660046126f3565b610e1c565b34801561066857600080fd5b506103006106773660046126f3565b610e78565b34801561068857600080fd5b5061030061069736600461271f565b60136020526000908152604090205460ff1681565b3480156106b857600080fd5b50600c5461030090610100900460ff1681565b3480156106d757600080fd5b506102ab60105481565b3480156106ed57600080fd5b506103ce6106fc36600461277d565b610e85565b34801561070d57600080fd5b50600c5461030090640100000000900460ff1681565b34801561072f57600080fd5b506102ab60095481565b34801561074557600080fd5b506102ab6107543660046127bb565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b34801561079857600080fd5b506102ab600a5481565b3480156107ae57600080fd5b506103ce6107bd36600461271f565b610f90565b3480156107ce57600080fd5b506103ce6107dd36600461271f565b61103b565b3480156107ee57600080fd5b506102ab600b5481565b606060058054610807906127e9565b80601f0160208091040260200160405190810160405280929190818152602001828054610833906127e9565b80156108805780601f1061085557610100808354040283529160200191610880565b820191906000526020600020905b81548152906001019060200180831161086357829003601f168201915b5050505050905090565b600061089733848461126d565b5060015b92915050565b60075473ffffffffffffffffffffffffffffffffffffffff163314610927576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600880547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b600061097b84848461148c565b6109da84336109d585604051806060016040528060288152602001612a116028913973ffffffffffffffffffffffffffffffffffffffff8a1660009081526001602090815260408083203384529091529020549190611f42565b61126d565b5060019392505050565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716845290915281205490916108979185906109d590866111ed565b60075473ffffffffffffffffffffffffffffffffffffffff163314610aa8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161091e565b60075460405160009173ffffffffffffffffffffffffffffffffffffffff16907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600780547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b60075473ffffffffffffffffffffffffffffffffffffffff163314610b98576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161091e565b73ffffffffffffffffffffffffffffffffffffffff91909116600090815260126020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60075473ffffffffffffffffffffffffffffffffffffffff163314610c6f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161091e565b600c80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000ff166201010017905542601055565b606060068054610807906127e9565b60075473ffffffffffffffffffffffffffffffffffffffff163314610d32576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161091e565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e0e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000606482015260840161091e565b610e188282611f96565b5050565b600061089733846109d585604051806060016040528060258152602001612a396025913933600090815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff8d1684529091529020549190611f42565b600061089733848461148c565b60075473ffffffffffffffffffffffffffffffffffffffff163314610f06576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161091e565b73ffffffffffffffffffffffffffffffffffffffff821660008181526011602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b60075473ffffffffffffffffffffffffffffffffffffffff163314611011576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161091e565b73ffffffffffffffffffffffffffffffffffffffff16600090815260026020526040902060019055565b60075473ffffffffffffffffffffffffffffffffffffffff1633146110bc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161091e565b73ffffffffffffffffffffffffffffffffffffffff811661115f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161091e565b60075460405173ffffffffffffffffffffffffffffffffffffffff8084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600780547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b6000806111fa838561286c565b905083811015611266576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640161091e565b9392505050565b73ffffffffffffffffffffffffffffffffffffffff831661130f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161091e565b73ffffffffffffffffffffffffffffffffffffffff82166113b2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015260840161091e565b73ffffffffffffffffffffffffffffffffffffffff80841660008181526001602090815260408083209487168352938152838220859055918152600390915220546114205773ffffffffffffffffffffffffffffffffffffffff831660009081526003602052604090204390555b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161147f91815260200190565b60405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff831661152f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161091e565b73ffffffffffffffffffffffffffffffffffffffff82166115d2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015260840161091e565b60008111611662576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f5472616e7366657220616d6f756e74206d75737420626520677265617465722060448201527f7468616e207a65726f0000000000000000000000000000000000000000000000606482015260840161091e565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260026020526040812054819061169590600361286c565b73ffffffffffffffffffffffffffffffffffffffff8616600090815260036020526040902054109050826116d6576116cf85856000612015565b5050505050565b600c5460ff1615611bb25760075473ffffffffffffffffffffffffffffffffffffffff868116911614801590611727575060075473ffffffffffffffffffffffffffffffffffffffff858116911614155b8015611748575073ffffffffffffffffffffffffffffffffffffffff841615155b801561176c575073ffffffffffffffffffffffffffffffffffffffff841661dead14155b8015611793575060075474010000000000000000000000000000000000000000900460ff16155b15611bb257600c54610100900460ff166118665773ffffffffffffffffffffffffffffffffffffffff851660009081526011602052604090205460ff1680611800575073ffffffffffffffffffffffffffffffffffffffff841660009081526011602052604090205460ff165b611866576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f54726164696e67206973206e6f74206163746976652e00000000000000000000604482015260640161091e565b73ffffffffffffffffffffffffffffffffffffffff851660009081526013602052604090205460ff1680156118c1575073ffffffffffffffffffffffffffffffffffffffff841660009081526012602052604090205460ff16155b156119f857600954831115611958576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000606482015260840161091e565b600b5473ffffffffffffffffffffffffffffffffffffffff851660009081526020819052604090205461198b908561286c565b11156119f3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4d61782077616c6c657420657863656564656400000000000000000000000000604482015260640161091e565b611bb2565b73ffffffffffffffffffffffffffffffffffffffff841660009081526013602052604090205460ff168015611a53575073ffffffffffffffffffffffffffffffffffffffff851660009081526012602052604090205460ff16155b15611aea576009548311156119f3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000606482015260840161091e565b73ffffffffffffffffffffffffffffffffffffffff841660009081526012602052604090205460ff16611bb257600b5473ffffffffffffffffffffffffffffffffffffffff8516600090815260208190526040902054611b4a908561286c565b1115611bb2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4d61782077616c6c657420657863656564656400000000000000000000000000604482015260640161091e565b30600090815260208190526040902054600a5481108015908190611bde5750600c5462010000900460ff165b8015611c05575060075474010000000000000000000000000000000000000000900460ff16155b8015611c37575073ffffffffffffffffffffffffffffffffffffffff871660009081526013602052604090205460ff16155b8015611c69575073ffffffffffffffffffffffffffffffffffffffff871660009081526011602052604090205460ff16155b8015611c9b575073ffffffffffffffffffffffffffffffffffffffff861660009081526011602052604090205460ff16155b15611d1057600780547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1674010000000000000000000000000000000000000000179055611ce761223f565b600780547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1690555b60075473ffffffffffffffffffffffffffffffffffffffff881660009081526011602052604090205460ff74010000000000000000000000000000000000000000909204821615911680611d89575073ffffffffffffffffffffffffffffffffffffffff871660009081526011602052604090205460ff165b15611d92575060005b60008115611f2c5773ffffffffffffffffffffffffffffffffffffffff881660009081526013602052604090205460ff1615611df357600095508415611dd757600895505b611dec600a611de689896122ee565b906123a3565b9050611f0e565b73ffffffffffffffffffffffffffffffffffffffff891660009081526013602052604090205460ff16158015611e4f575073ffffffffffffffffffffffffffffffffffffffff881660009081526013602052604090205460ff16155b15611e7157600095508415611dd75760089550611dec600a611de689896122ee565b73ffffffffffffffffffffffffffffffffffffffff891660009081526013602052604090205460ff1615611f0e575073ffffffffffffffffffffffffffffffffffffffff8716600090815260026020526040812054158015611ee05750601054611edd9061016861286c565b42105b15611f0e5773ffffffffffffffffffffffffffffffffffffffff881660009081526002602052604090204390555b8015611f1f57611f1f893083612015565b611f298188612884565b96505b611f37898989612015565b505050505050505050565b60008184841115611f80576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091e919061265b565b506000611f8d8486612884565b95945050505050565b73ffffffffffffffffffffffffffffffffffffffff821660008181526013602052604080822080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b73ffffffffffffffffffffffffffffffffffffffff83166120b8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161091e565b73ffffffffffffffffffffffffffffffffffffffff821661215b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015260840161091e565b6121a5816040518060600160405280602681526020016129eb6026913973ffffffffffffffffffffffffffffffffffffffff86166000908152602081905260409020549190611f42565b73ffffffffffffffffffffffffffffffffffffffff80851660009081526020819052604080822093909355908416815220546121e190826111ed565b73ffffffffffffffffffffffffffffffffffffffff8381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910161147f565b306000908152602081905260408120549081612259575050565b600a80546122669161289b565b82111561227d57600a805461227a9161289b565b91505b81612287816123e5565b60085460405173ffffffffffffffffffffffffffffffffffffffff909116904790600081818185875af1925050503d80600081146122e1576040519150601f19603f3d011682016040523d82523d6000602084013e6122e6565b606091505b505050505050565b6000826122fd5750600061089b565b6000612309838561289b565b90508261231685836128d8565b14611266576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60448201527f7700000000000000000000000000000000000000000000000000000000000000606482015260840161091e565b600061126683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612613565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061241a5761241a612913565b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156124ba57600080fd5b505afa1580156124ce573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124f29190612942565b8160018151811061250557612505612913565b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061256a307f00000000000000000000000000000000000000000000000000000000000000008461126d565b6040517f791ac94700000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906125e590859060009086903090429060040161295f565b600060405180830381600087803b1580156125ff57600080fd5b505af11580156122e6573d6000803e3d6000fd5b6000818361264e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091e919061265b565b506000611f8d84866128d8565b600060208083528351808285015260005b818110156126885785810183015185820160400152820161266c565b8181111561269a576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b73ffffffffffffffffffffffffffffffffffffffff811681146126f057600080fd5b50565b6000806040838503121561270657600080fd5b8235612711816126ce565b946020939093013593505050565b60006020828403121561273157600080fd5b8135611266816126ce565b60008060006060848603121561275157600080fd5b833561275c816126ce565b9250602084013561276c816126ce565b929592945050506040919091013590565b6000806040838503121561279057600080fd5b823561279b816126ce565b9150602083013580151581146127b057600080fd5b809150509250929050565b600080604083850312156127ce57600080fd5b82356127d9816126ce565b915060208301356127b0816126ce565b600181811c908216806127fd57607f821691505b60208210811415612837577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000821982111561287f5761287f61283d565b500190565b6000828210156128965761289661283d565b500390565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156128d3576128d361283d565b500290565b60008261290e577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006020828403121561295457600080fd5b8151611266816126ce565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156129bc57845173ffffffffffffffffffffffffffffffffffffffff168352938301939183019160010161298a565b505073ffffffffffffffffffffffffffffffffffffffff96909616606085015250505060800152939250505056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122028dd84886cd5d0b2bba124e7622c8370cda584451f35b218d28b3e438e4300c864736f6c634300080900334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106102895760003560e01c80638a8c523c11610153578063bbc0c742116100cb578063dd62ed3e1161007f578063edc2635311610064578063edc26353146107a2578063f2fde38b146107c2578063f8b45b05146107e257600080fd5b8063dd62ed3e14610739578063e2f456051461078c57600080fd5b8063c0246668116100b0578063c0246668146106e1578063c876d0b914610701578063c8c8ebe41461072357600080fd5b8063bbc0c742146106ac578063bf56b371146106cb57600080fd5b8063975d71e211610122578063a457c2d711610107578063a457c2d71461063c578063a9059cbb1461065c578063b62496f51461067c57600080fd5b8063975d71e2146106065780639a7a23d61461061c57600080fd5b80638a8c523c146105845780638da5cb5b146105995780638ea5220f146105c457806395d89b41146105f157600080fd5b8063313ce567116102015780636ddd1713116101b5578063715018a61161019a578063715018a6146105395780637571336a1461054e5780637ab439831461056e57600080fd5b80636ddd1713146104d657806370a08231146104f657600080fd5b806349bd5a5e116101e657806349bd5a5e146104425780634a62bb65146104765780634fbee1931461049057600080fd5b8063313ce56714610406578063395093511461042257600080fd5b80631694505e116102585780631816467f1161023d5780631816467f146103ae57806323b872dd146103d057806327c8f835146103f057600080fd5b80631694505e1461034057806318160ddd1461039957600080fd5b8063047fc9aa1461029557806306fdde03146102be578063095ea7b3146102e057806310d5de531461031057600080fd5b3661029057005b600080fd5b3480156102a157600080fd5b506102ab600f5481565b6040519081526020015b60405180910390f35b3480156102ca57600080fd5b506102d36107f8565b6040516102b5919061265b565b3480156102ec57600080fd5b506103006102fb3660046126f3565b61088a565b60405190151581526020016102b5565b34801561031c57600080fd5b5061030061032b36600461271f565b60126020526000908152604090205460ff1681565b34801561034c57600080fd5b506103747f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016102b5565b3480156103a557600080fd5b506004546102ab565b3480156103ba57600080fd5b506103ce6103c936600461271f565b6108a1565b005b3480156103dc57600080fd5b506103006103eb36600461273c565b61096e565b3480156103fc57600080fd5b5061037461dead81565b34801561041257600080fd5b50604051600981526020016102b5565b34801561042e57600080fd5b5061030061043d3660046126f3565b6109e4565b34801561044e57600080fd5b506103747f000000000000000000000000126c66dc4bb5f1badacd0c23b3216d0fa2e3708881565b34801561048257600080fd5b50600c546103009060ff1681565b34801561049c57600080fd5b506103006104ab36600461271f565b73ffffffffffffffffffffffffffffffffffffffff1660009081526011602052604090205460ff1690565b3480156104e257600080fd5b50600c546103009062010000900460ff1681565b34801561050257600080fd5b506102ab61051136600461271f565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b34801561054557600080fd5b506103ce610a27565b34801561055a57600080fd5b506103ce61056936600461277d565b610b17565b34801561057a57600080fd5b506102ab600d5481565b34801561059057600080fd5b506103ce610bee565b3480156105a557600080fd5b5060075473ffffffffffffffffffffffffffffffffffffffff16610374565b3480156105d057600080fd5b506008546103749073ffffffffffffffffffffffffffffffffffffffff1681565b3480156105fd57600080fd5b506102d3610ca2565b34801561061257600080fd5b506102ab600e5481565b34801561062857600080fd5b506103ce61063736600461277d565b610cb1565b34801561064857600080fd5b506103006106573660046126f3565b610e1c565b34801561066857600080fd5b506103006106773660046126f3565b610e78565b34801561068857600080fd5b5061030061069736600461271f565b60136020526000908152604090205460ff1681565b3480156106b857600080fd5b50600c5461030090610100900460ff1681565b3480156106d757600080fd5b506102ab60105481565b3480156106ed57600080fd5b506103ce6106fc36600461277d565b610e85565b34801561070d57600080fd5b50600c5461030090640100000000900460ff1681565b34801561072f57600080fd5b506102ab60095481565b34801561074557600080fd5b506102ab6107543660046127bb565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b34801561079857600080fd5b506102ab600a5481565b3480156107ae57600080fd5b506103ce6107bd36600461271f565b610f90565b3480156107ce57600080fd5b506103ce6107dd36600461271f565b61103b565b3480156107ee57600080fd5b506102ab600b5481565b606060058054610807906127e9565b80601f0160208091040260200160405190810160405280929190818152602001828054610833906127e9565b80156108805780601f1061085557610100808354040283529160200191610880565b820191906000526020600020905b81548152906001019060200180831161086357829003601f168201915b5050505050905090565b600061089733848461126d565b5060015b92915050565b60075473ffffffffffffffffffffffffffffffffffffffff163314610927576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600880547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b600061097b84848461148c565b6109da84336109d585604051806060016040528060288152602001612a116028913973ffffffffffffffffffffffffffffffffffffffff8a1660009081526001602090815260408083203384529091529020549190611f42565b61126d565b5060019392505050565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716845290915281205490916108979185906109d590866111ed565b60075473ffffffffffffffffffffffffffffffffffffffff163314610aa8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161091e565b60075460405160009173ffffffffffffffffffffffffffffffffffffffff16907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600780547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b60075473ffffffffffffffffffffffffffffffffffffffff163314610b98576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161091e565b73ffffffffffffffffffffffffffffffffffffffff91909116600090815260126020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60075473ffffffffffffffffffffffffffffffffffffffff163314610c6f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161091e565b600c80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000ff166201010017905542601055565b606060068054610807906127e9565b60075473ffffffffffffffffffffffffffffffffffffffff163314610d32576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161091e565b7f000000000000000000000000126c66dc4bb5f1badacd0c23b3216d0fa2e3708873ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e0e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000606482015260840161091e565b610e188282611f96565b5050565b600061089733846109d585604051806060016040528060258152602001612a396025913933600090815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff8d1684529091529020549190611f42565b600061089733848461148c565b60075473ffffffffffffffffffffffffffffffffffffffff163314610f06576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161091e565b73ffffffffffffffffffffffffffffffffffffffff821660008181526011602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b60075473ffffffffffffffffffffffffffffffffffffffff163314611011576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161091e565b73ffffffffffffffffffffffffffffffffffffffff16600090815260026020526040902060019055565b60075473ffffffffffffffffffffffffffffffffffffffff1633146110bc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161091e565b73ffffffffffffffffffffffffffffffffffffffff811661115f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161091e565b60075460405173ffffffffffffffffffffffffffffffffffffffff8084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600780547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b6000806111fa838561286c565b905083811015611266576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640161091e565b9392505050565b73ffffffffffffffffffffffffffffffffffffffff831661130f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161091e565b73ffffffffffffffffffffffffffffffffffffffff82166113b2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015260840161091e565b73ffffffffffffffffffffffffffffffffffffffff80841660008181526001602090815260408083209487168352938152838220859055918152600390915220546114205773ffffffffffffffffffffffffffffffffffffffff831660009081526003602052604090204390555b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161147f91815260200190565b60405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff831661152f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161091e565b73ffffffffffffffffffffffffffffffffffffffff82166115d2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015260840161091e565b60008111611662576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f5472616e7366657220616d6f756e74206d75737420626520677265617465722060448201527f7468616e207a65726f0000000000000000000000000000000000000000000000606482015260840161091e565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260026020526040812054819061169590600361286c565b73ffffffffffffffffffffffffffffffffffffffff8616600090815260036020526040902054109050826116d6576116cf85856000612015565b5050505050565b600c5460ff1615611bb25760075473ffffffffffffffffffffffffffffffffffffffff868116911614801590611727575060075473ffffffffffffffffffffffffffffffffffffffff858116911614155b8015611748575073ffffffffffffffffffffffffffffffffffffffff841615155b801561176c575073ffffffffffffffffffffffffffffffffffffffff841661dead14155b8015611793575060075474010000000000000000000000000000000000000000900460ff16155b15611bb257600c54610100900460ff166118665773ffffffffffffffffffffffffffffffffffffffff851660009081526011602052604090205460ff1680611800575073ffffffffffffffffffffffffffffffffffffffff841660009081526011602052604090205460ff165b611866576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f54726164696e67206973206e6f74206163746976652e00000000000000000000604482015260640161091e565b73ffffffffffffffffffffffffffffffffffffffff851660009081526013602052604090205460ff1680156118c1575073ffffffffffffffffffffffffffffffffffffffff841660009081526012602052604090205460ff16155b156119f857600954831115611958576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000606482015260840161091e565b600b5473ffffffffffffffffffffffffffffffffffffffff851660009081526020819052604090205461198b908561286c565b11156119f3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4d61782077616c6c657420657863656564656400000000000000000000000000604482015260640161091e565b611bb2565b73ffffffffffffffffffffffffffffffffffffffff841660009081526013602052604090205460ff168015611a53575073ffffffffffffffffffffffffffffffffffffffff851660009081526012602052604090205460ff16155b15611aea576009548311156119f3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000606482015260840161091e565b73ffffffffffffffffffffffffffffffffffffffff841660009081526012602052604090205460ff16611bb257600b5473ffffffffffffffffffffffffffffffffffffffff8516600090815260208190526040902054611b4a908561286c565b1115611bb2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4d61782077616c6c657420657863656564656400000000000000000000000000604482015260640161091e565b30600090815260208190526040902054600a5481108015908190611bde5750600c5462010000900460ff165b8015611c05575060075474010000000000000000000000000000000000000000900460ff16155b8015611c37575073ffffffffffffffffffffffffffffffffffffffff871660009081526013602052604090205460ff16155b8015611c69575073ffffffffffffffffffffffffffffffffffffffff871660009081526011602052604090205460ff16155b8015611c9b575073ffffffffffffffffffffffffffffffffffffffff861660009081526011602052604090205460ff16155b15611d1057600780547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1674010000000000000000000000000000000000000000179055611ce761223f565b600780547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1690555b60075473ffffffffffffffffffffffffffffffffffffffff881660009081526011602052604090205460ff74010000000000000000000000000000000000000000909204821615911680611d89575073ffffffffffffffffffffffffffffffffffffffff871660009081526011602052604090205460ff165b15611d92575060005b60008115611f2c5773ffffffffffffffffffffffffffffffffffffffff881660009081526013602052604090205460ff1615611df357600095508415611dd757600895505b611dec600a611de689896122ee565b906123a3565b9050611f0e565b73ffffffffffffffffffffffffffffffffffffffff891660009081526013602052604090205460ff16158015611e4f575073ffffffffffffffffffffffffffffffffffffffff881660009081526013602052604090205460ff16155b15611e7157600095508415611dd75760089550611dec600a611de689896122ee565b73ffffffffffffffffffffffffffffffffffffffff891660009081526013602052604090205460ff1615611f0e575073ffffffffffffffffffffffffffffffffffffffff8716600090815260026020526040812054158015611ee05750601054611edd9061016861286c565b42105b15611f0e5773ffffffffffffffffffffffffffffffffffffffff881660009081526002602052604090204390555b8015611f1f57611f1f893083612015565b611f298188612884565b96505b611f37898989612015565b505050505050505050565b60008184841115611f80576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091e919061265b565b506000611f8d8486612884565b95945050505050565b73ffffffffffffffffffffffffffffffffffffffff821660008181526013602052604080822080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b73ffffffffffffffffffffffffffffffffffffffff83166120b8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161091e565b73ffffffffffffffffffffffffffffffffffffffff821661215b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015260840161091e565b6121a5816040518060600160405280602681526020016129eb6026913973ffffffffffffffffffffffffffffffffffffffff86166000908152602081905260409020549190611f42565b73ffffffffffffffffffffffffffffffffffffffff80851660009081526020819052604080822093909355908416815220546121e190826111ed565b73ffffffffffffffffffffffffffffffffffffffff8381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910161147f565b306000908152602081905260408120549081612259575050565b600a80546122669161289b565b82111561227d57600a805461227a9161289b565b91505b81612287816123e5565b60085460405173ffffffffffffffffffffffffffffffffffffffff909116904790600081818185875af1925050503d80600081146122e1576040519150601f19603f3d011682016040523d82523d6000602084013e6122e6565b606091505b505050505050565b6000826122fd5750600061089b565b6000612309838561289b565b90508261231685836128d8565b14611266576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60448201527f7700000000000000000000000000000000000000000000000000000000000000606482015260840161091e565b600061126683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612613565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061241a5761241a612913565b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156124ba57600080fd5b505afa1580156124ce573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124f29190612942565b8160018151811061250557612505612913565b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061256a307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461126d565b6040517f791ac94700000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906125e590859060009086903090429060040161295f565b600060405180830381600087803b1580156125ff57600080fd5b505af11580156122e6573d6000803e3d6000fd5b6000818361264e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091e919061265b565b506000611f8d84866128d8565b600060208083528351808285015260005b818110156126885785810183015185820160400152820161266c565b8181111561269a576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b73ffffffffffffffffffffffffffffffffffffffff811681146126f057600080fd5b50565b6000806040838503121561270657600080fd5b8235612711816126ce565b946020939093013593505050565b60006020828403121561273157600080fd5b8135611266816126ce565b60008060006060848603121561275157600080fd5b833561275c816126ce565b9250602084013561276c816126ce565b929592945050506040919091013590565b6000806040838503121561279057600080fd5b823561279b816126ce565b9150602083013580151581146127b057600080fd5b809150509250929050565b600080604083850312156127ce57600080fd5b82356127d9816126ce565b915060208301356127b0816126ce565b600181811c908216806127fd57607f821691505b60208210811415612837577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000821982111561287f5761287f61283d565b500190565b6000828210156128965761289661283d565b500390565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156128d3576128d361283d565b500290565b60008261290e577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006020828403121561295457600080fd5b8151611266816126ce565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156129bc57845173ffffffffffffffffffffffffffffffffffffffff168352938301939183019160010161298a565b505073ffffffffffffffffffffffffffffffffffffffff96909616606085015250505060800152939250505056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122028dd84886cd5d0b2bba124e7622c8370cda584451f35b218d28b3e438e4300c864736f6c63430008090033

Deployed Bytecode Sourcemap

29594:10223:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30326:21;;;;;;;;;;;;;;;;;;;160:25:1;;;148:2;133:18;30326:21:0;;;;;;;;7634:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;9800:169::-;;;;;;;;;;-1:-1:-1;9800:169:0;;;;;:::i;:::-;;:::i;:::-;;;1501:14:1;;1494:22;1476:41;;1464:2;1449:18;9800:169:0;1336:187:1;30535:64:0;;;;;;;;;;-1:-1:-1;30535:64:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;29677:51;;;;;;;;;;;;;;;;;;1983:42:1;1971:55;;;1953:74;;1941:2;1926:18;29677:51:0;1780:253:1;8753:108:0;;;;;;;;;;-1:-1:-1;8841:12:0;;8753:108;;34051:103;;;;;;;;;;-1:-1:-1;34051:103:0;;;;;:::i;:::-;;:::i;:::-;;10451:355;;;;;;;;;;-1:-1:-1;10451:355:0;;;;;:::i;:::-;;:::i;29780:53::-;;;;;;;;;;;;29826:6;29780:53;;8596:92;;;;;;;;;;-1:-1:-1;8596:92:0;;8679:1;2872:36:1;;2860:2;2845:18;8596:92:0;2730:184:1;11215:218:0;;;;;;;;;;-1:-1:-1;11215:218:0;;;;;:::i;:::-;;:::i;29735:38::-;;;;;;;;;;;;;;;30061:33;;;;;;;;;;-1:-1:-1;30061:33:0;;;;;;;;34162:125;;;;;;;;;;-1:-1:-1;34162:125:0;;;;;:::i;:::-;34251:28;;34227:4;34251:28;;;:19;:28;;;;;;;;;34162:125;30141:31;;;;;;;;;;-1:-1:-1;30141:31:0;;;;;;;;;;;8924:127;;;;;;;;;;-1:-1:-1;8924:127:0;;;;;:::i;:::-;9025:18;;8998:7;9025:18;;;;;;;;;;;;8924:127;22215:148;;;;;;;;;;;;;:::i;33261:144::-;;;;;;;;;;-1:-1:-1;33261:144:0;;;;;:::i;:::-;;:::i;30261:26::-;;;;;;;;;;;;;;;;32986:151;;;;;;;;;;;;;:::i;21573:79::-;;;;;;;;;;-1:-1:-1;21638:6:0;;;;21573:79;;29872:24;;;;;;;;;;-1:-1:-1;29872:24:0;;;;;;;;7853:104;;;;;;;;;;;;;:::i;30294:25::-;;;;;;;;;;;;;;;;33603:244;;;;;;;;;;-1:-1:-1;33603:244:0;;;;;:::i;:::-;;:::i;11936:269::-;;;;;;;;;;-1:-1:-1;11936:269:0;;;;;:::i;:::-;;:::i;9264:175::-;;;;;;;;;;-1:-1:-1;9264:175:0;;;;;:::i;:::-;;:::i;30757:58::-;;;;;;;;;;-1:-1:-1;30757:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;30101:33;;;;;;;;;;-1:-1:-1;30101:33:0;;;;;;;;;;;30356:25;;;;;;;;;;;;;;;;33413:182;;;;;;;;;;-1:-1:-1;33413:182:0;;;;;:::i;:::-;;:::i;30212:40::-;;;;;;;;;;-1:-1:-1;30212:40:0;;;;;;;;;;;29946:35;;;;;;;;;;;;;;;;9502:151;;;;;;;;;;-1:-1:-1;9502:151:0;;;;;:::i;:::-;9618:18;;;;9591:7;9618:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;9502:151;29988:33;;;;;;;;;;;;;;;;33149:104;;;;;;;;;;-1:-1:-1;33149:104:0;;;;;:::i;:::-;;:::i;22518:244::-;;;;;;;;;;-1:-1:-1;22518:244:0;;;;;:::i;:::-;;:::i;30028:24::-;;;;;;;;;;;;;;;;7634:100;7688:13;7721:5;7714:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7634:100;:::o;9800:169::-;9883:4;9900:39;225:10;9923:7;9932:6;9900:8;:39::i;:::-;-1:-1:-1;9957:4:0;9800:169;;;;;:::o;34051:103::-;21785:6;;:22;:6;225:10;21785:22;21777:67;;;;;;;4377:2:1;21777:67:0;;;4359:21:1;;;4396:18;;;4389:30;4455:34;4435:18;;;4428:62;4507:18;;21777:67:0;;;;;;;;;34125:9:::1;:21:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;34051:103::o;10451:355::-;10591:4;10608:36;10618:6;10626:9;10637:6;10608:9;:36::i;:::-;10655:121;10664:6;225:10;10686:89;10724:6;10686:89;;;;;;;;;;;;;;;;;:19;;;;;;;:11;:19;;;;;;;;225:10;10686:33;;;;;;;;;;:37;:89::i;:::-;10655:8;:121::i;:::-;-1:-1:-1;10794:4:0;10451:355;;;;;:::o;11215:218::-;225:10;11303:4;11352:25;;;:11;:25;;;;;;;;;:34;;;;;;;;;;11303:4;;11320:83;;11343:7;;11352:50;;11391:10;11352:38;:50::i;22215:148::-;21785:6;;:22;:6;225:10;21785:22;21777:67;;;;;;;4377:2:1;21777:67:0;;;4359:21:1;;;4396:18;;;4389:30;4455:34;4435:18;;;4428:62;4507:18;;21777:67:0;4175:356:1;21777:67:0;22306:6:::1;::::0;22285:40:::1;::::0;22322:1:::1;::::0;22285:40:::1;22306:6;::::0;22285:40:::1;::::0;22322:1;;22285:40:::1;22336:6;:19:::0;;;::::1;::::0;;22215:148::o;33261:144::-;21785:6;;:22;:6;225:10;21785:22;21777:67;;;;;;;4377:2:1;21777:67:0;;;4359:21:1;;;4396:18;;;4389:30;4455:34;4435:18;;;4428:62;4507:18;;21777:67:0;4175:356:1;21777:67:0;33351:39:::1;::::0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;33261:144::o;32986:151::-;21785:6;;:22;:6;225:10;21785:22;21777:67;;;;;;;4377:2:1;21777:67:0;;;4359:21:1;;;4396:18;;;4389:30;4455:34;4435:18;;;4428:62;4507:18;;21777:67:0;4175:356:1;21777:67:0;33041:13:::1;:20:::0;;33072:18;;;;;;33114:15:::1;33101:10;:28:::0;32986:151::o;7853:104::-;7909:13;7942:7;7935:14;;;;;:::i;33603:244::-;21785:6;;:22;:6;225:10;21785:22;21777:67;;;;;;;4377:2:1;21777:67:0;;;4359:21:1;;;4396:18;;;4389:30;4455:34;4435:18;;;4428:62;4507:18;;21777:67:0;4175:356:1;21777:67:0;33710:13:::1;33702:21;;:4;:21;;;;33694:91;;;::::0;::::1;::::0;;4738:2:1;33694:91:0::1;::::0;::::1;4720:21:1::0;4777:2;4757:18;;;4750:30;4816:34;4796:18;;;4789:62;4887:27;4867:18;;;4860:55;4932:19;;33694:91:0::1;4536:421:1::0;33694:91:0::1;33798:41;33827:4;33833:5;33798:28;:41::i;:::-;33603:244:::0;;:::o;11936:269::-;12029:4;12046:129;225:10;12069:7;12078:96;12117:15;12078:96;;;;;;;;;;;;;;;;;225:10;12078:25;;;;:11;:25;;;;;;;;;:34;;;;;;;;;;;;:38;:96::i;9264:175::-;9350:4;9367:42;225:10;9391:9;9402:6;9367:9;:42::i;33413:182::-;21785:6;;:22;:6;225:10;21785:22;21777:67;;;;;;;4377:2:1;21777:67:0;;;4359:21:1;;;4396:18;;;4389:30;4455:34;4435:18;;;4428:62;4507:18;;21777:67:0;4175:356:1;21777:67:0;33498:28:::1;::::0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;;::::1;::::0;::::1;;::::0;;::::1;::::0;;;33553:34;;1476:41:1;;;33553:34:0::1;::::0;1449:18:1;33553:34:0::1;;;;;;;33413:182:::0;;:::o;33149:104::-;21785:6;;:22;:6;225:10;21785:22;21777:67;;;;;;;4377:2:1;21777:67:0;;;4359:21:1;;;4396:18;;;4389:30;4455:34;4435:18;;;4428:62;4507:18;;21777:67:0;4175:356:1;21777:67:0;33219:22:::1;;;::::0;;;:15:::1;:22;::::0;;;;33244:1:::1;33219:26:::0;;33149:104::o;22518:244::-;21785:6;;:22;:6;225:10;21785:22;21777:67;;;;;;;4377:2:1;21777:67:0;;;4359:21:1;;;4396:18;;;4389:30;4455:34;4435:18;;;4428:62;4507:18;;21777:67:0;4175:356:1;21777:67:0;22607:22:::1;::::0;::::1;22599:73;;;::::0;::::1;::::0;;5164:2:1;22599:73:0::1;::::0;::::1;5146:21:1::0;5203:2;5183:18;;;5176:30;5242:34;5222:18;;;5215:62;5313:8;5293:18;;;5286:36;5339:19;;22599:73:0::1;4962:402:1::0;22599:73:0::1;22709:6;::::0;22688:38:::1;::::0;::::1;::::0;;::::1;::::0;22709:6:::1;::::0;22688:38:::1;::::0;22709:6:::1;::::0;22688:38:::1;22737:6;:17:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;22518:244::o;16617:181::-;16675:7;;16707:5;16711:1;16707;:5;:::i;:::-;16695:17;;16736:1;16731;:6;;16723:46;;;;;;;5893:2:1;16723:46:0;;;5875:21:1;5932:2;5912:18;;;5905:30;5971:29;5951:18;;;5944:57;6018:18;;16723:46:0;5691:351:1;16723:46:0;16789:1;16617:181;-1:-1:-1;;;16617:181:0:o;15122:497::-;15258:19;;;15250:68;;;;;;;6249:2:1;15250:68:0;;;6231:21:1;6288:2;6268:18;;;6261:30;6327:34;6307:18;;;6300:62;6398:6;6378:18;;;6371:34;6422:19;;15250:68:0;6047:400:1;15250:68:0;15337:21;;;15329:68;;;;;;;6654:2:1;15329:68:0;;;6636:21:1;6693:2;6673:18;;;6666:30;6732:34;6712:18;;;6705:62;6803:4;6783:18;;;6776:32;6825:19;;15329:68:0;6452:398:1;15329:68:0;15410:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;:36;;;15460:27;;;:20;:27;;;;;15457:106;;15509:27;;;;;;;:20;:27;;;;;15539:12;15509:42;;15457:106;15595:7;15579:32;;15588:5;15579:32;;;15604:6;15579:32;;;;160:25:1;;148:2;133:18;;14:177;15579:32:0;;;;;;;;15122:497;;;:::o;34303:3846::-;34435:18;;;34427:68;;;;;;;7057:2:1;34427:68:0;;;7039:21:1;7096:2;7076:18;;;7069:30;7135:34;7115:18;;;7108:62;7206:7;7186:18;;;7179:35;7231:19;;34427:68:0;6855:401:1;34427:68:0;34514:16;;;34506:64;;;;;;;7463:2:1;34506:64:0;;;7445:21:1;7502:2;7482:18;;;7475:30;7541:34;7521:18;;;7514:62;7612:5;7592:18;;;7585:33;7635:19;;34506:64:0;7261:399:1;34506:64:0;34600:1;34591:6;:10;34583:64;;;;;;;7867:2:1;34583:64:0;;;7849:21:1;7906:2;7886:18;;;7879:30;7945:34;7925:18;;;7918:62;8016:11;7996:18;;;7989:39;8045:19;;34583:64:0;7665:405:1;34583:64:0;34749:21;;;34658:17;34749:21;;;:15;:21;;;;;;34658:17;;34749:25;;34773:1;34749:25;:::i;:::-;34720:26;;;;;;;:20;:26;;;;;;:54;;-1:-1:-1;34800:11:0;34797:92;;34828:28;34844:4;34850:2;34854:1;34828:15;:28::i;:::-;34871:7;;34303:3846;;;:::o;34797:92::-;34912:14;;;;34909:1249;;;21638:6;;;34964:15;;;21638:6;;34964:15;;;;:49;;-1:-1:-1;21638:6:0;;;35000:13;;;21638:6;;35000:13;;34964:49;:86;;;;-1:-1:-1;35034:16:0;;;;;34964:86;:128;;;;-1:-1:-1;35071:21:0;;;35085:6;35071:21;;34964:128;:158;;;;-1:-1:-1;35114:8:0;;;;;;;35113:9;34964:158;34942:1205;;;35160:13;;;;;;;35156:148;;35205:25;;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;35234:23:0;;;;;;;:19;:23;;;;;;;;35205:52;35197:87;;;;;;;8277:2:1;35197:87:0;;;8259:21:1;8316:2;8296:18;;;8289:30;8355:24;8335:18;;;8328:52;8397:18;;35197:87:0;8075:346:1;35197:87:0;35358:31;;;;;;;:25;:31;;;;;;;;:71;;;;-1:-1:-1;35394:35:0;;;;;;;:31;:35;;;;;;;;35393:36;35358:71;35354:778;;;35476:20;;35466:6;:30;;35458:96;;;;;;;8628:2:1;35458:96:0;;;8610:21:1;8667:2;8647:18;;;8640:30;8706:34;8686:18;;;8679:62;8777:23;8757:18;;;8750:51;8818:19;;35458:96:0;8426:417:1;35458:96:0;35615:9;;9025:18;;;8998:7;9025:18;;;;;;;;;;;35589:22;;:6;:22;:::i;:::-;:35;;35581:67;;;;;;;9050:2:1;35581:67:0;;;9032:21:1;9089:2;9069:18;;;9062:30;9128:21;9108:18;;;9101:49;9167:18;;35581:67:0;8848:343:1;35581:67:0;35354:778;;;35742:29;;;;;;;:25;:29;;;;;;;;:71;;;;-1:-1:-1;35776:37:0;;;;;;;:31;:37;;;;;;;;35775:38;35742:71;35738:394;;;35860:20;;35850:6;:30;;35842:97;;;;;;;9398:2:1;35842:97:0;;;9380:21:1;9437:2;9417:18;;;9410:30;9476:34;9456:18;;;9449:62;9547:24;9527:18;;;9520:52;9589:19;;35842:97:0;9196:418:1;35738:394:0;35986:35;;;;;;;:31;:35;;;;;;;;35982:150;;36079:9;;9025:18;;;8998:7;9025:18;;;;;;;;;;;36053:22;;:6;:22;:::i;:::-;:35;;36045:67;;;;;;;9050:2:1;36045:67:0;;;9032:21:1;9089:2;9069:18;;;9062:30;9128:21;9108:18;;;9101:49;9167:18;;36045:67:0;8848:343:1;36045:67:0;36241:4;36192:28;9025:18;;;;;;;;;;;36307;;36283:42;;;;;;;36356:35;;-1:-1:-1;36380:11:0;;;;;;;36356:35;:61;;;;-1:-1:-1;36409:8:0;;;;;;;36408:9;36356:61;:110;;;;-1:-1:-1;36435:31:0;;;;;;;:25;:31;;;;;;;;36434:32;36356:110;:153;;;;-1:-1:-1;36484:25:0;;;;;;;:19;:25;;;;;;;;36483:26;36356:153;:194;;;;-1:-1:-1;36527:23:0;;;;;;;:19;:23;;;;;;;;36526:24;36356:194;36338:338;;;36577:8;:15;;;;;;;;36621:10;:8;:10::i;:::-;36648:8;:16;;;;;;36338:338;36712:8;;36821:25;;;36696:12;36821:25;;;:19;:25;;;;;;36712:8;;;;;;;36711:9;;36821:25;;:52;;-1:-1:-1;36850:23:0;;;;;;;:19;:23;;;;;;;;36821:52;36818:99;;;-1:-1:-1;36900:5:0;36818:99;36937:12;37041:7;37038:1058;;;37092:29;;;;;;;:25;:29;;;;;;;;37088:841;;;37153:1;37141:13;;37180:7;37177:75;;;37227:1;37215:13;;37177:75;37279:29;37305:2;37279:21;:6;37290:9;37279:10;:21::i;:::-;:25;;:29::i;:::-;37272:36;;37088:841;;;37348:31;;;;;;;:25;:31;;;;;;;;37347:32;:66;;;;-1:-1:-1;37384:29:0;;;;;;;:25;:29;;;;;;;;37383:30;37347:66;37343:586;;;37446:1;37434:13;;37473:7;37470:75;;;37520:1;37508:13;;37592:29;37618:2;37592:21;:6;37603:9;37592:10;:21::i;37343:586::-;37684:31;;;;;;;:25;:31;;;;;;;;37681:248;;;-1:-1:-1;37764:19:0;;;37740:1;37764:19;;;:15;:19;;;;;;:24;:68;;;;-1:-1:-1;37810:10:0;;:22;;37823:9;37810:22;:::i;:::-;37792:15;:40;37764:68;37760:154;;;37860:19;;;;;;;:15;:19;;;;;37882:12;37860:34;;37760:154;37960:8;;37957:91;;37988:42;38004:4;38018;38025;37988:15;:42::i;:::-;38070:14;38080:4;38070:14;;:::i;:::-;;;37038:1058;38108:33;38124:4;38130:2;38134:6;38108:15;:33::i;:::-;34416:3733;;;;;;34303:3846;;;:::o;17520:192::-;17606:7;17642:12;17634:6;;;;17626:29;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;17666:9:0;17678:5;17682:1;17678;:5;:::i;:::-;17666:17;17520:192;-1:-1:-1;;;;;17520:192:0:o;33855:188::-;33938:31;;;;;;;:25;:31;;;;;;:39;;;;;;;;;;;;;33995:40;;33938:39;;:31;33995:40;;;33855:188;;:::o;12695:573::-;12835:20;;;12827:70;;;;;;;7057:2:1;12827:70:0;;;7039:21:1;7096:2;7076:18;;;7069:30;7135:34;7115:18;;;7108:62;7206:7;7186:18;;;7179:35;7231:19;;12827:70:0;6855:401:1;12827:70:0;12916:23;;;12908:71;;;;;;;7463:2:1;12908:71:0;;;7445:21:1;7502:2;7482:18;;;7475:30;7541:34;7521:18;;;7514:62;7612:5;7592:18;;;7585:33;7635:19;;12908:71:0;7261:399:1;12908:71:0;13072;13094:6;13072:71;;;;;;;;;;;;;;;;;:17;;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;13052:17;;;;:9;:17;;;;;;;;;;;:91;;;;13177:20;;;;;;;:32;;13202:6;13177:24;:32::i;:::-;13154:20;;;;:9;:20;;;;;;;;;;;;:55;;;;13225:35;160:25:1;;;13154:20:0;;13225:35;;;;;;133:18:1;13225:35:0;14:177:1;39307:503:0;39390:4;39346:23;9025:18;;;;;;;;;;;;;39440:34;;39466:7;;39307:503::o;39440:34::-;39507:18;;;:23;;;:::i;:::-;39489:15;:41;39486:111;;;39562:18;;;:23;;;:::i;:::-;39544:41;;39486:111;39646:15;39674:36;39646:15;39674:16;:36::i;:::-;39753:9;;39745:57;;39753:9;;;;;39776:21;;39745:57;;;;39776:21;39753:9;39745:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;39307:503:0:o;17971:471::-;18029:7;18274:6;18270:47;;-1:-1:-1;18304:1:0;18297:8;;18270:47;18329:9;18341:5;18345:1;18341;:5;:::i;:::-;18329:17;-1:-1:-1;18374:1:0;18365:5;18369:1;18329:17;18365:5;:::i;:::-;:10;18357:56;;;;;;;10673:2:1;18357:56:0;;;10655:21:1;10712:2;10692:18;;;10685:30;10751:34;10731:18;;;10724:62;10822:3;10802:18;;;10795:31;10843:19;;18357:56:0;10471:397:1;18918:132:0;18976:7;19003:39;19007:1;19010;19003:39;;;;;;;;;;;;;;;;;:3;:39::i;38157:601::-;38309:16;;;38323:1;38309:16;;;;;;;;38285:21;;38309:16;;;;;;;;;;-1:-1:-1;38309:16:0;38285:40;;38354:4;38336;38341:1;38336:7;;;;;;;;:::i;:::-;;;;;;:23;;;;;;;;;;;38380:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;38370:4;38375:1;38370:7;;;;;;;;:::i;:::-;;;;;;:32;;;;;;;;;;;38415:62;38432:4;38447:15;38465:11;38415:8;:62::i;:::-;38516:224;;;;;:66;:15;:66;;;;:224;;38597:11;;38623:1;;38667:4;;38694;;38714:15;;38516:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19546:278;19632:7;19667:12;19660:5;19652:28;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;19691:9:0;19703:5;19707:1;19703;:5;:::i;196:656:1:-;308:4;337:2;366;355:9;348:21;398:6;392:13;441:6;436:2;425:9;421:18;414:34;466:1;476:140;490:6;487:1;484:13;476:140;;;585:14;;;581:23;;575:30;551:17;;;570:2;547:26;540:66;505:10;;476:140;;;634:6;631:1;628:13;625:91;;;704:1;699:2;690:6;679:9;675:22;671:31;664:42;625:91;-1:-1:-1;768:2:1;756:15;773:66;752:88;737:104;;;;843:2;733:113;;196:656;-1:-1:-1;;;196:656:1:o;857:154::-;943:42;936:5;932:54;925:5;922:65;912:93;;1001:1;998;991:12;912:93;857:154;:::o;1016:315::-;1084:6;1092;1145:2;1133:9;1124:7;1120:23;1116:32;1113:52;;;1161:1;1158;1151:12;1113:52;1200:9;1187:23;1219:31;1244:5;1219:31;:::i;:::-;1269:5;1321:2;1306:18;;;;1293:32;;-1:-1:-1;;;1016:315:1:o;1528:247::-;1587:6;1640:2;1628:9;1619:7;1615:23;1611:32;1608:52;;;1656:1;1653;1646:12;1608:52;1695:9;1682:23;1714:31;1739:5;1714:31;:::i;2038:456::-;2115:6;2123;2131;2184:2;2172:9;2163:7;2159:23;2155:32;2152:52;;;2200:1;2197;2190:12;2152:52;2239:9;2226:23;2258:31;2283:5;2258:31;:::i;:::-;2308:5;-1:-1:-1;2365:2:1;2350:18;;2337:32;2378:33;2337:32;2378:33;:::i;:::-;2038:456;;2430:7;;-1:-1:-1;;;2484:2:1;2469:18;;;;2456:32;;2038:456::o;2919:416::-;2984:6;2992;3045:2;3033:9;3024:7;3020:23;3016:32;3013:52;;;3061:1;3058;3051:12;3013:52;3100:9;3087:23;3119:31;3144:5;3119:31;:::i;:::-;3169:5;-1:-1:-1;3226:2:1;3211:18;;3198:32;3268:15;;3261:23;3249:36;;3239:64;;3299:1;3296;3289:12;3239:64;3322:7;3312:17;;;2919:416;;;;;:::o;3340:388::-;3408:6;3416;3469:2;3457:9;3448:7;3444:23;3440:32;3437:52;;;3485:1;3482;3475:12;3437:52;3524:9;3511:23;3543:31;3568:5;3543:31;:::i;:::-;3593:5;-1:-1:-1;3650:2:1;3635:18;;3622:32;3663:33;3622:32;3663:33;:::i;3733:437::-;3812:1;3808:12;;;;3855;;;3876:61;;3930:4;3922:6;3918:17;3908:27;;3876:61;3983:2;3975:6;3972:14;3952:18;3949:38;3946:218;;;4020:77;4017:1;4010:88;4121:4;4118:1;4111:15;4149:4;4146:1;4139:15;3946:218;;3733:437;;;:::o;5369:184::-;5421:77;5418:1;5411:88;5518:4;5515:1;5508:15;5542:4;5539:1;5532:15;5558:128;5598:3;5629:1;5625:6;5622:1;5619:13;5616:39;;;5635:18;;:::i;:::-;-1:-1:-1;5671:9:1;;5558:128::o;9619:125::-;9659:4;9687:1;9684;9681:8;9678:34;;;9692:18;;:::i;:::-;-1:-1:-1;9729:9:1;;9619:125::o;9749:228::-;9789:7;9915:1;9847:66;9843:74;9840:1;9837:81;9832:1;9825:9;9818:17;9814:105;9811:131;;;9922:18;;:::i;:::-;-1:-1:-1;9962:9:1;;9749:228::o;10192:274::-;10232:1;10258;10248:189;;10293:77;10290:1;10283:88;10394:4;10391:1;10384:15;10422:4;10419:1;10412:15;10248:189;-1:-1:-1;10451:9:1;;10192:274::o;11062:184::-;11114:77;11111:1;11104:88;11211:4;11208:1;11201:15;11235:4;11232:1;11225:15;11251:251;11321:6;11374:2;11362:9;11353:7;11349:23;11345:32;11342:52;;;11390:1;11387;11380:12;11342:52;11422:9;11416:16;11441:31;11466:5;11441:31;:::i;11507:1026::-;11769:4;11817:3;11806:9;11802:19;11848:6;11837:9;11830:25;11874:2;11912:6;11907:2;11896:9;11892:18;11885:34;11955:3;11950:2;11939:9;11935:18;11928:31;11979:6;12014;12008:13;12045:6;12037;12030:22;12083:3;12072:9;12068:19;12061:26;;12122:2;12114:6;12110:15;12096:29;;12143:1;12153:218;12167:6;12164:1;12161:13;12153:218;;;12232:13;;12247:42;12228:62;12216:75;;12346:15;;;;12311:12;;;;12189:1;12182:9;12153:218;;;-1:-1:-1;;12439:42:1;12427:55;;;;12422:2;12407:18;;12400:83;-1:-1:-1;;;12514:3:1;12499:19;12492:35;12388:3;11507:1026;-1:-1:-1;;;11507:1026:1:o

Swarm Source

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