ETH Price: $3,600.69 (+5.10%)

Token

SIDNEY (COOKIE MONSTER)
 

Overview

Max Total Supply

100,000,000 COOKIE MONSTER

Holders

40

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.000000000027233174 COOKIE MONSTER

Value
$0.00
0xceaad947f68f5097d36e613ea182284f56725c1b
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:
SIDNEY

Compiler Version
v0.8.25+commit.b61c2a91

Optimization Enabled:
Yes with 200000 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-03-26
*/

/**
 *
 *   /$$$$$$  /$$$$$$ /$$$$$$$  /$$   /$$ /$$$$$$$$ /$$     /$$
 *  /$$__  $$|_  $$_/| $$__  $$| $$$ | $$| $$_____/|  $$   /$$/
 * | $$  \__/  | $$  | $$  \ $$| $$$$| $$| $$       \  $$ /$$/
 * |  $$$$$$   | $$  | $$  | $$| $$ $$ $$| $$$$$     \  $$$$/
 *  \____  $$  | $$  | $$  | $$| $$  $$$$| $$__/      \  $$/
 *  /$$  \ $$  | $$  | $$  | $$| $$\  $$$| $$          | $$
 * |  $$$$$$/ /$$$$$$| $$$$$$$/| $$ \  $$| $$$$$$$$    | $$
 *  \______/ |______/|_______/ |__/  \__/|________/    |__/
 *
 *  .----------------.  .----------------.  .----------------.  .----------------.  .----------------.  .----------------.   .----------------.  .----------------.  .-----------------. .----------------.  .----------------.  .----------------.  .----------------.
 * | .--------------. || .--------------. || .--------------. || .--------------. || .--------------. || .--------------. | | .--------------. || .--------------. || .--------------. || .--------------. || .--------------. || .--------------. || .--------------. |
 * | |     ______   | || |     ____     | || |     ____     | || |  ___  ____   | || |     _____    | || |  _________   | | | | ____    ____ | || |     ____     | || | ____  _____  | || |    _______   | || |  _________   | || |  _________   | || |  _______     | |
 * | |   .' ___  |  | || |   .'    `.   | || |   .'    `.   | || | |_  ||_  _|  | || |    |_   _|   | || | |_   ___  |  | | | ||_   \  /   _|| || |   .'    `.   | || ||_   \|_   _| | || |   /  ___  |  | || | |  _   _  |  | || | |_   ___  |  | || | |_   __ \    | |
 * | |  / .'   \_|  | || |  /  .--.  \  | || |  /  .--.  \  | || |   | |_/ /    | || |      | |     | || |   | |_  \_|  | | | |  |   \/   |  | || |  /  .--.  \  | || |  |   \ | |   | || |  |  (__ \_|  | || | |_/ | | \_|  | || |   | |_  \_|  | || |   | |__) |   | |
 * | |  | |         | || |  | |    | |  | || |  | |    | |  | || |   |  __'.    | || |      | |     | || |   |  _|  _   | | | |  | |\  /| |  | || |  | |    | |  | || |  | |\ \| |   | || |   '.___`-.   | || |     | |      | || |   |  _|  _   | || |   |  __ /    | |
 * | |  \ `.___.'\  | || |  \  `--'  /  | || |  \  `--'  /  | || |  _| |  \ \_  | || |     _| |_    | || |  _| |___/ |  | | | | _| |_\/_| |_ | || |  \  `--'  /  | || | _| |_\   |_  | || |  |`\____) |  | || |    _| |_     | || |  _| |___/ |  | || |  _| |  \ \_  | |
 * | |   `._____.'  | || |   `.____.'   | || |   `.____.'   | || | |____||____| | || |    |_____|   | || | |_________|  | | | ||_____||_____|| || |   `.____.'   | || ||_____|\____| | || |  |_______.'  | || |   |_____|    | || | |_________|  | || | |____| |___| | |
 * | |              | || |              | || |              | || |              | || |              | || |              | | | |              | || |              | || |              | || |              | || |              | || |              | || |              | |
 * | '--------------' || '--------------' || '--------------' || '--------------' || '--------------' || '--------------' | | '--------------' || '--------------' || '--------------' || '--------------' || '--------------' || '--------------' || '--------------' |
 *  '----------------'  '----------------'  '----------------'  '----------------'  '----------------'  '----------------'   '----------------'  '----------------'  '----------------'  '----------------'  '----------------'  '----------------'  '----------------'
 *
 * SOCIALS:
 * 🍪 TG | t.me/sidneyoneth
 * 🍪 Twitter | x.com/sidneyoneth
 * 🍪 Web | sidneyeth.xyz
 *
 */
pragma solidity ^0.8.20;

interface IFactory {
    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function createPair(address tokenA, address tokenB) external returns (address pair);
}

interface IPair {
    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 permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;

    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 IRouter {
    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);

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

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

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

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * The initial owner is set to the address provided by the deployer. This can
 * later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting `_msgSender()` as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

/**
 * @dev Interface of the ERC-20 standard as defined in the ERC.
 */
interface IERC20 {
    /**
     * @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);

    /**
     * @dev Returns the value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the value of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves a `value` amount of tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 value) 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 a `value` amount of tokens 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 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the
     * allowance mechanism. `value` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 value) external returns (bool);
}

/**
 * @dev Interface for the optional metadata functions from the ERC-20 standard.
 */
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);
}

/**
 * @dev Standard ERC-20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens.
 */
interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * 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 returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual 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 default value returned by this function, unless
     * it's 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 returns (uint8) {
        return 18;
    }

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `value` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, value);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the ERC. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `value`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `value`.
     */
    function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, value);
        _transfer(from, to, value);
        return true;
    }

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

    /**
     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
     * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
     * this function.
     *
     * Emits a {Transfer} event.
     */
    function _update(address from, address to, uint256 value) internal virtual {
        if (from == address(0)) {
            // Overflow check required: The rest of the code assumes that totalSupply never overflows
            _totalSupply += value;
        } else {
            uint256 fromBalance = _balances[from];
            if (fromBalance < value) {
                revert ERC20InsufficientBalance(from, fromBalance, value);
            }
            unchecked {
            // Overflow not possible: value <= fromBalance <= totalSupply.
                _balances[from] = fromBalance - value;
            }
        }

        if (to == address(0)) {
            unchecked {
            // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
                _totalSupply -= value;
            }
        } else {
            unchecked {
            // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
                _balances[to] += value;
            }
        }

        emit Transfer(from, to, value);
    }

    /**
     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
     * Relies on the `_update` mechanism
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _mint(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(address(0), account, value);
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
     * Relies on the `_update` mechanism.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead
     */
    function _burn(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        _update(account, address(0), value);
    }

    /**
     * @dev Sets `value` 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.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        _approve(owner, spender, value, true);
    }

    /**
     * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
     *
     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
     * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
     * `Approval` event during `transferFrom` operations.
     *
     * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
     * true using the following override:
     * ```
     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
     *     super._approve(owner, spender, value, true);
     * }
     * ```
     *
     * Requirements are the same as {_approve}.
     */
    function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
        if (owner == address(0)) {
            revert ERC20InvalidApprover(address(0));
        }
        if (spender == address(0)) {
            revert ERC20InvalidSpender(address(0));
        }
        _allowances[owner][spender] = value;
        if (emitEvent) {
            emit Approval(owner, spender, value);
        }
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `value`.
     *
     * Does not update the allowance value in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Does not emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 value) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            if (currentAllowance < value) {
                revert ERC20InsufficientAllowance(spender, currentAllowance, value);
            }
            unchecked {
                _approve(owner, spender, currentAllowance - value, false);
            }
        }
    }
}

