ETH Price: $3,448.57 (-0.83%)
Gas: 3 Gwei

Token

SHYAMA (SHYAMA)
 

Overview

Max Total Supply

100,000,000 SHYAMA

Holders

31

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
249,543.689646076795991611 SHYAMA

Value
$0.00
0xaa6e61b26d97d8a5ab1e07019fc53a5a2f7268a7
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:
SHYAMA

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

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

/**
 
*/
//https://t.me/ShyamaEntryPortal

// SPDX-License-Identifier: UNLICENSED

// File: src/contracts/uniswap/IUniswapV2Router01.sol



pragma solidity >=0.6.2;

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

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

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}
// File: src/contracts/uniswap/IUniswapV2Router02.sol



pragma solidity >=0.6.2;


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

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}
// File: src/contracts/uniswap/IUniswapV2Pair.sol



pragma solidity >=0.5.0;

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

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

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

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

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

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

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

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

    function initialize(address, address) external;
}
// File: src/contracts/uniswap/IUniswapV2Factory.sol



pragma solidity >=0.5.0;

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

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

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

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

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}
// File: src/contracts/math/SafeMath.sol



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}
// File: src/contracts/access/Ownable.sol



pragma solidity ^0.8.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.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

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

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

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

// File: src/contracts/utils/IERC20.sol



pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

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

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}
// File: src/contracts/utils/IERC20Metadata.sol



pragma solidity ^0.8.0;


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);
}
// File: src/contracts/utils/ERC20.sol



pragma solidity ^0.8.0;