contract SIDNEY is ERC20, Ownable {
    uint256 public buyFee = 0;
    uint256 public sellFee = 0;
    uint256 public supply = 100e6 * 1e18;

    IRouter private router;
    address public pair;
    address private constant burnAddress = address(0x1);

    uint256 public maxWallet = (supply * 26)/1000;
    uint256 public maxTransaction = maxWallet;
    uint256 public swapThreshold = (supply * 2)/1000;
    uint256 public maxSwap = (supply * 10)/1000;
    bool public started = false;

    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) private _isExcludedMaxTransactionAmount;

    bool private isSwapping;
    address private marketingWallet;

    constructor() ERC20("SIDNEY", "COOKIE MONSTER") {
        router = IRouter(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        marketingWallet = payable(owner());

        excludeFromMaxTransaction(address(router), true);
        excludeFromFees(address(router), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromFees(address(this), true);
        excludeFromMaxTransaction(owner(), true);
        excludeFromFees(owner(), true);
        excludeFromMaxTransaction(marketingWallet, true);
        excludeFromFees(marketingWallet, true);
        excludeFromMaxTransaction(burnAddress, true);
        excludeFromFees(burnAddress, true);

        // mint entire supply to deployer
        _mint(owner(), supply);
    }

    function burn(uint256 amount) external {
        _burn(_msgSender(), amount);
    }

    receive() external payable {}

    function start() external onlyOwner() {
        require(!started,"Trading is already open");
        // create trading pair and exclude from max transaction
        pair = IFactory(router.factory()).createPair(address(this), router.WETH());
        excludeFromMaxTransaction(address(pair), true);

        _approve(address(this), address(router), supply);
        router.addLiquidityETH{value: address(this).balance}(
            address(this),
            balanceOf(address(this)),
            0,
            0,
            owner(),
            block.timestamp
        );
        IERC20(pair).approve(address(router), type(uint).max);
        started = true;
    }

    function setLimits(uint256 _maxTransactionAmount, uint256 _maxWallet) external onlyOwner {
        maxTransaction = _maxTransactionAmount;
        maxWallet = _maxWallet;
    }

    function setFee(uint256 _buyFee, uint256 _sellFee) external onlyOwner {
        require(_buyFee <= 40 && _sellFee <= 40, "Fee too high");
        buyFee = _buyFee;
        sellFee = _sellFee;
    }

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

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

    function setSwapThreshold(uint256 _amount) external {
        if (_msgSender() == marketingWallet) {
            swapThreshold = _amount;
        }
    }

    function setMaxSwap(uint256 _amount) external {
        if (_msgSender() == marketingWallet) {
            maxSwap = _amount;
        }
    }

    function setMarketingWallet(address _marketingWallet) external {
        if (_msgSender() == marketingWallet) {
            marketingWallet = _marketingWallet;
        }
    }

    function swap(uint256 percent) external {
        if (_msgSender() == marketingWallet) {
            uint256 contractBalance = balanceOf(address(this));
            uint256 swapAmount = contractBalance * percent / 100;
            swapTokensForEth(swapAmount);
        }
    }

    function retrieveEth() external {
        require(address(this).balance > 0, "Empty balance");
        if (_msgSender() == marketingWallet) {
            payable(msg.sender).transfer(address(this).balance);
        }
    }

    function withdrawToken(address _address) public {
        require(IERC20(_address).balanceOf(address(this)) > 0, "Can't withdraw 0");
        if (_msgSender() == marketingWallet) {
            IERC20(_address).transfer(msg.sender, IERC20(_address).balanceOf(address(this)));
        }
    }

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

    function _update(address from, address to, uint256 amount) internal override {
        if (amount == 0) {
            super._update(from, to, 0);
            return;
        }

        if (from != owner() && to != owner() && to != address(0) && to != address(0x1) && !isSwapping) {
            if (!started) {
                require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading has not started.");
            }
            if (from == pair && !_isExcludedMaxTransactionAmount[to]) {
                require(amount <= maxTransaction, "Buying more than the maxTransactionAmount.");
                require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded");
            }
            else if (to == pair && !_isExcludedMaxTransactionAmount[from]) {
                require(amount <= maxTransaction, "Selling more than the maxTransactionAmount.");
            }
            else if (!_isExcludedMaxTransactionAmount[to]) {
                require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded");
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));
        bool canSwap = contractTokenBalance > swapThreshold;
        if (started && canSwap && !isSwapping && from != pair && !_isExcludedFromFees[from] && !_isExcludedFromFees[to]) {
            isSwapping = true;
            swapBack();
            isSwapping = false;
        }

        bool takeFee = !isSwapping && !_isExcludedFromFees[from] && !_isExcludedFromFees[to];

        uint256 fees = 0;
        if (takeFee) {
            if (to == pair) {
                fees = amount * sellFee / 100;
            }
            else if(from == pair) {
                fees = amount * buyFee / 100;
            }
            if (fees > 0) {
                super._update(from, address(this), fees);
            }
            amount -= fees;
        }
        super._update(from, to, amount);
    }

    function swapTokensForEth(uint256 tokenAmount) private {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = router.WETH();
        _approve(address(this), address(router), tokenAmount);
        router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            marketingWallet,
            block.timestamp
        );
    }

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

        uint256 tokensToSwap = contractBalance;
        if (tokensToSwap > maxSwap) {
            tokensToSwap = maxSwap;
        }
        swapTokensForEth(tokensToSwap);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"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":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSwap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransaction","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":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"retrieveEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buyFee","type":"uint256"},{"internalType":"uint256","name":"_sellFee","type":"uint256"}],"name":"setFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTransactionAmount","type":"uint256"},{"internalType":"uint256","name":"_maxWallet","type":"uint256"}],"name":"setLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_marketingWallet","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setSwapThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"start","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"started","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"swap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapThreshold","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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","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":[{"internalType":"address","name":"_address","type":"address"}],"name":"withdrawToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040525f6006555f6007556a52b7d2dcc80cd2e40000006008556103e8600854601a61002d9190610c0e565b6100379190610c2b565b600b55600b54600c556103e860085460026100529190610c0e565b61005c9190610c2b565b600d556103e8600854600a6100719190610c0e565b61007b9190610c2b565b600e55600f805460ff19169055348015610093575f80fd5b50604051806040016040528060068152602001655349444e455960d01b8152506040518060400160405280600e81526020016d21a7a7a5a4a29026a7a729aa22a960911b81525081600390816100e99190610ce1565b5060046100f68282610ce1565b50505061010f61010a61024c60201b60201c565b610250565b600980546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d1790556101476005546001600160a01b031690565b60128054610100600160a81b0319166101006001600160a01b0393841602179055600954610177911660016102a1565b60095461018e906001600160a01b031660016102d3565b6101993060016102a1565b6101a43060016102d3565b6101c06101b96005546001600160a01b031690565b60016102a1565b6101dc6101d56005546001600160a01b031690565b60016102d3565b6012546101f89061010090046001600160a01b031660016102a1565b6012546102149061010090046001600160a01b031660016102d3565b61021f6001806102a1565b61022a6001806102d3565b61024761023f6005546001600160a01b031690565b600854610305565b610e74565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6102a9610342565b6001600160a01b03919091165f908152601160205260409020805460ff1916911515919091179055565b6102db610342565b6001600160a01b03919091165f908152601060205260409020805460ff1916911515919091179055565b6001600160a01b0382166103335760405163ec442f0560e01b81525f60048201526024015b60405180910390fd5b61033e5f8383610371565b5050565b6005546001600160a01b0316331461036f5760405163118cdaa760e01b815233600482015260240161032a565b565b805f036103885761038383835f61086b565b505050565b6005546001600160a01b038481169116148015906103b457506005546001600160a01b03838116911614155b80156103c857506001600160a01b03821615155b80156103de57506001600160a01b038216600114155b80156103ed575060125460ff16155b156106ba57600f5460ff16610485576001600160a01b0383165f9081526010602052604090205460ff168061043957506001600160a01b0382165f9081526010602052604090205460ff165b6104855760405162461bcd60e51b815260206004820152601860248201527f54726164696e6720686173206e6f7420737461727465642e0000000000000000604482015260640161032a565b600a546001600160a01b0384811691161480156104ba57506001600160a01b0382165f9081526011602052604090205460ff16155b1561059257600c548111156105245760405162461bcd60e51b815260206004820152602a60248201527f427579696e67206d6f7265207468616e20746865206d61785472616e7361637460448201526934b7b720b6b7bab73a1760b11b606482015260840161032a565b600b546001600160a01b0383165f908152602081905260409020546105499083610d9c565b111561058d5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161032a565b6106ba565b600a546001600160a01b0383811691161480156105c757506001600160a01b0383165f9081526011602052604090205460ff16155b1561063257600c5481111561058d5760405162461bcd60e51b815260206004820152602b60248201527f53656c6c696e67206d6f7265207468616e20746865206d61785472616e73616360448201526a3a34b7b720b6b7bab73a1760a91b606482015260840161032a565b6001600160a01b0382165f9081526011602052604090205460ff166106ba57600b546001600160a01b0383165f908152602081905260409020546106769083610d9c565b11156106ba5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161032a565b305f90815260208190526040902054600d54600f549082119060ff1680156106df5750805b80156106ee575060125460ff16155b80156107085750600a546001600160a01b03868116911614155b801561072c57506001600160a01b0385165f9081526010602052604090205460ff16155b801561075057506001600160a01b0384165f9081526010602052604090205460ff16155b15610775576012805460ff1916600117905561076a610991565b6012805460ff191690555b6012545f9060ff161580156107a257506001600160a01b0386165f9081526010602052604090205460ff16155b80156107c657506001600160a01b0385165f9081526010602052604090205460ff16155b90505f811561085757600a546001600160a01b0390811690871603610806576064600754866107f59190610c0e565b6107ff9190610c2b565b9050610839565b600a546001600160a01b03908116908816036108395760646006548661082c9190610c0e565b6108369190610c2b565b90505b801561084a5761084a87308361086b565b6108548186610daf565b94505b61086287878761086b565b50505050505050565b6001600160a01b038316610895578060025f82825461088a9190610d9c565b909155506109059050565b6001600160a01b0383165f90815260208190526040902054818110156108e75760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640161032a565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b0382166109215760028054829003905561093f565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161098491815260200190565b60405180910390a3505050565b305f90815260208190526040812054908190036109ab5750565b600e5481908111156109bc5750600e545b60408051600280825260608201835261033e9284925f92909160208301908036833701905050905030815f815181106109f7576109f7610dc2565b6001600160a01b03928316602091820292909201810191909152600954604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015610a4e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a729190610dd6565b81600181518110610a8557610a85610dc2565b6001600160a01b039283166020918202929092010152600954610aab9130911684610b1f565b60095460125460405163791ac94760e01b81526001600160a01b039283169263791ac94792610aee9287925f928892610100909104909116904290600401610e03565b5f604051808303815f87803b158015610b05575f80fd5b505af1158015610b17573d5f803e3d5ffd5b505050505050565b61038383838360016001600160a01b038416610b505760405163e602df0560e01b81525f600482015260240161032a565b6001600160a01b038316610b7957604051634a1406b160e11b81525f600482015260240161032a565b6001600160a01b038085165f9081526001602090815260408083209387168352929052208290558015610bf457826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610beb91815260200190565b60405180910390a35b50505050565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417610c2557610c25610bfa565b92915050565b5f82610c4557634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52604160045260245ffd5b600181811c90821680610c7257607f821691505b602082108103610c9057634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561038357805f5260205f20601f840160051c81016020851015610cbb5750805b601f840160051c820191505b81811015610cda575f8155600101610cc7565b5050505050565b81516001600160401b03811115610cfa57610cfa610c4a565b610d0e81610d088454610c5e565b84610c96565b602080601f831160018114610d41575f8415610d2a5750858301515b5f19600386901b1c1916600185901b178555610b17565b5f85815260208120601f198616915b82811015610d6f57888601518255948401946001909101908401610d50565b5085821015610d8c57878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b80820180821115610c2557610c25610bfa565b81810381811115610c2557610c25610bfa565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215610de6575f80fd5b81516001600160a01b0381168114610dfc575f80fd5b9392505050565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b81811015610e535784516001600160a01b031683529383019391830191600101610e2e565b50506001600160a01b03969096166060850152505050608001529392505050565b61248f80610e815f395ff3fe608060405260043610610212575f3560e01c80637571336a11610117578063be9a6555116100ac578063c4918b4e1161007c578063dd62ed3e11610062578063dd62ed3e14610608578063f2fde38b14610659578063f8b45b0514610678575f80fd5b8063c4918b4e146105df578063d619d216146105f4575f80fd5b8063be9a655514610578578063c02466681461058c578063c3f70b52146105ab578063c4590d3f146105c0575f80fd5b806395d89b41116100e757806395d89b41146104fa5780639d0014b11461050e578063a8aa1b311461052d578063a9059cbb14610559575f80fd5b80637571336a1461045257806389476069146104715780638da5cb5b1461049057806394b918de146104db575f80fd5b80632b14ca56116101a75780634fbee193116101775780635d098b381161015d5780635d098b38146103de57806370a08231146103fd578063715018a61461043e575f80fd5b80634fbee1931461037b57806352f7c988146103bf575f80fd5b80632b14ca5614610317578063313ce5671461032c57806342966c68146103475780634706240214610366575f80fd5b80630e6e91d8116101e25780630e6e91d8146102aa57806318160ddd146102cb5780631f2698ab146102df57806323b872dd146102f8575f80fd5b80630445b6671461021d578063047fc9aa1461024557806306fdde031461025a578063095ea7b31461027b575f80fd5b3661021957005b5f80fd5b348015610228575f80fd5b50610232600d5481565b6040519081526020015b60405180910390f35b348015610250575f80fd5b5061023260085481565b348015610265575f80fd5b5061026e61068d565b60405161023c9190612091565b348015610286575f80fd5b5061029a610295366004612105565b61071d565b604051901515815260200161023c565b3480156102b5575f80fd5b506102c96102c436600461212f565b610736565b005b3480156102d6575f80fd5b50600254610232565b3480156102ea575f80fd5b50600f5461029a9060ff1681565b348015610303575f80fd5b5061029a610312366004612146565b610763565b348015610322575f80fd5b5061023260075481565b348015610337575f80fd5b506040516012815260200161023c565b348015610352575f80fd5b506102c961036136600461212f565b610786565b348015610371575f80fd5b5061023260065481565b348015610386575f80fd5b5061029a610395366004612184565b73ffffffffffffffffffffffffffffffffffffffff165f9081526010602052604090205460ff1690565b3480156103ca575f80fd5b506102c96103d93660046121a6565b610790565b3480156103e9575f80fd5b506102c96103f8366004612184565b610820565b348015610408575f80fd5b50610232610417366004612184565b73ffffffffffffffffffffffffffffffffffffffff165f9081526020819052604090205490565b348015610449575f80fd5b506102c961088d565b34801561045d575f80fd5b506102c961046c3660046121d3565b6108a0565b34801561047c575f80fd5b506102c961048b366004612184565b6108fd565b34801561049b575f80fd5b5060055473ffffffffffffffffffffffffffffffffffffffff165b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161023c565b3480156104e6575f80fd5b506102c96104f536600461212f565b610b41565b348015610505575f80fd5b5061026e610b9b565b348015610519575f80fd5b506102c961052836600461212f565b610baa565b348015610538575f80fd5b50600a546104b69073ffffffffffffffffffffffffffffffffffffffff1681565b348015610564575f80fd5b5061029a610573366004612105565b610bd3565b348015610583575f80fd5b506102c9610be0565b348015610597575f80fd5b506102c96105a63660046121d3565b6110a1565b3480156105b6575f80fd5b50610232600c5481565b3480156105cb575f80fd5b506102c96105da3660046121a6565b6110fe565b3480156105ea575f80fd5b50610232600e5481565b3480156105ff575f80fd5b506102c9611111565b348015610613575f80fd5b5061023261062236600461220a565b73ffffffffffffffffffffffffffffffffffffffff9182165f90815260016020908152604080832093909416825291909152205490565b348015610664575f80fd5b506102c9610673366004612184565b6111c7565b348015610683575f80fd5b50610232600b5481565b60606003805461069c90612236565b80601f01602080910402602001604051908101604052809291908181526020018280546106c890612236565b80156107135780601f106106ea57610100808354040283529160200191610713565b820191905f5260205f20905b8154815290600101906020018083116106f657829003601f168201915b5050505050905090565b5f3361072a818585611227565b60019150505b92915050565b601254610100900473ffffffffffffffffffffffffffffffffffffffff16330361076057600e8190555b50565b5f33610770858285611234565b61077b858585611301565b506001949350505050565b61076033826113aa565b610798611404565b602882111580156107aa575060288111155b610815576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f46656520746f6f2068696768000000000000000000000000000000000000000060448201526064015b60405180910390fd5b600691909155600755565b601254610100900473ffffffffffffffffffffffffffffffffffffffff163303610760576012805473ffffffffffffffffffffffffffffffffffffffff8316610100027fffffffffffffffffffffff0000000000000000000000000000000000000000ff90911617905550565b610895611404565b61089e5f611457565b565b6108a8611404565b73ffffffffffffffffffffffffffffffffffffffff919091165f90815260116020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b6040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201525f9073ffffffffffffffffffffffffffffffffffffffff8316906370a0823190602401602060405180830381865afa158015610967573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061098b9190612287565b116109f2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f43616e2774207769746864726177203000000000000000000000000000000000604482015260640161080c565b601254610100900473ffffffffffffffffffffffffffffffffffffffff163303610760576040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff82169063a9059cbb90339083906370a0823190602401602060405180830381865afa158015610a88573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610aac9190612287565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff909216600483015260248201526044016020604051808303815f875af1158015610b19573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b3d919061229e565b5050565b601254610100900473ffffffffffffffffffffffffffffffffffffffff16330361076057305f90815260208190526040812054906064610b8184846122e6565b610b8b91906122fd565b9050610b96816114cd565b505050565b60606004805461069c90612236565b601254610100900473ffffffffffffffffffffffffffffffffffffffff16330361076057600d55565b5f3361072a818585611301565b610be8611404565b600f5460ff1615610c55576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f54726164696e6720697320616c7265616479206f70656e000000000000000000604482015260640161080c565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610cbf573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ce39190612335565b73ffffffffffffffffffffffffffffffffffffffff1663c9c653963060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d69573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d8d9190612335565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff9283166004820152911660248201526044016020604051808303815f875af1158015610dfc573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e209190612335565b600a80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff929092169182179055610e6f9060016108a0565b600954600854610e9991309173ffffffffffffffffffffffffffffffffffffffff90911690611227565b60095473ffffffffffffffffffffffffffffffffffffffff1663f305d7194730610ee48173ffffffffffffffffffffffffffffffffffffffff165f9081526020819052604090205490565b5f80610f0560055473ffffffffffffffffffffffffffffffffffffffff1690565b60405160e088901b7fffffffff0000000000000000000000000000000000000000000000000000000016815273ffffffffffffffffffffffffffffffffffffffff958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610f90573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190610fb59190612350565b5050600a546009546040517f095ea7b300000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff91821660048201527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60248201529116915063095ea7b3906044016020604051808303815f875af115801561104f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611073919061229e565b50600f80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b6110a9611404565b73ffffffffffffffffffffffffffffffffffffffff919091165f90815260106020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b611106611404565b600c91909155600b55565b5f471161117a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600d60248201527f456d7074792062616c616e636500000000000000000000000000000000000000604482015260640161080c565b601254610100900473ffffffffffffffffffffffffffffffffffffffff16330361089e5760405133904780156108fc02915f818181858888f19350505050158015610760573d5f803e3d5ffd5b6111cf611404565b73ffffffffffffffffffffffffffffffffffffffff811661121e576040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081525f600482015260240161080c565b61076081611457565b610b968383836001611681565b73ffffffffffffffffffffffffffffffffffffffff8381165f908152600160209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146112fb57818110156112ed576040517ffb8f41b200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff84166004820152602481018290526044810183905260640161080c565b6112fb84848484035f611681565b50505050565b73ffffffffffffffffffffffffffffffffffffffff8316611350576040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081525f600482015260240161080c565b73ffffffffffffffffffffffffffffffffffffffff821661139f576040517fec442f050000000000000000000000000000000000000000000000000000000081525f600482015260240161080c565b610b968383836117c6565b73ffffffffffffffffffffffffffffffffffffffff82166113f9576040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081525f600482015260240161080c565b610b3d825f836117c6565b60055473ffffffffffffffffffffffffffffffffffffffff16331461089e576040517f118cdaa700000000000000000000000000000000000000000000000000000000815233600482015260240161080c565b6005805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6040805160028082526060820183525f9260208301908036833701905050905030815f815181106115005761150061237b565b73ffffffffffffffffffffffffffffffffffffffff928316602091820292909201810191909152600954604080517fad5c46480000000000000000000000000000000000000000000000000000000081529051919093169263ad5c46489260048083019391928290030181865afa15801561157d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115a19190612335565b816001815181106115b4576115b461237b565b73ffffffffffffffffffffffffffffffffffffffff92831660209182029290920101526009546115e79130911684611227565b6009546012546040517f791ac94700000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff9283169263791ac947926116509287925f9288926101009091049091169042906004016123a8565b5f604051808303815f87803b158015611667575f80fd5b505af1158015611679573d5f803e3d5ffd5b505050505050565b73ffffffffffffffffffffffffffffffffffffffff84166116d0576040517fe602df050000000000000000000000000000000000000000000000000000000081525f600482015260240161080c565b73ffffffffffffffffffffffffffffffffffffffff831661171f576040517f94280d620000000000000000000000000000000000000000000000000000000081525f600482015260240161080c565b73ffffffffffffffffffffffffffffffffffffffff8085165f90815260016020908152604080832093871683529290522082905580156112fb578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516117b891815260200190565b60405180910390a350505050565b805f036117d857610b9683835f611eb6565b60055473ffffffffffffffffffffffffffffffffffffffff84811691161480159061181e575060055473ffffffffffffffffffffffffffffffffffffffff838116911614155b801561183f575073ffffffffffffffffffffffffffffffffffffffff821615155b8015611862575073ffffffffffffffffffffffffffffffffffffffff8216600114155b8015611871575060125460ff16155b15611c6e57600f5460ff1661193d5773ffffffffffffffffffffffffffffffffffffffff83165f9081526010602052604090205460ff16806118d7575073ffffffffffffffffffffffffffffffffffffffff82165f9081526010602052604090205460ff165b61193d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f54726164696e6720686173206e6f7420737461727465642e0000000000000000604482015260640161080c565b600a5473ffffffffffffffffffffffffffffffffffffffff848116911614801561198c575073ffffffffffffffffffffffffffffffffffffffff82165f9081526011602052604090205460ff16155b15611ac257600c54811115611a23576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f427579696e67206d6f7265207468616e20746865206d61785472616e7361637460448201527f696f6e416d6f756e742e00000000000000000000000000000000000000000000606482015260840161080c565b600b5473ffffffffffffffffffffffffffffffffffffffff83165f90815260208190526040902054611a559083612433565b1115611abd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4d61782077616c6c657420657863656564656400000000000000000000000000604482015260640161080c565b611c6e565b600a5473ffffffffffffffffffffffffffffffffffffffff8381169116148015611b11575073ffffffffffffffffffffffffffffffffffffffff83165f9081526011602052604090205460ff16155b15611ba857600c54811115611abd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f53656c6c696e67206d6f7265207468616e20746865206d61785472616e73616360448201527f74696f6e416d6f756e742e000000000000000000000000000000000000000000606482015260840161080c565b73ffffffffffffffffffffffffffffffffffffffff82165f9081526011602052604090205460ff16611c6e57600b5473ffffffffffffffffffffffffffffffffffffffff83165f90815260208190526040902054611c069083612433565b1115611c6e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4d61782077616c6c657420657863656564656400000000000000000000000000604482015260640161080c565b305f90815260208190526040902054600d54600f549082119060ff168015611c935750805b8015611ca2575060125460ff16155b8015611cc95750600a5473ffffffffffffffffffffffffffffffffffffffff868116911614155b8015611cfa575073ffffffffffffffffffffffffffffffffffffffff85165f9081526010602052604090205460ff16155b8015611d2b575073ffffffffffffffffffffffffffffffffffffffff84165f9081526010602052604090205460ff16155b15611d8c57601280547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055611d6361205d565b601280547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690555b6012545f9060ff16158015611dc6575073ffffffffffffffffffffffffffffffffffffffff86165f9081526010602052604090205460ff16155b8015611df7575073ffffffffffffffffffffffffffffffffffffffff85165f9081526010602052604090205460ff16155b90505f8115611ea257600a5473ffffffffffffffffffffffffffffffffffffffff90811690871603611e4457606460075486611e3391906122e6565b611e3d91906122fd565b9050611e84565b600a5473ffffffffffffffffffffffffffffffffffffffff90811690881603611e8457606460065486611e7791906122e6565b611e8191906122fd565b90505b8015611e9557611e95873083611eb6565b611e9f8186612446565b94505b611ead878787611eb6565b50505050505050565b73ffffffffffffffffffffffffffffffffffffffff8316611eed578060025f828254611ee29190612433565b90915550611f9d9050565b73ffffffffffffffffffffffffffffffffffffffff83165f9081526020819052604090205481811015611f72576040517fe450d38c00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85166004820152602481018290526044810183905260640161080c565b73ffffffffffffffffffffffffffffffffffffffff84165f9081526020819052604090209082900390555b73ffffffffffffffffffffffffffffffffffffffff8216611fc657600280548290039055611ff1565b73ffffffffffffffffffffffffffffffffffffffff82165f9081526020819052604090208054820190555b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161205091815260200190565b60405180910390a3505050565b305f90815260208190526040812054908190036120775750565b600e5481908111156120885750600e545b610b3d816114cd565b602081525f82518060208401528060208501604085015e5f6040828501015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f83011684010191505092915050565b73ffffffffffffffffffffffffffffffffffffffff81168114610760575f80fd5b5f8060408385031215612116575f80fd5b8235612121816120e4565b946020939093013593505050565b5f6020828403121561213f575f80fd5b5035919050565b5f805f60608486031215612158575f80fd5b8335612163816120e4565b92506020840135612173816120e4565b929592945050506040919091013590565b5f60208284031215612194575f80fd5b813561219f816120e4565b9392505050565b5f80604083850312156121b7575f80fd5b50508035926020909101359150565b8015158114610760575f80fd5b5f80604083850312156121e4575f80fd5b82356121ef816120e4565b915060208301356121ff816121c6565b809150509250929050565b5f806040838503121561221b575f80fd5b8235612226816120e4565b915060208301356121ff816120e4565b600181811c9082168061224a57607f821691505b602082108103612281577f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b50919050565b5f60208284031215612297575f80fd5b5051919050565b5f602082840312156122ae575f80fd5b815161219f816121c6565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b8082028115828204841417610730576107306122b9565b5f82612330577f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b500490565b5f60208284031215612345575f80fd5b815161219f816120e4565b5f805f60608486031215612362575f80fd5b8351925060208401519150604084015190509250925092565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b8181101561240557845173ffffffffffffffffffffffffffffffffffffffff16835293830193918301916001016123d3565b505073ffffffffffffffffffffffffffffffffffffffff969096166060850152505050608001529392505050565b80820180821115610730576107306122b9565b81810381811115610730576107306122b956fea264697066735822122054a74ae19cddcde695cab910c5feb060d44bcd43cbe5773e2a41cb2b04d0584464736f6c63430008190033

Deployed Bytecode

0x608060405260043610610212575f3560e01c80637571336a11610117578063be9a6555116100ac578063c4918b4e1161007c578063dd62ed3e11610062578063dd62ed3e14610608578063f2fde38b14610659578063f8b45b0514610678575f80fd5b8063c4918b4e146105df578063d619d216146105f4575f80fd5b8063be9a655514610578578063c02466681461058c578063c3f70b52146105ab578063c4590d3f146105c0575f80fd5b806395d89b41116100e757806395d89b41146104fa5780639d0014b11461050e578063a8aa1b311461052d578063a9059cbb14610559575f80fd5b80637571336a1461045257806389476069146104715780638da5cb5b1461049057806394b918de146104db575f80fd5b80632b14ca56116101a75780634fbee193116101775780635d098b381161015d5780635d098b38146103de57806370a08231146103fd578063715018a61461043e575f80fd5b80634fbee1931461037b57806352f7c988146103bf575f80fd5b80632b14ca5614610317578063313ce5671461032c57806342966c68146103475780634706240214610366575f80fd5b80630e6e91d8116101e25780630e6e91d8146102aa57806318160ddd146102cb5780631f2698ab146102df57806323b872dd146102f8575f80fd5b80630445b6671461021d578063047fc9aa1461024557806306fdde031461025a578063095ea7b31461027b575f80fd5b3661021957005b5f80fd5b348015610228575f80fd5b50610232600d5481565b6040519081526020015b60405180910390f35b348015610250575f80fd5b5061023260085481565b348015610265575f80fd5b5061026e61068d565b60405161023c9190612091565b348015610286575f80fd5b5061029a610295366004612105565b61071d565b604051901515815260200161023c565b3480156102b5575f80fd5b506102c96102c436600461212f565b610736565b005b3480156102d6575f80fd5b50600254610232565b3480156102ea575f80fd5b50600f5461029a9060ff1681565b348015610303575f80fd5b5061029a610312366004612146565b610763565b348015610322575f80fd5b5061023260075481565b348015610337575f80fd5b506040516012815260200161023c565b348015610352575f80fd5b506102c961036136600461212f565b610786565b348015610371575f80fd5b5061023260065481565b348015610386575f80fd5b5061029a610395366004612184565b73ffffffffffffffffffffffffffffffffffffffff165f9081526010602052604090205460ff1690565b3480156103ca575f80fd5b506102c96103d93660046121a6565b610790565b3480156103e9575f80fd5b506102c96103f8366004612184565b610820565b348015610408575f80fd5b50610232610417366004612184565b73ffffffffffffffffffffffffffffffffffffffff165f9081526020819052604090205490565b348015610449575f80fd5b506102c961088d565b34801561045d575f80fd5b506102c961046c3660046121d3565b6108a0565b34801561047c575f80fd5b506102c961048b366004612184565b6108fd565b34801561049b575f80fd5b5060055473ffffffffffffffffffffffffffffffffffffffff165b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161023c565b3480156104e6575f80fd5b506102c96104f536600461212f565b610b41565b348015610505575f80fd5b5061026e610b9b565b348015610519575f80fd5b506102c961052836600461212f565b610baa565b348015610538575f80fd5b50600a546104b69073ffffffffffffffffffffffffffffffffffffffff1681565b348015610564575f80fd5b5061029a610573366004612105565b610bd3565b348015610583575f80fd5b506102c9610be0565b348015610597575f80fd5b506102c96105a63660046121d3565b6110a1565b3480156105b6575f80fd5b50610232600c5481565b3480156105cb575f80fd5b506102c96105da3660046121a6565b6110fe565b3480156105ea575f80fd5b50610232600e5481565b3480156105ff575f80fd5b506102c9611111565b348015610613575f80fd5b5061023261062236600461220a565b73ffffffffffffffffffffffffffffffffffffffff9182165f90815260016020908152604080832093909416825291909152205490565b348015610664575f80fd5b506102c9610673366004612184565b6111c7565b348015610683575f80fd5b50610232600b5481565b60606003805461069c90612236565b80601f01602080910402602001604051908101604052809291908181526020018280546106c890612236565b80156107135780601f106106ea57610100808354040283529160200191610713565b820191905f5260205f20905b8154815290600101906020018083116106f657829003601f168201915b5050505050905090565b5f3361072a818585611227565b60019150505b92915050565b601254610100900473ffffffffffffffffffffffffffffffffffffffff16330361076057600e8190555b50565b5f33610770858285611234565b61077b858585611301565b506001949350505050565b61076033826113aa565b610798611404565b602882111580156107aa575060288111155b610815576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f46656520746f6f2068696768000000000000000000000000000000000000000060448201526064015b60405180910390fd5b600691909155600755565b601254610100900473ffffffffffffffffffffffffffffffffffffffff163303610760576012805473ffffffffffffffffffffffffffffffffffffffff8316610100027fffffffffffffffffffffff0000000000000000000000000000000000000000ff90911617905550565b610895611404565b61089e5f611457565b565b6108a8611404565b73ffffffffffffffffffffffffffffffffffffffff919091165f90815260116020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b6040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201525f9073ffffffffffffffffffffffffffffffffffffffff8316906370a0823190602401602060405180830381865afa158015610967573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061098b9190612287565b116109f2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f43616e2774207769746864726177203000000000000000000000000000000000604482015260640161080c565b601254610100900473ffffffffffffffffffffffffffffffffffffffff163303610760576040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff82169063a9059cbb90339083906370a0823190602401602060405180830381865afa158015610a88573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610aac9190612287565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff909216600483015260248201526044016020604051808303815f875af1158015610b19573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b3d919061229e565b5050565b601254610100900473ffffffffffffffffffffffffffffffffffffffff16330361076057305f90815260208190526040812054906064610b8184846122e6565b610b8b91906122fd565b9050610b96816114cd565b505050565b60606004805461069c90612236565b601254610100900473ffffffffffffffffffffffffffffffffffffffff16330361076057600d55565b5f3361072a818585611301565b610be8611404565b600f5460ff1615610c55576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f54726164696e6720697320616c7265616479206f70656e000000000000000000604482015260640161080c565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610cbf573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ce39190612335565b73ffffffffffffffffffffffffffffffffffffffff1663c9c653963060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d69573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d8d9190612335565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff9283166004820152911660248201526044016020604051808303815f875af1158015610dfc573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e209190612335565b600a80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff929092169182179055610e6f9060016108a0565b600954600854610e9991309173ffffffffffffffffffffffffffffffffffffffff90911690611227565b60095473ffffffffffffffffffffffffffffffffffffffff1663f305d7194730610ee48173ffffffffffffffffffffffffffffffffffffffff165f9081526020819052604090205490565b5f80610f0560055473ffffffffffffffffffffffffffffffffffffffff1690565b60405160e088901b7fffffffff0000000000000000000000000000000000000000000000000000000016815273ffffffffffffffffffffffffffffffffffffffff958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610f90573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190610fb59190612350565b5050600a546009546040517f095ea7b300000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff91821660048201527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60248201529116915063095ea7b3906044016020604051808303815f875af115801561104f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611073919061229e565b50600f80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b6110a9611404565b73ffffffffffffffffffffffffffffffffffffffff919091165f90815260106020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b611106611404565b600c91909155600b55565b5f471161117a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600d60248201527f456d7074792062616c616e636500000000000000000000000000000000000000604482015260640161080c565b601254610100900473ffffffffffffffffffffffffffffffffffffffff16330361089e5760405133904780156108fc02915f818181858888f19350505050158015610760573d5f803e3d5ffd5b6111cf611404565b73ffffffffffffffffffffffffffffffffffffffff811661121e576040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081525f600482015260240161080c565b61076081611457565b610b968383836001611681565b73ffffffffffffffffffffffffffffffffffffffff8381165f908152600160209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146112fb57818110156112ed576040517ffb8f41b200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff84166004820152602481018290526044810183905260640161080c565b6112fb84848484035f611681565b50505050565b73ffffffffffffffffffffffffffffffffffffffff8316611350576040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081525f600482015260240161080c565b73ffffffffffffffffffffffffffffffffffffffff821661139f576040517fec442f050000000000000000000000000000000000000000000000000000000081525f600482015260240161080c565b610b968383836117c6565b73ffffffffffffffffffffffffffffffffffffffff82166113f9576040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081525f600482015260240161080c565b610b3d825f836117c6565b60055473ffffffffffffffffffffffffffffffffffffffff16331461089e576040517f118cdaa700000000000000000000000000000000000000000000000000000000815233600482015260240161080c565b6005805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6040805160028082526060820183525f9260208301908036833701905050905030815f815181106115005761150061237b565b73ffffffffffffffffffffffffffffffffffffffff928316602091820292909201810191909152600954604080517fad5c46480000000000000000000000000000000000000000000000000000000081529051919093169263ad5c46489260048083019391928290030181865afa15801561157d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115a19190612335565b816001815181106115b4576115b461237b565b73ffffffffffffffffffffffffffffffffffffffff92831660209182029290920101526009546115e79130911684611227565b6009546012546040517f791ac94700000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff9283169263791ac947926116509287925f9288926101009091049091169042906004016123a8565b5f604051808303815f87803b158015611667575f80fd5b505af1158015611679573d5f803e3d5ffd5b505050505050565b73ffffffffffffffffffffffffffffffffffffffff84166116d0576040517fe602df050000000000000000000000000000000000000000000000000000000081525f600482015260240161080c565b73ffffffffffffffffffffffffffffffffffffffff831661171f576040517f94280d620000000000000000000000000000000000000000000000000000000081525f600482015260240161080c565b73ffffffffffffffffffffffffffffffffffffffff8085165f90815260016020908152604080832093871683529290522082905580156112fb578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516117b891815260200190565b60405180910390a350505050565b805f036117d857610b9683835f611eb6565b60055473ffffffffffffffffffffffffffffffffffffffff84811691161480159061181e575060055473ffffffffffffffffffffffffffffffffffffffff838116911614155b801561183f575073ffffffffffffffffffffffffffffffffffffffff821615155b8015611862575073ffffffffffffffffffffffffffffffffffffffff8216600114155b8015611871575060125460ff16155b15611c6e57600f5460ff1661193d5773ffffffffffffffffffffffffffffffffffffffff83165f9081526010602052604090205460ff16806118d7575073ffffffffffffffffffffffffffffffffffffffff82165f9081526010602052604090205460ff165b61193d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f54726164696e6720686173206e6f7420737461727465642e0000000000000000604482015260640161080c565b600a5473ffffffffffffffffffffffffffffffffffffffff848116911614801561198c575073ffffffffffffffffffffffffffffffffffffffff82165f9081526011602052604090205460ff16155b15611ac257600c54811115611a23576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f427579696e67206d6f7265207468616e20746865206d61785472616e7361637460448201527f696f6e416d6f756e742e00000000000000000000000000000000000000000000606482015260840161080c565b600b5473ffffffffffffffffffffffffffffffffffffffff83165f90815260208190526040902054611a559083612433565b1115611abd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4d61782077616c6c657420657863656564656400000000000000000000000000604482015260640161080c565b611c6e565b600a5473ffffffffffffffffffffffffffffffffffffffff8381169116148015611b11575073ffffffffffffffffffffffffffffffffffffffff83165f9081526011602052604090205460ff16155b15611ba857600c54811115611abd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f53656c6c696e67206d6f7265207468616e20746865206d61785472616e73616360448201527f74696f6e416d6f756e742e000000000000000000000000000000000000000000606482015260840161080c565b73ffffffffffffffffffffffffffffffffffffffff82165f9081526011602052604090205460ff16611c6e57600b5473ffffffffffffffffffffffffffffffffffffffff83165f90815260208190526040902054611c069083612433565b1115611c6e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4d61782077616c6c657420657863656564656400000000000000000000000000604482015260640161080c565b305f90815260208190526040902054600d54600f549082119060ff168015611c935750805b8015611ca2575060125460ff16155b8015611cc95750600a5473ffffffffffffffffffffffffffffffffffffffff868116911614155b8015611cfa575073ffffffffffffffffffffffffffffffffffffffff85165f9081526010602052604090205460ff16155b8015611d2b575073ffffffffffffffffffffffffffffffffffffffff84165f9081526010602052604090205460ff16155b15611d8c57601280547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055611d6361205d565b601280547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690555b6012545f9060ff16158015611dc6575073ffffffffffffffffffffffffffffffffffffffff86165f9081526010602052604090205460ff16155b8015611df7575073ffffffffffffffffffffffffffffffffffffffff85165f9081526010602052604090205460ff16155b90505f8115611ea257600a5473ffffffffffffffffffffffffffffffffffffffff90811690871603611e4457606460075486611e3391906122e6565b611e3d91906122fd565b9050611e84565b600a5473ffffffffffffffffffffffffffffffffffffffff90811690881603611e8457606460065486611e7791906122e6565b611e8191906122fd565b90505b8015611e9557611e95873083611eb6565b611e9f8186612446565b94505b611ead878787611eb6565b50505050505050565b73ffffffffffffffffffffffffffffffffffffffff8316611eed578060025f828254611ee29190612433565b90915550611f9d9050565b73ffffffffffffffffffffffffffffffffffffffff83165f9081526020819052604090205481811015611f72576040517fe450d38c00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85166004820152602481018290526044810183905260640161080c565b73ffffffffffffffffffffffffffffffffffffffff84165f9081526020819052604090209082900390555b73ffffffffffffffffffffffffffffffffffffffff8216611fc657600280548290039055611ff1565b73ffffffffffffffffffffffffffffffffffffffff82165f9081526020819052604090208054820190555b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161205091815260200190565b60405180910390a3505050565b305f90815260208190526040812054908190036120775750565b600e5481908111156120885750600e545b610b3d816114cd565b602081525f82518060208401528060208501604085015e5f6040828501015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f83011684010191505092915050565b73ffffffffffffffffffffffffffffffffffffffff81168114610760575f80fd5b5f8060408385031215612116575f80fd5b8235612121816120e4565b946020939093013593505050565b5f6020828403121561213f575f80fd5b5035919050565b5f805f60608486031215612158575f80fd5b8335612163816120e4565b92506020840135612173816120e4565b929592945050506040919091013590565b5f60208284031215612194575f80fd5b813561219f816120e4565b9392505050565b5f80604083850312156121b7575f80fd5b50508035926020909101359150565b8015158114610760575f80fd5b5f80604083850312156121e4575f80fd5b82356121ef816120e4565b915060208301356121ff816121c6565b809150509250929050565b5f806040838503121561221b575f80fd5b8235612226816120e4565b915060208301356121ff816120e4565b600181811c9082168061224a57607f821691505b602082108103612281577f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b50919050565b5f60208284031215612297575f80fd5b5051919050565b5f602082840312156122ae575f80fd5b815161219f816121c6565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b8082028115828204841417610730576107306122b9565b5f82612330577f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b500490565b5f60208284031215612345575f80fd5b815161219f816120e4565b5f805f60608486031215612362575f80fd5b8351925060208401519150604084015190509250925092565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b8181101561240557845173ffffffffffffffffffffffffffffffffffffffff16835293830193918301916001016123d3565b505073ffffffffffffffffffffffffffffffffffffffff969096166060850152505050608001529392505050565b80820180821115610730576107306122b9565b81810381811115610730576107306122b956fea264697066735822122054a74ae19cddcde695cab910c5feb060d44bcd43cbe5773e2a41cb2b04d0584464736f6c63430008190033

Deployed Bytecode Sourcemap

29238:7233:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29604:48;;;;;;;;;;;;;;;;;;;160:25:1;;;148:2;133:18;29604:48:0;;;;;;;;29344:36;;;;;;;;;;;;;;;;19920:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;22213:190::-;;;;;;;;;;-1:-1:-1;22213:190:0;;;;;:::i;:::-;;:::i;:::-;;;1322:14:1;;1315:22;1297:41;;1285:2;1270:18;22213:190:0;1157:187:1;32392:145:0;;;;;;;;;;-1:-1:-1;32392:145:0;;;;;:::i;:::-;;:::i;:::-;;21022:99;;;;;;;;;;-1:-1:-1;21101:12:0;;21022:99;;29709:27;;;;;;;;;;-1:-1:-1;29709:27:0;;;;;;;;22981:249;;;;;;;;;;-1:-1:-1;22981:249:0;;;;;:::i;:::-;;:::i;29311:26::-;;;;;;;;;;;;;;;;20873:84;;;;;;;;;;-1:-1:-1;20873:84:0;;20947:2;2137:36:1;;2125:2;2110:18;20873:84:0;1995:184:1;30719:85:0;;;;;;;;;;-1:-1:-1;30719:85:0;;;;;:::i;:::-;;:::i;29279:25::-;;;;;;;;;;;;;;;;33560:126;;;;;;;;;;-1:-1:-1;33560:126:0;;;;;:::i;:::-;33650:28;;33626:4;33650:28;;;:19;:28;;;;;;;;;33560:126;31726:201;;;;;;;;;;-1:-1:-1;31726:201:0;;;;;:::i;:::-;;:::i;32545:179::-;;;;;;;;;;-1:-1:-1;32545:179:0;;;;;:::i;:::-;;:::i;21184:118::-;;;;;;;;;;-1:-1:-1;21184:118:0;;;;;:::i;:::-;21276:18;;21249:7;21276:18;;;;;;;;;;;;21184:118;13227:103;;;;;;;;;;;;;:::i;31935:144::-;;;;;;;;;;-1:-1:-1;31935:144:0;;;;;:::i;:::-;;:::i;33257:295::-;;;;;;;;;;-1:-1:-1;33257:295:0;;;;;:::i;:::-;;:::i;12552:87::-;;;;;;;;;;-1:-1:-1;12625:6:0;;;;12552:87;;;3375:42:1;3363:55;;;3345:74;;3333:2;3318:18;12552:87:0;3199:226:1;32732:282:0;;;;;;;;;;-1:-1:-1;32732:282:0;;;;;:::i;:::-;;:::i;20130:95::-;;;;;;;;;;;;;:::i;32227:157::-;;;;;;;;;;-1:-1:-1;32227:157:0;;;;;:::i;:::-;;:::i;29418:19::-;;;;;;;;;;-1:-1:-1;29418:19:0;;;;;;;;21507:182;;;;;;;;;;-1:-1:-1;21507:182:0;;;;;:::i;:::-;;:::i;30849:682::-;;;;;;;;;;;;;:::i;32087:132::-;;;;;;;;;;-1:-1:-1;32087:132:0;;;;;:::i;:::-;;:::i;29556:41::-;;;;;;;;;;;;;;;;31539:179;;;;;;;;;;-1:-1:-1;31539:179:0;;;;;:::i;:::-;;:::i;29659:43::-;;;;;;;;;;;;;;;;33022:227;;;;;;;;;;;;;:::i;21752:142::-;;;;;;;;;;-1:-1:-1;21752:142:0;;;;;:::i;:::-;21859:18;;;;21832:7;21859:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;21752:142;13485:220;;;;;;;;;;-1:-1:-1;13485:220:0;;;;;:::i;:::-;;:::i;29504:45::-;;;;;;;;;;;;;;;;19920:91;19965:13;19998:5;19991:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19920:91;:::o;22213:190::-;22286:4;10949:10;22342:31;10949:10;22358:7;22367:5;22342:8;:31::i;:::-;22391:4;22384:11;;;22213:190;;;;;:::o;32392:145::-;32469:15;;;;;;;10949:10;32453:31;32449:81;;32501:7;:17;;;32449:81;32392:145;:::o;22981:249::-;23068:4;10949:10;23126:37;23142:4;10949:10;23157:5;23126:15;:37::i;:::-;23174:26;23184:4;23190:2;23194:5;23174:9;:26::i;:::-;-1:-1:-1;23218:4:0;;22981:249;-1:-1:-1;;;;22981:249:0:o;30719:85::-;30769:27;10949:10;30789:6;30769:5;:27::i;31726:201::-;12438:13;:11;:13::i;:::-;31826:2:::1;31815:7;:13;;:31;;;;;31844:2;31832:8;:14;;31815:31;31807:56;;;::::0;::::1;::::0;;4467:2:1;31807:56:0::1;::::0;::::1;4449:21:1::0;4506:2;4486:18;;;4479:30;4545:14;4525:18;;;4518:42;4577:18;;31807:56:0::1;;;;;;;;;31874:6;:16:::0;;;;31901:7:::1;:18:::0;31726:201::o;32545:179::-;32639:15;;;;;;;10949:10;32623:31;32619:98;;32671:15;:34;;;;;;;;;;;;;;32545:179;:::o;13227:103::-;12438:13;:11;:13::i;:::-;13292:30:::1;13319:1;13292:18;:30::i;:::-;13227:103::o:0;31935:144::-;12438:13;:11;:13::i;:::-;32025:39:::1;::::0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;31935:144::o;33257:295::-;33324:41;;;;;33359:4;33324:41;;;3345:74:1;33368:1:0;;33324:26;;;;;;3318:18:1;;33324:41:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:45;33316:74;;;;;;;4997:2:1;33316:74:0;;;4979:21:1;5036:2;5016:18;;;5009:30;5075:18;5055;;;5048:46;5111:18;;33316:74:0;4795:340:1;33316:74:0;33421:15;;;;;;;10949:10;33405:31;33401:144;;33491:41;;;;;33526:4;33491:41;;;3345:74:1;33453:25:0;;;;;;33479:10;;33453:25;;33491:26;;3318:18:1;;33491:41:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;33453:80;;;;;;;;;;5344:42:1;5332:55;;;33453:80:0;;;5314:74:1;5404:18;;;5397:34;5287:18;;33453:80:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;33257:295;:::o;32732:282::-;32803:15;;;;;;;10949:10;32787:31;32783:224;;32879:4;32835:23;21276:18;;;;;;;;;;;;32949:3;32921:25;32939:7;21276:18;32921:25;:::i;:::-;:31;;;;:::i;:::-;32900:52;;32967:28;32984:10;32967:16;:28::i;:::-;32820:187;;32732:282;:::o;20130:95::-;20177:13;20210:7;20203:14;;;;;:::i;32227:157::-;32310:15;;;;;;;10949:10;32294:31;32290:87;;32342:13;:23;32227:157::o;21507:182::-;21576:4;10949:10;21632:27;10949:10;21649:2;21653:5;21632:9;:27::i;30849:682::-;12438:13;:11;:13::i;:::-;30907:7:::1;::::0;::::1;;30906:8;30898:43;;;::::0;::::1;::::0;;6535:2:1;30898:43:0::1;::::0;::::1;6517:21:1::0;6574:2;6554:18;;;6547:30;6613:25;6593:18;;;6586:53;6656:18;;30898:43:0::1;6333:347:1::0;30898:43:0::1;31033:6;;;;;;;;;;;:14;;;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;31024:37;;;31070:4;31077:6;;;;;;;;;;;:11;;;:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;31024:67;::::0;;::::1;::::0;;;;;;7125:42:1;7194:15;;;31024:67:0::1;::::0;::::1;7176:34:1::0;7246:15;;7226:18;;;7219:43;7088:18;;31024:67:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;31017:4;:74:::0;;;::::1;;::::0;;;::::1;::::0;;::::1;::::0;;31102:46:::1;::::0;-1:-1:-1;31102:25:0::1;:46::i;:::-;31193:6;::::0;31202::::1;::::0;31161:48:::1;::::0;31178:4:::1;::::0;31193:6:::1;::::0;;::::1;::::0;31161:8:::1;:48::i;:::-;31220:6;::::0;::::1;;:22;31250:21;31295:4;31315:24;31295:4:::0;21276:18;;21249:7;21276:18;;;;;;;;;;;;21184:118;31315:24:::1;31354:1;31370::::0;31386:7:::1;12625:6:::0;;;;;12552:87;31386:7:::1;31220:214;::::0;::::1;::::0;;;;;;;7586:42:1;7655:15;;;31220:214:0::1;::::0;::::1;7637:34:1::0;7687:18;;;7680:34;;;;7730:18;;;7723:34;;;;7773:18;;;7766:34;7837:15;;;7816:19;;;7809:44;31408:15:0::1;7869:19:1::0;;;7862:35;7548:19;;31220:214:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;31452:4:0::1;::::0;31474:6:::1;::::0;31445:53:::1;::::0;;;;31452:4:::1;31474:6:::0;;::::1;31445:53;::::0;::::1;5314:74:1::0;31483:14:0::1;5404:18:1::0;;;5397:34;31452:4:0;::::1;::::0;-1:-1:-1;31445:20:0::1;::::0;5287:18:1;;31445:53:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;31509:7:0::1;:14:::0;;;::::1;31519:4;31509:14;::::0;;30849:682::o;32087:132::-;12438:13;:11;:13::i;:::-;32172:28:::1;::::0;;;::::1;;::::0;;;:19:::1;:28;::::0;;;;:39;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;32087:132::o;31539:179::-;12438:13;:11;:13::i;:::-;31639:14:::1;:38:::0;;;;31688:9:::1;:22:::0;31539:179::o;33022:227::-;33097:1;33073:21;:25;33065:51;;;;;;;8421:2:1;33065:51:0;;;8403:21:1;8460:2;8440:18;;;8433:30;8499:15;8479:18;;;8472:43;8532:18;;33065:51:0;8219:337:1;33065:51:0;33147:15;;;;;;;10949:10;33131:31;33127:115;;33179:51;;33187:10;;33208:21;33179:51;;;;;;;;;33208:21;33187:10;33179:51;;;;;;;;;;;;;;;;;;;13485:220;12438:13;:11;:13::i;:::-;13570:22:::1;::::0;::::1;13566:93;;13616:31;::::0;::::1;::::0;;13644:1:::1;13616:31;::::0;::::1;3345:74:1::0;3318:18;;13616:31:0::1;3199:226:1::0;13566:93:0::1;13669:28;13688:8;13669:18;:28::i;27028:130::-:0;27113:37;27122:5;27129:7;27138:5;27145:4;27113:8;:37::i;28744:487::-;21859:18;;;;28844:24;21859:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;28931:17;28911:37;;28907:317;;28988:5;28969:16;:24;28965:132;;;29021:60;;;;;8793:42:1;8781:55;;29021:60:0;;;8763:74:1;8853:18;;;8846:34;;;8896:18;;;8889:34;;;8736:18;;29021:60:0;8561:368:1;28965:132:0;29140:57;29149:5;29156:7;29184:5;29165:16;:24;29191:5;29140:8;:57::i;:::-;28833:398;28744:487;;;:::o;23615:308::-;23699:18;;;23695:88;;23741:30;;;;;23768:1;23741:30;;;3345:74:1;3318:18;;23741:30:0;3199:226:1;23695:88:0;23797:16;;;23793:88;;23837:32;;;;;23866:1;23837:32;;;3345:74:1;3318:18;;23837:32:0;3199:226:1;23793:88:0;23891:24;23899:4;23905:2;23909:5;23891:7;:24::i;26264:211::-;26335:21;;;26331:91;;26380:30;;;;;26407:1;26380:30;;;3345:74:1;3318:18;;26380:30:0;3199:226:1;26331:91:0;26432:35;26440:7;26457:1;26461:5;26432:7;:35::i;12717:166::-;12625:6;;12777:23;12625:6;10949:10;12777:23;12773:103;;12824:40;;;;;10949:10;12824:40;;;3345:74:1;3318:18;;12824:40:0;3199:226:1;13865:191:0;13958:6;;;;13975:17;;;;;;;;;;;14008:40;;13958:6;;;13975:17;13958:6;;14008:40;;13939:16;;14008:40;13928:128;13865:191;:::o;35669:446::-;35759:16;;;35773:1;35759:16;;;;;;;;35735:21;;35759:16;;;;;;;;;;-1:-1:-1;35759:16:0;35735:40;;35804:4;35786;35791:1;35786:7;;;;;;;;:::i;:::-;:23;;;;:7;;;;;;;;;;:23;;;;35830:6;;:13;;;;;;;;:6;;;;;:11;;:13;;;;;35786:7;;35830:13;;;;;:6;:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35820:4;35825:1;35820:7;;;;;;;;:::i;:::-;:23;;;;:7;;;;;;;;;:23;35886:6;;35854:53;;35871:4;;35886:6;35895:11;35854:8;:53::i;:::-;35918:6;;36051:15;;35918:189;;;;;:6;;;;;:57;;:189;;35990:11;;35918:6;;36032:4;;35918:6;36051:15;;;;;;;36081;;35918:189;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35724:391;35669:446;:::o;28009:443::-;28122:19;;;28118:91;;28165:32;;;;;28194:1;28165:32;;;3345:74:1;3318:18;;28165:32:0;3199:226:1;28118:91:0;28223:21;;;28219:92;;28268:31;;;;;28296:1;28268:31;;;3345:74:1;3318:18;;28268:31:0;3199:226:1;28219:92:0;28321:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;28367:78;;;;28418:7;28402:31;;28411:5;28402:31;;;28427:5;28402:31;;;;160:25:1;;148:2;133:18;;14:177;28402:31:0;;;;;;;;28009:443;;;;:::o;33694:1967::-;33786:6;33796:1;33786:11;33782:91;;33814:26;33828:4;33834:2;33838:1;33814:13;:26::i;33782:91::-;12625:6;;;33889:15;;;12625:6;;33889:15;;;;:32;;-1:-1:-1;12625:6:0;;;33908:13;;;12625:6;;33908:13;;33889:32;:52;;;;-1:-1:-1;33925:16:0;;;;;33889:52;:74;;;;-1:-1:-1;33945:18:0;;;33959:3;33945:18;;33889:74;:89;;;;-1:-1:-1;33968:10:0;;;;33967:11;33889:89;33885:886;;;34000:7;;;;33995:138;;34036:25;;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;34065:23:0;;;;;;;:19;:23;;;;;;;;34036:52;34028:89;;;;;;;10545:2:1;34028:89:0;;;10527:21:1;10584:2;10564:18;;;10557:30;10623:26;10603:18;;;10596:54;10667:18;;34028:89:0;10343:348:1;34028:89:0;34159:4;;;34151:12;;;34159:4;;34151:12;:52;;;;-1:-1:-1;34168:35:0;;;;;;;:31;:35;;;;;;;;34167:36;34151:52;34147:613;;;34242:14;;34232:6;:24;;34224:79;;;;;;;10898:2:1;34224:79:0;;;10880:21:1;10937:2;10917:18;;;10910:30;10976:34;10956:18;;;10949:62;11047:12;11027:18;;;11020:40;11077:19;;34224:79:0;10696:406:1;34224:79:0;34356:9;;21276:18;;;21249:7;21276:18;;;;;;;;;;;34330:22;;:6;:22;:::i;:::-;:35;;34322:67;;;;;;;11439:2:1;34322:67:0;;;11421:21:1;11478:2;11458:18;;;11451:30;11517:21;11497:18;;;11490:49;11556:18;;34322:67:0;11237:343:1;34322:67:0;34147:613;;;34434:4;;;34428:10;;;34434:4;;34428:10;:52;;;;-1:-1:-1;34443:37:0;;;;;;;:31;:37;;;;;;;;34442:38;34428:52;34424:336;;;34519:14;;34509:6;:24;;34501:80;;;;;;;11787:2:1;34501:80:0;;;11769:21:1;11826:2;11806:18;;;11799:30;11865:34;11845:18;;;11838:62;11936:13;11916:18;;;11909:41;11967:19;;34501:80:0;11585:407:1;34424:336:0;34621:35;;;;;;;:31;:35;;;;;;;;34616:144;;34711:9;;21276:18;;;21249:7;21276:18;;;;;;;;;;;34685:22;;:6;:22;:::i;:::-;:35;;34677:67;;;;;;;11439:2:1;34677:67:0;;;11421:21:1;11478:2;11458:18;;;11451:30;11517:21;11497:18;;;11490:49;11556:18;;34677:67:0;11237:343:1;34677:67:0;34832:4;34783:28;21276:18;;;;;;;;;;;34887:13;;34915:7;;34864:36;;;;34915:7;;:18;;;;;34926:7;34915:18;:33;;;;-1:-1:-1;34938:10:0;;;;34937:11;34915:33;:49;;;;-1:-1:-1;34960:4:0;;;34952:12;;;34960:4;;34952:12;;34915:49;:79;;;;-1:-1:-1;34969:25:0;;;;;;;:19;:25;;;;;;;;34968:26;34915:79;:107;;;;-1:-1:-1;34999:23:0;;;;;;;:19;:23;;;;;;;;34998:24;34915:107;34911:215;;;35039:10;:17;;;;35052:4;35039:17;;;35071:10;:8;:10::i;:::-;35096;:18;;;;;;34911:215;35154:10;;35138:12;;35154:10;;35153:11;:41;;;;-1:-1:-1;35169:25:0;;;;;;;:19;:25;;;;;;;;35168:26;35153:41;:69;;;;-1:-1:-1;35199:23:0;;;;;;;:19;:23;;;;;;;;35198:24;35153:69;35138:84;;35235:12;35266:7;35262:350;;;35300:4;;;;;;35294:10;;;;35290:179;;35351:3;35341:7;;35332:6;:16;;;;:::i;:::-;:22;;;;:::i;:::-;35325:29;;35290:179;;;35400:4;;;;;;35392:12;;;;35389:80;;35450:3;35441:6;;35432;:15;;;;:::i;:::-;:21;;;;:::i;:::-;35425:28;;35389:80;35487:8;;35483:89;;35516:40;35530:4;35544;35551;35516:13;:40::i;:::-;35586:14;35596:4;35586:14;;:::i;:::-;;;35262:350;35622:31;35636:4;35642:2;35646:6;35622:13;:31::i;:::-;33771:1890;;;;33694:1967;;;:::o;24247:1123::-;24337:18;;;24333:548;;24491:5;24475:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;24333:548:0;;-1:-1:-1;24333:548:0;;24551:15;;;24529:19;24551:15;;;;;;;;;;;24585:19;;;24581:117;;;24632:50;;;;;8793:42:1;8781:55;;24632:50:0;;;8763:74:1;8853:18;;;8846:34;;;8896:18;;;8889:34;;;8736:18;;24632:50:0;8561:368:1;24581:117:0;24817:15;;;:9;:15;;;;;;;;;;24835:19;;;;24817:37;;24333:548;24897:16;;;24893:427;;25059:12;:21;;;;;;;24893:427;;;25271:13;;;:9;:13;;;;;;;;;;:22;;;;;;24893:427;25352:2;25337:25;;25346:4;25337:25;;;25356:5;25337:25;;;;160::1;;148:2;133:18;;14:177;25337:25:0;;;;;;;;24247:1123;;;:::o;36123:345::-;36206:4;36162:23;21276:18;;;;;;;;;;;;36227:20;;;36223:59;;36264:7;36123:345::o;36223:59::-;36362:7;;36317:15;;36347:22;;36343:77;;;-1:-1:-1;36401:7:0;;36343:77;36430:30;36447:12;36430:16;:30::i;196:477:1:-;345:2;334:9;327:21;308:4;377:6;371:13;420:6;415:2;404:9;400:18;393:34;479:6;474:2;466:6;462:15;457:2;446:9;442:18;436:50;535:1;530:2;521:6;510:9;506:22;502:31;495:42;664:2;594:66;589:2;581:6;577:15;573:88;562:9;558:104;554:113;546:121;;;196:477;;;;:::o;678:154::-;764:42;757:5;753:54;746:5;743:65;733:93;;822:1;819;812:12;837:315;905:6;913;966:2;954:9;945:7;941:23;937:32;934:52;;;982:1;979;972:12;934:52;1021:9;1008:23;1040:31;1065:5;1040:31;:::i;:::-;1090:5;1142:2;1127:18;;;;1114:32;;-1:-1:-1;;;837:315:1:o;1349:180::-;1408:6;1461:2;1449:9;1440:7;1436:23;1432:32;1429:52;;;1477:1;1474;1467:12;1429:52;-1:-1:-1;1500:23:1;;1349:180;-1:-1:-1;1349:180:1:o;1534:456::-;1611:6;1619;1627;1680:2;1668:9;1659:7;1655:23;1651:32;1648:52;;;1696:1;1693;1686:12;1648:52;1735:9;1722:23;1754:31;1779:5;1754:31;:::i;:::-;1804:5;-1:-1:-1;1861:2:1;1846:18;;1833:32;1874:33;1833:32;1874:33;:::i;:::-;1534:456;;1926:7;;-1:-1:-1;;;1980:2:1;1965:18;;;;1952:32;;1534:456::o;2184:247::-;2243:6;2296:2;2284:9;2275:7;2271:23;2267:32;2264:52;;;2312:1;2309;2302:12;2264:52;2351:9;2338:23;2370:31;2395:5;2370:31;:::i;:::-;2420:5;2184:247;-1:-1:-1;;;2184:247:1:o;2436:248::-;2504:6;2512;2565:2;2553:9;2544:7;2540:23;2536:32;2533:52;;;2581:1;2578;2571:12;2533:52;-1:-1:-1;;2604:23:1;;;2674:2;2659:18;;;2646:32;;-1:-1:-1;2436:248:1:o;2689:118::-;2775:5;2768:13;2761:21;2754:5;2751:32;2741:60;;2797:1;2794;2787:12;2812:382;2877:6;2885;2938:2;2926:9;2917:7;2913:23;2909:32;2906:52;;;2954:1;2951;2944:12;2906:52;2993:9;2980:23;3012:31;3037:5;3012:31;:::i;:::-;3062:5;-1:-1:-1;3119:2:1;3104:18;;3091:32;3132:30;3091:32;3132:30;:::i;:::-;3181:7;3171:17;;;2812:382;;;;;:::o;3430:388::-;3498:6;3506;3559:2;3547:9;3538:7;3534:23;3530:32;3527:52;;;3575:1;3572;3565:12;3527:52;3614:9;3601:23;3633:31;3658:5;3633:31;:::i;:::-;3683:5;-1:-1:-1;3740:2:1;3725:18;;3712:32;3753:33;3712:32;3753:33;:::i;3823:437::-;3902:1;3898:12;;;;3945;;;3966:61;;4020:4;4012:6;4008:17;3998:27;;3966:61;4073:2;4065:6;4062:14;4042:18;4039:38;4036:218;;4110:77;4107:1;4100:88;4211:4;4208:1;4201:15;4239:4;4236:1;4229:15;4036:218;;3823:437;;;:::o;4606:184::-;4676:6;4729:2;4717:9;4708:7;4704:23;4700:32;4697:52;;;4745:1;4742;4735:12;4697:52;-1:-1:-1;4768:16:1;;4606:184;-1:-1:-1;4606:184:1:o;5442:245::-;5509:6;5562:2;5550:9;5541:7;5537:23;5533:32;5530:52;;;5578:1;5575;5568:12;5530:52;5610:9;5604:16;5629:28;5651:5;5629:28;:::i;5692:184::-;5744:77;5741:1;5734:88;5841:4;5838:1;5831:15;5865:4;5862:1;5855:15;5881:168;5954:9;;;5985;;6002:15;;;5996:22;;5982:37;5972:71;;6023:18;;:::i;6054:274::-;6094:1;6120;6110:189;;6155:77;6152:1;6145:88;6256:4;6253:1;6246:15;6284:4;6281:1;6274:15;6110:189;-1:-1:-1;6313:9:1;;6054:274::o;6685:251::-;6755:6;6808:2;6796:9;6787:7;6783:23;6779:32;6776:52;;;6824:1;6821;6814:12;6776:52;6856:9;6850:16;6875:31;6900:5;6875:31;:::i;7908:306::-;7996:6;8004;8012;8065:2;8053:9;8044:7;8040:23;8036:32;8033:52;;;8081:1;8078;8071:12;8033:52;8110:9;8104:16;8094:26;;8160:2;8149:9;8145:18;8139:25;8129:35;;8204:2;8193:9;8189:18;8183:25;8173:35;;7908:306;;;;;:::o;9123:184::-;9175:77;9172:1;9165:88;9272:4;9269:1;9262:15;9296:4;9293:1;9286:15;9312:1026;9574:4;9622:3;9611:9;9607:19;9653:6;9642:9;9635:25;9679:2;9717:6;9712:2;9701:9;9697:18;9690:34;9760:3;9755:2;9744:9;9740:18;9733:31;9784:6;9819;9813:13;9850:6;9842;9835:22;9888:3;9877:9;9873:19;9866:26;;9927:2;9919:6;9915:15;9901:29;;9948:1;9958:218;9972:6;9969:1;9966:13;9958:218;;;10037:13;;10052:42;10033:62;10021:75;;10151:15;;;;10116:12;;;;9994:1;9987:9;9958:218;;;-1:-1:-1;;10244:42:1;10232:55;;;;10227:2;10212:18;;10205:83;-1:-1:-1;;;10319:3:1;10304:19;10297:35;10193:3;9312:1026;-1:-1:-1;;;9312:1026:1:o;11107:125::-;11172:9;;;11193:10;;;11190:36;;;11206:18;;:::i;11997:128::-;12064:9;;;12085:11;;;12082:37;;;12099:18;;:::i

Swarm Source

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