/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20Metadata {
    using SafeMath for uint256;
    mapping(address => uint256) private _balances;

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

    uint256 public _totalSupply;

    string public _name;
    string public _symbol;

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

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

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

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

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

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

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

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        _approve(sender, _msgSender(), currentAllowance - amount);

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        _balances[account] = _balances[account].sub(amount);
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

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

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

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

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

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



/*
* Telegram: https://t.me/ShyamaEntryPortal
* Twitter:  https://twitter.com/SHYAMAERC
* Website:  https://www.shyama-eth.com/
*/

pragma solidity 0.8.10;
pragma experimental ABIEncoderV2;







contract SHYAMA is ERC20, Ownable {
    using SafeMath for uint256;
    IUniswapV2Router02 public uniswapV2Router;
    address public uniswapV2Pair;
    address public constant deadAddress = address(0xdead);
    bool private swapping = false;
    uint256 public buyFee = 0;
    uint256 public sellFee = 0;
    address public marketingWallet = address(0xAd3037204723545Ba93CacE5706194625105aeF2);
    uint256 public maxWallet = 2_000_000 * 1e18;
    uint256 public maxTransactionAmount = 100_000_000 * 1e18;
    uint256 public genesis_block = block.number;
    uint256 public tokensForLiquidity;
    uint256 public tokensForMarketing;
    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public _isExcludedMaxTransactionAmount;
    mapping(address => bool) public _isExcludedFromMaxWallet;
    mapping(address => bool) public automatedMarketMakerPairs;
    event UpdateUniswapV2Router(address indexed newAddress, address indexed oldAddress);
    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);
    event SwapAndLiquify(uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity);

    constructor() ERC20("SHYAMA", "SHYAMA") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

        uniswapV2Router = _uniswapV2Router;

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

        uint256 totalSupply = 100_000_000 * 1e18;

        // exclude from fees
        excludeFromFees(owner(), true);
        excludeFromFees(marketingWallet, true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);

        // exclude from max wallet
        excludeFromMaxWallet(owner(), true);
        excludeFromMaxWallet(marketingWallet, true);
        excludeFromMaxWallet(address(this), true);
        excludeFromMaxWallet(address(0xdead), true);
        excludeFromMaxWallet(address(_uniswapV2Router), true);
        excludeFromMaxWallet(address(uniswapV2Pair), true);

        // exclude from max transaction
        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(marketingWallet, true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);
        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        excludeFromMaxTransaction(address(uniswapV2Pair), true);

        _mint(msg.sender, totalSupply);
    }

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

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

    function excludeFromMaxWallet(address account, bool excluded) private {
        _isExcludedFromMaxWallet[account] = excluded;
    }

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

    function burnMarketing(uint256 amount) public {
        _burn(marketingWallet, amount);
    }

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

    function setSellFee(uint256 _sellFee) public onlyOwner {
        require(_sellFee >= 0, "Sell fee cannot be less than 0%");
        sellFee = _sellFee;
    }

    function setBuyFee(uint256 _buyFee) public onlyOwner {
        require(_buyFee >= 0, "Buy fee cannot be less than 0%");
        buyFee = _buyFee;
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(amount > 0, "[_transfer]: Transfer amount must be greater than zero");
        require(from != address(0), "[_transfer]: Transfer from the zero address");
        require(to != address(0), "[_transfer]: Transfer to the zero address");

        bool takeFee = true;
        uint256 fees = 0;

        if (!_isExcludedMaxTransactionAmount[from] || !_isExcludedMaxTransactionAmount[to]) {
            require(amount <= maxTransactionAmount, "[_transfer]: Max transaction Limit");
        }

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

        if (takeFee) {
            // on buy
            if (automatedMarketMakerPairs[from] && buyFee > 0) {
                fees = amount.mul(buyFee).div(100);
            }
            // on sell
            if (automatedMarketMakerPairs[to] && sellFee > 0) {
                fees = amount.mul(sellFee).div(100);
            }
            if (fees > 0) {
                super._transfer(from, marketingWallet, fees);
            }
        }
        uint256 amountToSend = amount - fees;
        super._transfer(from, to, amountToSend);
    }

    receive() external payable {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedFromMaxWallet","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_name","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnMarketing","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"genesis_block","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","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"}],"name":"setBuyFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_sellFee","type":"uint256"}],"name":"setSellFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526007805460ff60a01b1916905560006008819055600955600a80546001600160a01b03191673ad3037204723545ba93cace5706194625105aef21790556a01a784379d99db42000000600b556a52b7d2dcc80cd2e4000000600c5543600d553480156200007057600080fd5b50604080518082018252600680825265534859414d4160d01b602080840182815285518087019096529285528401528151919291620000b2916003916200062c565b508051620000c89060049060208401906200062c565b505050620000e5620000df6200049a60201b60201c565b6200049e565b600680546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d9081179091556040805163c45a015560e01b81529051829163c45a01559160048083019260209291908290030181865afa1580156200014b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001719190620006d2565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001bf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001e59190620006d2565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000233573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002599190620006d2565b600780546001600160a01b0319166001600160a01b0392909216918217905562000285906001620004f0565b6a52b7d2dcc80cd2e4000000620002cc620002a86005546001600160a01b031690565b6001600160a01b03166000908152601060205260409020805460ff19166001179055565b600a546001600160a01b03166000908152601060205260409020805460ff19166001179055306000908152601060205260409020805460ff1916600117905561dead60005260106020527f9e93e1db4a1f807cc22b2aecf4deeb0bf5745f1ecb319e87c68c5624c0fa6b69805460ff191660011790556200037d620003596005546001600160a01b031690565b6001600160a01b03166000908152601260205260409020805460ff19166001179055565b600a80546001600160a01b0390811660009081526012602090815260408083208054600160ff1991821681179092553080865283862080548316841790557f1120e10407cab1193d7c5139d9aae5536deb3d83e855f25f8e42f811c01f56f7805483168417905589871680875284872080548416851790556007805489168852858820805485168617905560055489168852601190965284872080548416851790559754871686528386208054831684179055855282852080548216831790557f97847ee99463795296047093514439c3127772df3715e628aa85601cf85417168054821683179055958452818420805487168217905591549093168252919020805490921617905562000492338262000544565b505062000768565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260136020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0382166200059f5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060026000828254620005b3919062000704565b90915550506001600160a01b03821660009081526020819052604081208054839290620005e290849062000704565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b8280546200063a906200072b565b90600052602060002090601f0160209004810192826200065e5760008555620006a9565b82601f106200067957805160ff1916838001178555620006a9565b82800160010185558215620006a9579182015b82811115620006a95782518255916020019190600101906200068c565b50620006b7929150620006bb565b5090565b5b80821115620006b75760008155600101620006bc565b600060208284031215620006e557600080fd5b81516001600160a01b0381168114620006fd57600080fd5b9392505050565b600082198211156200072657634e487b7160e01b600052601160045260246000fd5b500190565b600181811c908216806200074057607f821691505b602082108114156200076257634e487b7160e01b600052602260045260246000fd5b50919050565b61154d80620007786000396000f3fe6080604052600436106102085760003560e01c806349bd5a5e11610118578063a9059cbb116100a0578063d1d7d7ef1161006f578063d1d7d7ef146105e0578063d28d885214610610578063dd62ed3e14610625578063f2fde38b1461066b578063f8b45b051461068b57600080fd5b8063a9059cbb14610565578063b09f126614610585578063b62496f51461059a578063c8c8ebe4146105ca57600080fd5b806375f0a874116100e757806375f0a874146104d25780638b4cee08146104f25780638da5cb5b1461051257806395d89b4114610530578063a457c2d71461054557600080fd5b806349bd5a5e1461042e5780634fbee1931461044e57806370a0823114610487578063715018a6146104bd57600080fd5b80631f3fed8f1161019b5780632b14ca561161016a5780632b14ca56146103b0578063313ce567146103c657806339509351146103e25780633eaaf86b14610402578063470624021461041857600080fd5b80631f3fed8f1461034e57806323b872dd14610364578063274a533c1461038457806327c8f8351461039a57600080fd5b806310d5de53116101d757806310d5de53146102b15780631694505e146102e157806318160ddd146103195780631a8145bb1461033857600080fd5b806306fdde0314610214578063095ea7b31461023f5780630cc835a31461026f5780631095793c1461029157600080fd5b3661020f57005b600080fd5b34801561022057600080fd5b506102296106a1565b60405161023691906112e3565b60405180910390f35b34801561024b57600080fd5b5061025f61025a366004611354565b610733565b6040519015158152602001610236565b34801561027b57600080fd5b5061028f61028a36600461137e565b61074a565b005b34801561029d57600080fd5b5061028f6102ac36600461137e565b610782565b3480156102bd57600080fd5b5061025f6102cc366004611397565b60116020526000908152604090205460ff1681565b3480156102ed57600080fd5b50600654610301906001600160a01b031681565b6040516001600160a01b039091168152602001610236565b34801561032557600080fd5b506002545b604051908152602001610236565b34801561034457600080fd5b5061032a600e5481565b34801561035a57600080fd5b5061032a600f5481565b34801561037057600080fd5b5061025f61037f3660046113b2565b61079b565b34801561039057600080fd5b5061032a600d5481565b3480156103a657600080fd5b5061030161dead81565b3480156103bc57600080fd5b5061032a60095481565b3480156103d257600080fd5b5060405160128152602001610236565b3480156103ee57600080fd5b5061025f6103fd366004611354565b61084c565b34801561040e57600080fd5b5061032a60025481565b34801561042457600080fd5b5061032a60085481565b34801561043a57600080fd5b50600754610301906001600160a01b031681565b34801561045a57600080fd5b5061025f610469366004611397565b6001600160a01b031660009081526010602052604090205460ff1690565b34801561049357600080fd5b5061032a6104a2366004611397565b6001600160a01b031660009081526020819052604090205490565b3480156104c957600080fd5b5061028f610883565b3480156104de57600080fd5b50600a54610301906001600160a01b031681565b3480156104fe57600080fd5b5061028f61050d36600461137e565b6108b9565b34801561051e57600080fd5b506005546001600160a01b0316610301565b34801561053c57600080fd5b506102296108e8565b34801561055157600080fd5b5061025f610560366004611354565b6108f7565b34801561057157600080fd5b5061025f610580366004611354565b610992565b34801561059157600080fd5b5061022961099f565b3480156105a657600080fd5b5061025f6105b5366004611397565b60136020526000908152604090205460ff1681565b3480156105d657600080fd5b5061032a600c5481565b3480156105ec57600080fd5b5061025f6105fb366004611397565b60126020526000908152604090205460ff1681565b34801561061c57600080fd5b50610229610a2d565b34801561063157600080fd5b5061032a6106403660046113ee565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561067757600080fd5b5061028f610686366004611397565b610a3a565b34801561069757600080fd5b5061032a600b5481565b6060600380546106b090611421565b80601f01602080910402602001604051908101604052809291908181526020018280546106dc90611421565b80156107295780601f106106fe57610100808354040283529160200191610729565b820191906000526020600020905b81548152906001019060200180831161070c57829003601f168201915b5050505050905090565b6000610740338484610ad2565b5060015b92915050565b6005546001600160a01b0316331461077d5760405162461bcd60e51b81526004016107749061145c565b60405180910390fd5b600855565b600a54610798906001600160a01b031682610bf7565b50565b60006107a8848484610d5f565b6001600160a01b03841660009081526001602090815260408083203384529091529020548281101561082d5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610774565b610841853361083c86856114a7565b610ad2565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161074091859061083c9086906114be565b6005546001600160a01b031633146108ad5760405162461bcd60e51b81526004016107749061145c565b6108b76000611073565b565b6005546001600160a01b031633146108e35760405162461bcd60e51b81526004016107749061145c565b600955565b6060600480546106b090611421565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156109795760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610774565b610988338561083c86856114a7565b5060019392505050565b6000610740338484610d5f565b600480546109ac90611421565b80601f01602080910402602001604051908101604052809291908181526020018280546109d890611421565b8015610a255780601f106109fa57610100808354040283529160200191610a25565b820191906000526020600020905b815481529060010190602001808311610a0857829003601f168201915b505050505081565b600380546109ac90611421565b6005546001600160a01b03163314610a645760405162461bcd60e51b81526004016107749061145c565b6001600160a01b038116610ac95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610774565b61079881611073565b6001600160a01b038316610b345760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610774565b6001600160a01b038216610b955760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610774565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038216610c575760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610774565b6001600160a01b03821660009081526020819052604090205481811015610ccb5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610774565b6001600160a01b038316600090815260208190526040902054610cee90836110c5565b6001600160a01b03841660009081526020819052604081209190915560028054849290610d1c9084906114a7565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610bea565b60008111610dce5760405162461bcd60e51b815260206004820152603660248201527f5b5f7472616e736665725d3a205472616e7366657220616d6f756e74206d7573604482015275742062652067726561746572207468616e207a65726f60501b6064820152608401610774565b6001600160a01b038316610e385760405162461bcd60e51b815260206004820152602b60248201527f5b5f7472616e736665725d3a205472616e736665722066726f6d20746865207a60448201526a65726f206164647265737360a81b6064820152608401610774565b6001600160a01b038216610ea05760405162461bcd60e51b815260206004820152602960248201527f5b5f7472616e736665725d3a205472616e7366657220746f20746865207a65726044820152686f206164647265737360b81b6064820152608401610774565b6001600160a01b0383166000908152601160205260408120546001919060ff161580610ee557506001600160a01b03841660009081526011602052604090205460ff16155b15610f4757600c54831115610f475760405162461bcd60e51b815260206004820152602260248201527f5b5f7472616e736665725d3a204d6178207472616e73616374696f6e204c696d6044820152611a5d60f21b6064820152608401610774565b6001600160a01b03851660009081526010602052604090205460ff1680610f8657506001600160a01b03841660009081526010602052604090205460ff165b15610f9057600091505b8115611052576001600160a01b03851660009081526013602052604090205460ff168015610fc057506000600854115b15610fe857610fe56064610fdf600854866110f390919063ffffffff16565b906110ff565b90505b6001600160a01b03841660009081526013602052604090205460ff16801561101257506000600954115b15611034576110316064610fdf600954866110f390919063ffffffff16565b90505b801561105257600a546110529086906001600160a01b03168361110b565b600061105e82856114a7565b905061106b86868361110b565b505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000816110e257506effffffffffffffffffffffffffffff610744565b6110ec82846114a7565b9392505050565b60006110ec82846114d6565b60006110ec82846114f5565b6001600160a01b03831661116f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610774565b6001600160a01b0382166111d15760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610774565b6001600160a01b038316600090815260208190526040902054818110156112495760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610774565b61125382826114a7565b6001600160a01b0380861660009081526020819052604080822093909355908516815290812080548492906112899084906114be565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112d591815260200190565b60405180910390a350505050565b600060208083528351808285015260005b81811015611310578581018301518582016040015282016112f4565b81811115611322576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b038116811461134f57600080fd5b919050565b6000806040838503121561136757600080fd5b61137083611338565b946020939093013593505050565b60006020828403121561139057600080fd5b5035919050565b6000602082840312156113a957600080fd5b6110ec82611338565b6000806000606084860312156113c757600080fd5b6113d084611338565b92506113de60208501611338565b9150604084013590509250925092565b6000806040838503121561140157600080fd5b61140a83611338565b915061141860208401611338565b90509250929050565b600181811c9082168061143557607f821691505b6020821081141561145657634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000828210156114b9576114b9611491565b500390565b600082198211156114d1576114d1611491565b500190565b60008160001904831182151516156114f0576114f0611491565b500290565b60008261151257634e487b7160e01b600052601260045260246000fd5b50049056fea26469706673582212206d7362d9611c04c16df93c591272b9db40d13519d8781a4ab359d5302557607264736f6c634300080a0033

Deployed Bytecode

0x6080604052600436106102085760003560e01c806349bd5a5e11610118578063a9059cbb116100a0578063d1d7d7ef1161006f578063d1d7d7ef146105e0578063d28d885214610610578063dd62ed3e14610625578063f2fde38b1461066b578063f8b45b051461068b57600080fd5b8063a9059cbb14610565578063b09f126614610585578063b62496f51461059a578063c8c8ebe4146105ca57600080fd5b806375f0a874116100e757806375f0a874146104d25780638b4cee08146104f25780638da5cb5b1461051257806395d89b4114610530578063a457c2d71461054557600080fd5b806349bd5a5e1461042e5780634fbee1931461044e57806370a0823114610487578063715018a6146104bd57600080fd5b80631f3fed8f1161019b5780632b14ca561161016a5780632b14ca56146103b0578063313ce567146103c657806339509351146103e25780633eaaf86b14610402578063470624021461041857600080fd5b80631f3fed8f1461034e57806323b872dd14610364578063274a533c1461038457806327c8f8351461039a57600080fd5b806310d5de53116101d757806310d5de53146102b15780631694505e146102e157806318160ddd146103195780631a8145bb1461033857600080fd5b806306fdde0314610214578063095ea7b31461023f5780630cc835a31461026f5780631095793c1461029157600080fd5b3661020f57005b600080fd5b34801561022057600080fd5b506102296106a1565b60405161023691906112e3565b60405180910390f35b34801561024b57600080fd5b5061025f61025a366004611354565b610733565b6040519015158152602001610236565b34801561027b57600080fd5b5061028f61028a36600461137e565b61074a565b005b34801561029d57600080fd5b5061028f6102ac36600461137e565b610782565b3480156102bd57600080fd5b5061025f6102cc366004611397565b60116020526000908152604090205460ff1681565b3480156102ed57600080fd5b50600654610301906001600160a01b031681565b6040516001600160a01b039091168152602001610236565b34801561032557600080fd5b506002545b604051908152602001610236565b34801561034457600080fd5b5061032a600e5481565b34801561035a57600080fd5b5061032a600f5481565b34801561037057600080fd5b5061025f61037f3660046113b2565b61079b565b34801561039057600080fd5b5061032a600d5481565b3480156103a657600080fd5b5061030161dead81565b3480156103bc57600080fd5b5061032a60095481565b3480156103d257600080fd5b5060405160128152602001610236565b3480156103ee57600080fd5b5061025f6103fd366004611354565b61084c565b34801561040e57600080fd5b5061032a60025481565b34801561042457600080fd5b5061032a60085481565b34801561043a57600080fd5b50600754610301906001600160a01b031681565b34801561045a57600080fd5b5061025f610469366004611397565b6001600160a01b031660009081526010602052604090205460ff1690565b34801561049357600080fd5b5061032a6104a2366004611397565b6001600160a01b031660009081526020819052604090205490565b3480156104c957600080fd5b5061028f610883565b3480156104de57600080fd5b50600a54610301906001600160a01b031681565b3480156104fe57600080fd5b5061028f61050d36600461137e565b6108b9565b34801561051e57600080fd5b506005546001600160a01b0316610301565b34801561053c57600080fd5b506102296108e8565b34801561055157600080fd5b5061025f610560366004611354565b6108f7565b34801561057157600080fd5b5061025f610580366004611354565b610992565b34801561059157600080fd5b5061022961099f565b3480156105a657600080fd5b5061025f6105b5366004611397565b60136020526000908152604090205460ff1681565b3480156105d657600080fd5b5061032a600c5481565b3480156105ec57600080fd5b5061025f6105fb366004611397565b60126020526000908152604090205460ff1681565b34801561061c57600080fd5b50610229610a2d565b34801561063157600080fd5b5061032a6106403660046113ee565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561067757600080fd5b5061028f610686366004611397565b610a3a565b34801561069757600080fd5b5061032a600b5481565b6060600380546106b090611421565b80601f01602080910402602001604051908101604052809291908181526020018280546106dc90611421565b80156107295780601f106106fe57610100808354040283529160200191610729565b820191906000526020600020905b81548152906001019060200180831161070c57829003601f168201915b5050505050905090565b6000610740338484610ad2565b5060015b92915050565b6005546001600160a01b0316331461077d5760405162461bcd60e51b81526004016107749061145c565b60405180910390fd5b600855565b600a54610798906001600160a01b031682610bf7565b50565b60006107a8848484610d5f565b6001600160a01b03841660009081526001602090815260408083203384529091529020548281101561082d5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610774565b610841853361083c86856114a7565b610ad2565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161074091859061083c9086906114be565b6005546001600160a01b031633146108ad5760405162461bcd60e51b81526004016107749061145c565b6108b76000611073565b565b6005546001600160a01b031633146108e35760405162461bcd60e51b81526004016107749061145c565b600955565b6060600480546106b090611421565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156109795760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610774565b610988338561083c86856114a7565b5060019392505050565b6000610740338484610d5f565b600480546109ac90611421565b80601f01602080910402602001604051908101604052809291908181526020018280546109d890611421565b8015610a255780601f106109fa57610100808354040283529160200191610a25565b820191906000526020600020905b815481529060010190602001808311610a0857829003601f168201915b505050505081565b600380546109ac90611421565b6005546001600160a01b03163314610a645760405162461bcd60e51b81526004016107749061145c565b6001600160a01b038116610ac95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610774565b61079881611073565b6001600160a01b038316610b345760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610774565b6001600160a01b038216610b955760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610774565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038216610c575760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610774565b6001600160a01b03821660009081526020819052604090205481811015610ccb5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610774565b6001600160a01b038316600090815260208190526040902054610cee90836110c5565b6001600160a01b03841660009081526020819052604081209190915560028054849290610d1c9084906114a7565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610bea565b60008111610dce5760405162461bcd60e51b815260206004820152603660248201527f5b5f7472616e736665725d3a205472616e7366657220616d6f756e74206d7573604482015275742062652067726561746572207468616e207a65726f60501b6064820152608401610774565b6001600160a01b038316610e385760405162461bcd60e51b815260206004820152602b60248201527f5b5f7472616e736665725d3a205472616e736665722066726f6d20746865207a60448201526a65726f206164647265737360a81b6064820152608401610774565b6001600160a01b038216610ea05760405162461bcd60e51b815260206004820152602960248201527f5b5f7472616e736665725d3a205472616e7366657220746f20746865207a65726044820152686f206164647265737360b81b6064820152608401610774565b6001600160a01b0383166000908152601160205260408120546001919060ff161580610ee557506001600160a01b03841660009081526011602052604090205460ff16155b15610f4757600c54831115610f475760405162461bcd60e51b815260206004820152602260248201527f5b5f7472616e736665725d3a204d6178207472616e73616374696f6e204c696d6044820152611a5d60f21b6064820152608401610774565b6001600160a01b03851660009081526010602052604090205460ff1680610f8657506001600160a01b03841660009081526010602052604090205460ff165b15610f9057600091505b8115611052576001600160a01b03851660009081526013602052604090205460ff168015610fc057506000600854115b15610fe857610fe56064610fdf600854866110f390919063ffffffff16565b906110ff565b90505b6001600160a01b03841660009081526013602052604090205460ff16801561101257506000600954115b15611034576110316064610fdf600954866110f390919063ffffffff16565b90505b801561105257600a546110529086906001600160a01b03168361110b565b600061105e82856114a7565b905061106b86868361110b565b505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000816110e257506effffffffffffffffffffffffffffff610744565b6110ec82846114a7565b9392505050565b60006110ec82846114d6565b60006110ec82846114f5565b6001600160a01b03831661116f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610774565b6001600160a01b0382166111d15760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610774565b6001600160a01b038316600090815260208190526040902054818110156112495760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610774565b61125382826114a7565b6001600160a01b0380861660009081526020819052604080822093909355908516815290812080548492906112899084906114be565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112d591815260200190565b60405180910390a350505050565b600060208083528351808285015260005b81811015611310578581018301518582016040015282016112f4565b81811115611322576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b038116811461134f57600080fd5b919050565b6000806040838503121561136757600080fd5b61137083611338565b946020939093013593505050565b60006020828403121561139057600080fd5b5035919050565b6000602082840312156113a957600080fd5b6110ec82611338565b6000806000606084860312156113c757600080fd5b6113d084611338565b92506113de60208501611338565b9150604084013590509250925092565b6000806040838503121561140157600080fd5b61140a83611338565b915061141860208401611338565b90509250929050565b600181811c9082168061143557607f821691505b6020821081141561145657634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000828210156114b9576114b9611491565b500390565b600082198211156114d1576114d1611491565b500190565b60008160001904831182151516156114f0576114f0611491565b500290565b60008261151257634e487b7160e01b600052601260045260246000fd5b50049056fea26469706673582212206d7362d9611c04c16df93c591272b9db40d13519d8781a4ab359d5302557607264736f6c634300080a0033

Deployed Bytecode Sourcemap

34048:5233:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23974:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26141:169;;;;;;;;;;-1:-1:-1;26141:169:0;;;;;:::i;:::-;;:::i;:::-;;;1218:14:1;;1211:22;1193:41;;1181:2;1166:18;26141:169:0;1053:187:1;37777:154:0;;;;;;;;;;-1:-1:-1;37777:154:0;;;;;:::i;:::-;;:::i;:::-;;37372:95;;;;;;;;;;-1:-1:-1;37372:95:0;;;;;:::i;:::-;;:::i;34759:63::-;;;;;;;;;;-1:-1:-1;34759:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;34122:41;;;;;;;;;;-1:-1:-1;34122:41:0;;;;-1:-1:-1;;;;;34122:41:0;;;;;;-1:-1:-1;;;;;1811:32:1;;;1793:51;;1781:2;1766:18;34122:41:0;1621:229:1;25094:108:0;;;;;;;;;;-1:-1:-1;25182:12:0;;25094:108;;;2001:25:1;;;1989:2;1974:18;25094:108:0;1855:177:1;34620:33:0;;;;;;;;;;;;;;;;34660;;;;;;;;;;;;;;;;26792:456;;;;;;;;;;-1:-1:-1;26792:456:0;;;;;:::i;:::-;;:::i;34570:43::-;;;;;;;;;;;;;;;;34205:53;;;;;;;;;;;;34251:6;34205:53;;34333:26;;;;;;;;;;;;;;;;24936:93;;;;;;;;;;-1:-1:-1;24936:93:0;;25019:2;2720:36:1;;2708:2;2693:18;24936:93:0;2578:184:1;27657:215:0;;;;;;;;;;-1:-1:-1;27657:215:0;;;;;:::i;:::-;;:::i;23384:27::-;;;;;;;;;;;;;;;;34301:25;;;;;;;;;;;;;;;;34170:28;;;;;;;;;;-1:-1:-1;34170:28:0;;;;-1:-1:-1;;;;;34170:28:0;;;37475:126;;;;;;;;;;-1:-1:-1;37475:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;37565:28:0;37541:4;37565:28;;;:19;:28;;;;;;;;;37475:126;25265:127;;;;;;;;;;-1:-1:-1;25265:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;25366:18:0;25339:7;25366:18;;;;;;;;;;;;25265:127;17751:103;;;;;;;;;;;;;:::i;34366:84::-;;;;;;;;;;-1:-1:-1;34366:84:0;;;;-1:-1:-1;;;;;34366:84:0;;;37609:160;;;;;;;;;;-1:-1:-1;37609:160:0;;;;;:::i;:::-;;:::i;17100:87::-;;;;;;;;;;-1:-1:-1;17173:6:0;;-1:-1:-1;;;;;17173:6:0;17100:87;;24193:104;;;;;;;;;;;;;:::i;28375:377::-;;;;;;;;;;-1:-1:-1;28375:377:0;;;;;:::i;:::-;;:::i;25605:175::-;;;;;;;;;;-1:-1:-1;25605:175:0;;;;;:::i;:::-;;:::i;23446:21::-;;;;;;;;;;;;;:::i;34892:57::-;;;;;;;;;;-1:-1:-1;34892:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;34507:56;;;;;;;;;;;;;;;;34829;;;;;;;;;;-1:-1:-1;34829:56:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;23420:19;;;;;;;;;;;;;:::i;25843:151::-;;;;;;;;;;-1:-1:-1;25843:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;25959:18:0;;;25932:7;25959:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;25843:151;18009:201;;;;;;;;;;-1:-1:-1;18009:201:0;;;;;:::i;:::-;;:::i;34457:43::-;;;;;;;;;;;;;;;;23974:100;24028:13;24061:5;24054:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23974:100;:::o;26141:169::-;26224:4;26241:39;15971:10;26264:7;26273:6;26241:8;:39::i;:::-;-1:-1:-1;26298:4:0;26141:169;;;;;:::o;37777:154::-;17173:6;;-1:-1:-1;;;;;17173:6:0;15971:10;17320:23;17312:68;;;;-1:-1:-1;;;17312:68:0;;;;;;;:::i;:::-;;;;;;;;;37907:6:::1;:16:::0;37777:154::o;37372:95::-;37435:15;;37429:30;;-1:-1:-1;;;;;37435:15:0;37452:6;37429:5;:30::i;:::-;37372:95;:::o;26792:456::-;26932:4;26949:36;26959:6;26967:9;26978:6;26949:9;:36::i;:::-;-1:-1:-1;;;;;27025:19:0;;26998:24;27025:19;;;:11;:19;;;;;;;;15971:10;27025:33;;;;;;;;27077:26;;;;27069:79;;;;-1:-1:-1;;;27069:79:0;;4339:2:1;27069:79:0;;;4321:21:1;4378:2;4358:18;;;4351:30;4417:34;4397:18;;;4390:62;-1:-1:-1;;;4468:18:1;;;4461:38;4516:19;;27069:79:0;4137:404:1;27069:79:0;27159:57;27168:6;15971:10;27190:25;27209:6;27190:16;:25;:::i;:::-;27159:8;:57::i;:::-;-1:-1:-1;27236:4:0;;26792:456;-1:-1:-1;;;;26792:456:0:o;27657:215::-;15971:10;27745:4;27794:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;27794:34:0;;;;;;;;;;27745:4;;27762:80;;27785:7;;27794:47;;27831:10;;27794:47;:::i;17751:103::-;17173:6;;-1:-1:-1;;;;;17173:6:0;15971:10;17320:23;17312:68;;;;-1:-1:-1;;;17312:68:0;;;;;;;:::i;:::-;17816:30:::1;17843:1;17816:18;:30::i;:::-;17751:103::o:0;37609:160::-;17173:6;;-1:-1:-1;;;;;17173:6:0;15971:10;17320:23;17312:68;;;;-1:-1:-1;;;17312:68:0;;;;;;;:::i;:::-;37743:7:::1;:18:::0;37609:160::o;24193:104::-;24249:13;24282:7;24275:14;;;;;:::i;28375:377::-;15971:10;28468:4;28512:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;28512:34:0;;;;;;;;;;28565:35;;;;28557:85;;;;-1:-1:-1;;;28557:85:0;;5503:2:1;28557:85:0;;;5485:21:1;5542:2;5522:18;;;5515:30;5581:34;5561:18;;;5554:62;-1:-1:-1;;;5632:18:1;;;5625:35;5677:19;;28557:85:0;5301:401:1;28557:85:0;28653:67;15971:10;28676:7;28685:34;28704:15;28685:16;:34;:::i;28653:67::-;-1:-1:-1;28740:4:0;;28375:377;-1:-1:-1;;;28375:377:0:o;25605:175::-;25691:4;25708:42;15971:10;25732:9;25743:6;25708:9;:42::i;23446:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23420:19::-;;;;;;;:::i;18009:201::-;17173:6;;-1:-1:-1;;;;;17173:6:0;15971:10;17320:23;17312:68;;;;-1:-1:-1;;;17312:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;18098:22:0;::::1;18090:73;;;::::0;-1:-1:-1;;;18090:73:0;;5909:2:1;18090:73:0::1;::::0;::::1;5891:21:1::0;5948:2;5928:18;;;5921:30;5987:34;5967:18;;;5960:62;-1:-1:-1;;;6038:18:1;;;6031:36;6084:19;;18090:73:0::1;5707:402:1::0;18090:73:0::1;18174:28;18193:8;18174:18;:28::i;31958:380::-:0;-1:-1:-1;;;;;32094:19:0;;32086:68;;;;-1:-1:-1;;;32086:68:0;;6316:2:1;32086:68:0;;;6298:21:1;6355:2;6335:18;;;6328:30;6394:34;6374:18;;;6367:62;-1:-1:-1;;;6445:18:1;;;6438:34;6489:19;;32086:68:0;6114:400:1;32086:68:0;-1:-1:-1;;;;;32173:21:0;;32165:68;;;;-1:-1:-1;;;32165:68:0;;6721:2:1;32165:68:0;;;6703:21:1;6760:2;6740:18;;;6733:30;6799:34;6779:18;;;6772:62;-1:-1:-1;;;6850:18:1;;;6843:32;6892:19;;32165:68:0;6519:398:1;32165:68:0;-1:-1:-1;;;;;32246:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;32298:32;;2001:25:1;;;32298:32:0;;1974:18:1;32298:32:0;;;;;;;;31958:380;;;:::o;30958:562::-;-1:-1:-1;;;;;31042:21:0;;31034:67;;;;-1:-1:-1;;;31034:67:0;;7124:2:1;31034:67:0;;;7106:21:1;7163:2;7143:18;;;7136:30;7202:34;7182:18;;;7175:62;-1:-1:-1;;;7253:18:1;;;7246:31;7294:19;;31034:67:0;6922:397:1;31034:67:0;-1:-1:-1;;;;;31201:18:0;;31176:22;31201:18;;;;;;;;;;;31238:24;;;;31230:71;;;;-1:-1:-1;;;31230:71:0;;7526:2:1;31230:71:0;;;7508:21:1;7565:2;7545:18;;;7538:30;7604:34;7584:18;;;7577:62;-1:-1:-1;;;7655:18:1;;;7648:32;7697:19;;31230:71:0;7324:398:1;31230:71:0;-1:-1:-1;;;;;31333:18:0;;:9;:18;;;;;;;;;;;:30;;31356:6;31333:22;:30::i;:::-;-1:-1:-1;;;;;31312:18:0;;:9;:18;;;;;;;;;;:51;;;;31374:12;:22;;31390:6;;31312:9;31374:22;;31390:6;;31374:22;:::i;:::-;;;;-1:-1:-1;;31414:37:0;;2001:25:1;;;31440:1:0;;-1:-1:-1;;;;;31414:37:0;;;;;1989:2:1;1974:18;31414:37:0;1855:177:1;37939:1302:0;38080:1;38071:6;:10;38063:77;;;;-1:-1:-1;;;38063:77:0;;7929:2:1;38063:77:0;;;7911:21:1;7968:2;7948:18;;;7941:30;8007:34;7987:18;;;7980:62;-1:-1:-1;;;8058:18:1;;;8051:52;8120:19;;38063:77:0;7727:418:1;38063:77:0;-1:-1:-1;;;;;38159:18:0;;38151:74;;;;-1:-1:-1;;;38151:74:0;;8352:2:1;38151:74:0;;;8334:21:1;8391:2;8371:18;;;8364:30;8430:34;8410:18;;;8403:62;-1:-1:-1;;;8481:18:1;;;8474:41;8532:19;;38151:74:0;8150:407:1;38151:74:0;-1:-1:-1;;;;;38244:16:0;;38236:70;;;;-1:-1:-1;;;38236:70:0;;8764:2:1;38236:70:0;;;8746:21:1;8803:2;8783:18;;;8776:30;8842:34;8822:18;;;8815:62;-1:-1:-1;;;8893:18:1;;;8886:39;8942:19;;38236:70:0;8562:405:1;38236:70:0;-1:-1:-1;;;;;38383:37:0;;38319:12;38383:37;;;:31;:37;;;;;;38334:4;;38319:12;38383:37;;38382:38;;:78;;-1:-1:-1;;;;;;38425:35:0;;;;;;:31;:35;;;;;;;;38424:36;38382:78;38378:188;;;38495:20;;38485:6;:30;;38477:77;;;;-1:-1:-1;;;38477:77:0;;9174:2:1;38477:77:0;;;9156:21:1;9213:2;9193:18;;;9186:30;9252:34;9232:18;;;9225:62;-1:-1:-1;;;9303:18:1;;;9296:32;9345:19;;38477:77:0;8972:398:1;38477:77:0;-1:-1:-1;;;;;38582:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;38611:23:0;;;;;;:19;:23;;;;;;;;38582:52;38578:100;;;38661:5;38651:15;;38578:100;38694:7;38690:447;;;-1:-1:-1;;;;;38745:31:0;;;;;;:25;:31;;;;;;;;:45;;;;;38789:1;38780:6;;:10;38745:45;38741:120;;;38818:27;38841:3;38818:18;38829:6;;38818;:10;;:18;;;;:::i;:::-;:22;;:27::i;:::-;38811:34;;38741:120;-1:-1:-1;;;;;38903:29:0;;;;;;:25;:29;;;;;;;;:44;;;;;38946:1;38936:7;;:11;38903:44;38899:120;;;38975:28;38999:3;38975:19;38986:7;;38975:6;:10;;:19;;;;:::i;:28::-;38968:35;;38899:120;39037:8;;39033:93;;39088:15;;39066:44;;39082:4;;-1:-1:-1;;;;;39088:15:0;39105:4;39066:15;:44::i;:::-;39147:20;39170:13;39179:4;39170:6;:13;:::i;:::-;39147:36;;39194:39;39210:4;39216:2;39220:12;39194:15;:39::i;:::-;38052:1189;;;37939:1302;;;:::o;18370:191::-;18463:6;;;-1:-1:-1;;;;;18480:17:0;;;-1:-1:-1;;;;;;18480:17:0;;;;;;;18513:40;;18463:6;;;18480:17;18463:6;;18513:40;;18444:16;;18513:40;18433:128;18370:191;:::o;11408:139::-;11466:7;11490:6;11486:30;;-1:-1:-1;11498:18:0;;;11486:30;11534:5;11538:1;11534;:5;:::i;:::-;11527:12;11408:139;-1:-1:-1;;;11408:139:0:o;11806:98::-;11864:7;11891:5;11895:1;11891;:5;:::i;12205:98::-;12263:7;12290:5;12294:1;12290;:5;:::i;29242:697::-;-1:-1:-1;;;;;29382:20:0;;29374:70;;;;-1:-1:-1;;;29374:70:0;;9972:2:1;29374:70:0;;;9954:21:1;10011:2;9991:18;;;9984:30;10050:34;10030:18;;;10023:62;-1:-1:-1;;;10101:18:1;;;10094:35;10146:19;;29374:70:0;9770:401:1;29374:70:0;-1:-1:-1;;;;;29463:23:0;;29455:71;;;;-1:-1:-1;;;29455:71:0;;10378:2:1;29455:71:0;;;10360:21:1;10417:2;10397:18;;;10390:30;10456:34;10436:18;;;10429:62;-1:-1:-1;;;10507:18:1;;;10500:33;10550:19;;29455:71:0;10176:399:1;29455:71:0;-1:-1:-1;;;;;29623:17:0;;29599:21;29623:17;;;;;;;;;;;29659:23;;;;29651:74;;;;-1:-1:-1;;;29651:74:0;;10782:2:1;29651:74:0;;;10764:21:1;10821:2;10801:18;;;10794:30;10860:34;10840:18;;;10833:62;-1:-1:-1;;;10911:18:1;;;10904:36;10957:19;;29651:74:0;10580:402:1;29651:74:0;29756:22;29772:6;29756:13;:22;:::i;:::-;-1:-1:-1;;;;;29736:17:0;;;:9;:17;;;;;;;;;;;:42;;;;29789:20;;;;;;;;:30;;29813:6;;29736:9;29789:30;;29813:6;;29789:30;:::i;:::-;;;;;;;;29854:9;-1:-1:-1;;;;;29837:35:0;29846:6;-1:-1:-1;;;;;29837:35:0;;29865:6;29837:35;;;;2001:25:1;;1989:2;1974:18;;1855:177;29837:35:0;;;;;;;;29363:576;29242:697;;;:::o;14:597:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:173::-;684:20;;-1:-1:-1;;;;;733:31:1;;723:42;;713:70;;779:1;776;769:12;713:70;616:173;;;:::o;794:254::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;1038:2;1023:18;;;;1010:32;;-1:-1:-1;;;794:254:1:o;1245:180::-;1304:6;1357:2;1345:9;1336:7;1332:23;1328:32;1325:52;;;1373:1;1370;1363:12;1325:52;-1:-1:-1;1396:23:1;;1245:180;-1:-1:-1;1245:180:1:o;1430:186::-;1489:6;1542:2;1530:9;1521:7;1517:23;1513:32;1510:52;;;1558:1;1555;1548:12;1510:52;1581:29;1600:9;1581:29;:::i;2037:328::-;2114:6;2122;2130;2183:2;2171:9;2162:7;2158:23;2154:32;2151:52;;;2199:1;2196;2189:12;2151:52;2222:29;2241:9;2222:29;:::i;:::-;2212:39;;2270:38;2304:2;2293:9;2289:18;2270:38;:::i;:::-;2260:48;;2355:2;2344:9;2340:18;2327:32;2317:42;;2037:328;;;;;:::o;2767:260::-;2835:6;2843;2896:2;2884:9;2875:7;2871:23;2867:32;2864:52;;;2912:1;2909;2902:12;2864:52;2935:29;2954:9;2935:29;:::i;:::-;2925:39;;2983:38;3017:2;3006:9;3002:18;2983:38;:::i;:::-;2973:48;;2767:260;;;;;:::o;3032:380::-;3111:1;3107:12;;;;3154;;;3175:61;;3229:4;3221:6;3217:17;3207:27;;3175:61;3282:2;3274:6;3271:14;3251:18;3248:38;3245:161;;;3328:10;3323:3;3319:20;3316:1;3309:31;3363:4;3360:1;3353:15;3391:4;3388:1;3381:15;3245:161;;3032:380;;;:::o;3417:356::-;3619:2;3601:21;;;3638:18;;;3631:30;3697:34;3692:2;3677:18;;3670:62;3764:2;3749:18;;3417:356::o;4546:127::-;4607:10;4602:3;4598:20;4595:1;4588:31;4638:4;4635:1;4628:15;4662:4;4659:1;4652:15;4678:125;4718:4;4746:1;4743;4740:8;4737:34;;;4751:18;;:::i;:::-;-1:-1:-1;4788:9:1;;4678:125::o;4808:128::-;4848:3;4879:1;4875:6;4872:1;4869:13;4866:39;;;4885:18;;:::i;:::-;-1:-1:-1;4921:9:1;;4808:128::o;9375:168::-;9415:7;9481:1;9477;9473:6;9469:14;9466:1;9463:21;9458:1;9451:9;9444:17;9440:45;9437:71;;;9488:18;;:::i;:::-;-1:-1:-1;9528:9:1;;9375:168::o;9548:217::-;9588:1;9614;9604:132;;9658:10;9653:3;9649:20;9646:1;9639:31;9693:4;9690:1;9683:15;9721:4;9718:1;9711:15;9604:132;-1:-1:-1;9750:9:1;;9548:217::o

Swarm Source

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