ETH Price: $2,358.49 (+1.37%)

Token

SirGPT (SIR)
 

Overview

Max Total Supply

1,417,000,000 SIR

Holders

116

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
533,837.603050101672267327 SIR

Value
$0.00
0xef0e78e967537e95c2882b3defc4d2b8175de236
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:
SirGPT

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 777 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-03-29
*/

/*///////////////////////////////////////////////////////////////////
     .----------------.  .----------------.  .----------------. 
    | .--------------. || .--------------. || .--------------. |
    | |    _______   | || |     _____    | || |  _______     | |
    | |   /  ___  |  | || |    |_   _|   | || | |_   __ \    | |
    | |  |  (__ \_|  | || |      | |     | || |   | |__) |   | |
    | |   '.___`-.   | || |      | |     | || |   |  __ /    | |
    | |  |`\____) |  | || |     _| |_    | || |  _| |  \ \_  | |
    | |  |_______.'  | || |    |_____|   | || | |____| |___| | |
    | |              | || |              | || |              | |
    | '--------------' || '--------------' || '--------------' |
     '----------------'  '----------------'  '----------------'

    Kindly visit our Telegram https://t.me/SirGPT
    Allow me to introduce you to our website https://sirgpt.site/
    I have a Twitter follow proposal ser https://twitter.com/SirGPT

                ██████      ████████  █████  ██   ██ 
               ██  ████        ██    ██   ██  ██ ██  
               ██ ██ ██        ██    ███████   ███   
               ████  ██        ██    ██   ██  ██ ██  
                ██████         ██    ██   ██ ██   ██ 

     .----------------.  .----------------.  .----------------. 
    | .--------------. || .--------------. || .--------------. |
    | |    ______    | || |   ______     | || |  _________   | |
    | |  .' ___  |   | || |  |_   __ \   | || | |  _   _  |  | |
    | | / .'   \_|   | || |    | |__) |  | || | |_/ | | \_|  | |
    | | | |    ____  | || |    |  ___/   | || |     | |      | |
    | | \ `.___]  _| | || |   _| |_      | || |    _| |_     | |
    | |  `._____.'   | || |  |_____|     | || |   |_____|    | |
    | |              | || |              | || |              | |
    | '--------------' || '--------------' || '--------------' |
     '----------------'  '----------------'  '----------------' 
////////////////////////////////////////////////////////////////////*/


// SPDX-License-Identifier: MIT


pragma solidity ^0.8.18;


interface IERC20 {
    function totalSupply() external view returns (uint256);

    function balanceOf(address account) external view returns (uint256);

    function transfer(address recipient, uint256 amount) external returns (bool);

    function allowance(address owner, address spender) external view returns (uint256);

    function approve(address spender, uint256 amount) external returns (bool);

    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

    event Transfer(address indexed from, address indexed to, uint256 value);

    event Approval(address indexed owner, address indexed spender, uint256 value);
}

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

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

/**
 * @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.
 */
contract Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

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

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

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
 
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        unchecked {
            uint256 c = a + b;
            require(c >= a, "SafeMath: addition overflow");

            return c;
        }
    }

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

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

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

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

            return c;
        }
    }

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

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

            return c;
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function initialize(address, address) external;
}

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

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

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

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

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

contract SirGPT is Context, IERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public uniswapV2Router;
    address public uniswapV2Pair;

    string private constant _name = "SirGPT";
    string private constant _symbol = "SIR";
    uint8 private constant _decimals = 18;

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

    uint256 private _tTotal = 1_417_000_000 * 10**18; // Indian population
    uint256 public _maxWallet = 125_000_000 * 10**18;

    mapping (address => bool) public _isExcludedFromMaxWallet;
        
    constructor() {
        uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH());

        _tOwned[_msgSender()] = _tTotal;
        emit Transfer(address(0), _msgSender(), _tTotal);

        _isExcludedFromMaxWallet[msg.sender] = true;
        _isExcludedFromMaxWallet[uniswapV2Pair] = true;
        _isExcludedFromMaxWallet[address(uniswapV2Router)] = true;
        _isExcludedFromMaxWallet[address(0)] = true;
        _isExcludedFromMaxWallet[address(0xdead)] = true;
    }

    function name() public pure returns (string memory) {
        return _name;
    }

    function symbol() public pure returns (string memory) {
        return _symbol;
    }

    function decimals() public pure returns (uint8) {
        return _decimals;
    }

    function totalSupply() public view override returns (uint256) {
        return _tTotal;
    }

    function balanceOf(address account) public view override returns (uint256) {
        return _tOwned[account];
    }

    function transfer(address recipient, uint256 amount) public override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    function allowance(address owner, address spender) public view override returns (uint256) {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount) public override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()] - amount);
        return true;
    }

    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
        return true;
    }

    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] - subtractedValue);
        return true;
    }
    
    function _approve(address owner, address spender, uint256 amount) private {
        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);
    }

    receive() external payable {}

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) private {
        if (_isExcludedFromMaxWallet[to] || _isExcludedFromMaxWallet[from]) {
            if (_isExcludedFromMaxWallet[from]) {
                _simpleTransfer(from, to, amount);
                return;
            }
        }
        else {
            require(balanceOf(to) + amount <= _maxWallet, "Transfer amount exceeds the maxWalletAmount");
        }

        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
        
        _tOwned[from] = _tOwned[from].sub(amount, "Insufficient Balance");
        _tOwned[to] = _tOwned[to].add(amount);
        emit Transfer(from, to, amount);
    }

    function _simpleTransfer(
        address from,
        address to,
        uint256 amount
    ) private {        
        _tOwned[from] = _tOwned[from].sub(amount);
        _tOwned[to] = _tOwned[to].add(amount);
        emit Transfer(from, to, amount);
    }
}

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":"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":"","type":"address"}],"name":"_isExcludedFromMaxWallet","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxWallet","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":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","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":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","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":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","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"}]

60806040526b04941d6bebac4f50290000006005556a6765c793fa10079d00000060065534801561002f57600080fd5b50600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600180546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d9081179091556040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156100d5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100f99190610331565b6001600160a01b031663c9c6539630600160009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561015b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061017f9190610331565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156101cc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906101f09190610331565b600280546001600160a01b0319166001600160a01b03929092169190911790556005546003600061021e3390565b6001600160a01b03168152602081019190915260400160002055336001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60055460405161028091815260200190565b60405180910390a3336000908152600760205260408082208054600160ff1991821681179092556002546001600160a01b0390811685528385208054831684179055825416845291832080548316821790557f6d5257204ebe7d88fd91ae87941cb2dd9d8062b64ae5a2bd2d28ec40b9fbf6df805483168217905561dead9092527fb0c2646e02af70b79e3fe9277b98373379f54150e4e26b2b5650139f7a75a65d80549091169091179055610361565b60006020828403121561034357600080fd5b81516001600160a01b038116811461035a57600080fd5b9392505050565b610d82806103706000396000f3fe60806040526004361061012d5760003560e01c8063715018a6116100a5578063a457c2d711610074578063d1d7d7ef11610059578063d1d7d7ef14610381578063dd62ed3e146103b1578063f2fde38b146103f757600080fd5b8063a457c2d714610341578063a9059cbb1461036157600080fd5b8063715018a6146102ca57806382247ec0146102e15780638da5cb5b146102f757806395d89b411461031557600080fd5b806323b872dd116100fc57806339509351116100e1578063395093511461025457806349bd5a5e1461027457806370a082311461029457600080fd5b806323b872dd14610218578063313ce5671461023857600080fd5b806306fdde0314610139578063095ea7b3146101915780631694505e146101c157806318160ddd146101f957600080fd5b3661013457005b600080fd5b34801561014557600080fd5b5060408051808201909152600681527f536972475054000000000000000000000000000000000000000000000000000060208201525b6040516101889190610bf2565b60405180910390f35b34801561019d57600080fd5b506101b16101ac366004610c5c565b610417565b6040519015158152602001610188565b3480156101cd57600080fd5b506001546101e1906001600160a01b031681565b6040516001600160a01b039091168152602001610188565b34801561020557600080fd5b506005545b604051908152602001610188565b34801561022457600080fd5b506101b1610233366004610c86565b61042e565b34801561024457600080fd5b5060405160128152602001610188565b34801561026057600080fd5b506101b161026f366004610c5c565b610480565b34801561028057600080fd5b506002546101e1906001600160a01b031681565b3480156102a057600080fd5b5061020a6102af366004610cc2565b6001600160a01b031660009081526003602052604090205490565b3480156102d657600080fd5b506102df6104b7565b005b3480156102ed57600080fd5b5061020a60065481565b34801561030357600080fd5b506000546001600160a01b03166101e1565b34801561032157600080fd5b5060408051808201909152600381526229a4a960e91b602082015261017b565b34801561034d57600080fd5b506101b161035c366004610c5c565b61056d565b34801561036d57600080fd5b506101b161037c366004610c5c565b6105a4565b34801561038d57600080fd5b506101b161039c366004610cc2565b60076020526000908152604090205460ff1681565b3480156103bd57600080fd5b5061020a6103cc366004610cdd565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b34801561040357600080fd5b506102df610412366004610cc2565b6105b1565b60006104243384846106ef565b5060015b92915050565b600061043b848484610814565b6001600160a01b038416600090815260046020908152604080832033808552925290912054610476918691610471908690610d26565b6106ef565b5060019392505050565b3360008181526004602090815260408083206001600160a01b03871684529091528120549091610424918590610471908690610d39565b6000546001600160a01b031633146105165760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a36000805473ffffffffffffffffffffffffffffffffffffffff19169055565b3360008181526004602090815260408083206001600160a01b03871684529091528120549091610424918590610471908690610d26565b6000610424338484610814565b6000546001600160a01b0316331461060b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161050d565b6001600160a01b0381166106875760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161050d565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a36000805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b6001600160a01b0383166107515760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161050d565b6001600160a01b0382166107b25760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161050d565b6001600160a01b0383811660008181526004602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b03821660009081526007602052604090205460ff168061085357506001600160a01b03831660009081526007602052604090205460ff165b1561088e576001600160a01b03831660009081526007602052604090205460ff161561088957610884838383610b49565b505050565b61092f565b600654816108b1846001600160a01b031660009081526003602052604090205490565b6108bb9190610d39565b111561092f5760405162461bcd60e51b815260206004820152602b60248201527f5472616e7366657220616d6f756e74206578636565647320746865206d61785760448201527f616c6c6574416d6f756e74000000000000000000000000000000000000000000606482015260840161050d565b6001600160a01b0383166109935760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161050d565b6001600160a01b0382166109f55760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161050d565b60008111610a6b5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d75737420626520677265617465722060448201527f7468616e207a65726f0000000000000000000000000000000000000000000000606482015260840161050d565b604080518082018252601481527f496e73756666696369656e742042616c616e63650000000000000000000000006020808301919091526001600160a01b038616600090815260039091529190912054610ac6918390610b6a565b6001600160a01b038085166000908152600360205260408082209390935590841681522054610af59082610b96565b6001600160a01b0380841660008181526003602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906108079085815260200190565b6001600160a01b038316600090815260036020526040902054819003610ac6565b60008184841115610b8e5760405162461bcd60e51b815260040161050d9190610bf2565b505050900390565b600082820183811015610beb5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640161050d565b9392505050565b600060208083528351808285015260005b81811015610c1f57858101830151858201604001528201610c03565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610c5757600080fd5b919050565b60008060408385031215610c6f57600080fd5b610c7883610c40565b946020939093013593505050565b600080600060608486031215610c9b57600080fd5b610ca484610c40565b9250610cb260208501610c40565b9150604084013590509250925092565b600060208284031215610cd457600080fd5b610beb82610c40565b60008060408385031215610cf057600080fd5b610cf983610c40565b9150610d0760208401610c40565b90509250929050565b634e487b7160e01b600052601160045260246000fd5b8181038181111561042857610428610d10565b8082018082111561042857610428610d1056fea2646970667358221220270358112226814beba8fb33d0342a30f49fa4473feef962d4461e762f33327064736f6c63430008120033

Deployed Bytecode

0x60806040526004361061012d5760003560e01c8063715018a6116100a5578063a457c2d711610074578063d1d7d7ef11610059578063d1d7d7ef14610381578063dd62ed3e146103b1578063f2fde38b146103f757600080fd5b8063a457c2d714610341578063a9059cbb1461036157600080fd5b8063715018a6146102ca57806382247ec0146102e15780638da5cb5b146102f757806395d89b411461031557600080fd5b806323b872dd116100fc57806339509351116100e1578063395093511461025457806349bd5a5e1461027457806370a082311461029457600080fd5b806323b872dd14610218578063313ce5671461023857600080fd5b806306fdde0314610139578063095ea7b3146101915780631694505e146101c157806318160ddd146101f957600080fd5b3661013457005b600080fd5b34801561014557600080fd5b5060408051808201909152600681527f536972475054000000000000000000000000000000000000000000000000000060208201525b6040516101889190610bf2565b60405180910390f35b34801561019d57600080fd5b506101b16101ac366004610c5c565b610417565b6040519015158152602001610188565b3480156101cd57600080fd5b506001546101e1906001600160a01b031681565b6040516001600160a01b039091168152602001610188565b34801561020557600080fd5b506005545b604051908152602001610188565b34801561022457600080fd5b506101b1610233366004610c86565b61042e565b34801561024457600080fd5b5060405160128152602001610188565b34801561026057600080fd5b506101b161026f366004610c5c565b610480565b34801561028057600080fd5b506002546101e1906001600160a01b031681565b3480156102a057600080fd5b5061020a6102af366004610cc2565b6001600160a01b031660009081526003602052604090205490565b3480156102d657600080fd5b506102df6104b7565b005b3480156102ed57600080fd5b5061020a60065481565b34801561030357600080fd5b506000546001600160a01b03166101e1565b34801561032157600080fd5b5060408051808201909152600381526229a4a960e91b602082015261017b565b34801561034d57600080fd5b506101b161035c366004610c5c565b61056d565b34801561036d57600080fd5b506101b161037c366004610c5c565b6105a4565b34801561038d57600080fd5b506101b161039c366004610cc2565b60076020526000908152604090205460ff1681565b3480156103bd57600080fd5b5061020a6103cc366004610cdd565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b34801561040357600080fd5b506102df610412366004610cc2565b6105b1565b60006104243384846106ef565b5060015b92915050565b600061043b848484610814565b6001600160a01b038416600090815260046020908152604080832033808552925290912054610476918691610471908690610d26565b6106ef565b5060019392505050565b3360008181526004602090815260408083206001600160a01b03871684529091528120549091610424918590610471908690610d39565b6000546001600160a01b031633146105165760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a36000805473ffffffffffffffffffffffffffffffffffffffff19169055565b3360008181526004602090815260408083206001600160a01b03871684529091528120549091610424918590610471908690610d26565b6000610424338484610814565b6000546001600160a01b0316331461060b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161050d565b6001600160a01b0381166106875760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161050d565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a36000805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b6001600160a01b0383166107515760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161050d565b6001600160a01b0382166107b25760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161050d565b6001600160a01b0383811660008181526004602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b03821660009081526007602052604090205460ff168061085357506001600160a01b03831660009081526007602052604090205460ff165b1561088e576001600160a01b03831660009081526007602052604090205460ff161561088957610884838383610b49565b505050565b61092f565b600654816108b1846001600160a01b031660009081526003602052604090205490565b6108bb9190610d39565b111561092f5760405162461bcd60e51b815260206004820152602b60248201527f5472616e7366657220616d6f756e74206578636565647320746865206d61785760448201527f616c6c6574416d6f756e74000000000000000000000000000000000000000000606482015260840161050d565b6001600160a01b0383166109935760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161050d565b6001600160a01b0382166109f55760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161050d565b60008111610a6b5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d75737420626520677265617465722060448201527f7468616e207a65726f0000000000000000000000000000000000000000000000606482015260840161050d565b604080518082018252601481527f496e73756666696369656e742042616c616e63650000000000000000000000006020808301919091526001600160a01b038616600090815260039091529190912054610ac6918390610b6a565b6001600160a01b038085166000908152600360205260408082209390935590841681522054610af59082610b96565b6001600160a01b0380841660008181526003602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906108079085815260200190565b6001600160a01b038316600090815260036020526040902054819003610ac6565b60008184841115610b8e5760405162461bcd60e51b815260040161050d9190610bf2565b505050900390565b600082820183811015610beb5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640161050d565b9392505050565b600060208083528351808285015260005b81811015610c1f57858101830151858201604001528201610c03565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610c5757600080fd5b919050565b60008060408385031215610c6f57600080fd5b610c7883610c40565b946020939093013593505050565b600080600060608486031215610c9b57600080fd5b610ca484610c40565b9250610cb260208501610c40565b9150604084013590509250925092565b600060208284031215610cd457600080fd5b610beb82610c40565b60008060408385031215610cf057600080fd5b610cf983610c40565b9150610d0760208401610c40565b90509250929050565b634e487b7160e01b600052601160045260246000fd5b8181038181111561042857610428610d10565b8082018082111561042857610428610d1056fea2646970667358221220270358112226814beba8fb33d0342a30f49fa4473feef962d4461e762f33327064736f6c63430008120033

Deployed Bytecode Sourcemap

19055:4564:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20340:83;;;;;;;;;;-1:-1:-1;20410:5:0;;;;;;;;;;;;;;;;;20340:83;;;;;;;:::i;:::-;;;;;;;;21171:161;;;;;;;;;;-1:-1:-1;21171:161:0;;;;;:::i;:::-;;:::i;:::-;;;1192:14:1;;1185:22;1167:41;;1155:2;1140:18;21171:161:0;1027:187:1;19141:41:0;;;;;;;;;;-1:-1:-1;19141:41:0;;;;-1:-1:-1;;;;;19141:41:0;;;;;;-1:-1:-1;;;;;1410:55:1;;;1392:74;;1380:2;1365:18;19141:41:0;1219:253:1;20617:95:0;;;;;;;;;;-1:-1:-1;20697:7:0;;20617:95;;;1623:25:1;;;1611:2;1596:18;20617:95:0;1477:177:1;21340:266:0;;;;;;;;;;-1:-1:-1;21340:266:0;;;;;:::i;:::-;;:::i;20526:83::-;;;;;;;;;;-1:-1:-1;20526:83:0;;19354:2;2134:36:1;;2122:2;2107:18;20526:83:0;1992:184:1;21614:215:0;;;;;;;;;;-1:-1:-1;21614:215:0;;;;;:::i;:::-;;:::i;19189:28::-;;;;;;;;;;-1:-1:-1;19189:28:0;;;;-1:-1:-1;;;;;19189:28:0;;;20720:117;;;;;;;;;;-1:-1:-1;20720:117:0;;;;;:::i;:::-;-1:-1:-1;;;;;20813:16:0;20786:7;20813:16;;;:7;:16;;;;;;;20720:117;5039:148;;;;;;;;;;;;;:::i;:::-;;19570:48;;;;;;;;;;;;;;;;4396:79;;;;;;;;;;-1:-1:-1;4434:7:0;4461:6;-1:-1:-1;;;;;4461:6:0;4396:79;;20431:87;;;;;;;;;;-1:-1:-1;20503:7:0;;;;;;;;;;;;-1:-1:-1;;;20503:7:0;;;;20431:87;;21837:225;;;;;;;;;;-1:-1:-1;21837:225:0;;;;;:::i;:::-;;:::i;20845:167::-;;;;;;;;;;-1:-1:-1;20845:167:0;;;;;:::i;:::-;;:::i;19627:57::-;;;;;;;;;;-1:-1:-1;19627:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;21020:143;;;;;;;;;;-1:-1:-1;21020:143:0;;;;;:::i;:::-;-1:-1:-1;;;;;21128:18:0;;;21101:7;21128:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;21020:143;5342:244;;;;;;;;;;-1:-1:-1;5342:244:0;;;;;:::i;:::-;;:::i;21171:161::-;21246:4;21263:39;3131:10;21286:7;21295:6;21263:8;:39::i;:::-;-1:-1:-1;21320:4:0;21171:161;;;;;:::o;21340:266::-;21438:4;21455:36;21465:6;21473:9;21484:6;21455:9;:36::i;:::-;-1:-1:-1;;;;;21533:19:0;;;;;;:11;:19;;;;;;;;3131:10;21533:33;;;;;;;;;21502:74;;21511:6;;21533:42;;21569:6;;21533:42;:::i;:::-;21502:8;:74::i;:::-;-1:-1:-1;21594:4:0;21340:266;;;;;:::o;21614:215::-;3131:10;21702:4;21751:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;21751:34:0;;;;;;;;;;21702:4;;21719:80;;21742:7;;21751:47;;21788:10;;21751:47;:::i;5039:148::-;4608:6;;-1:-1:-1;;;;;4608:6:0;3131:10;4608:22;4600:67;;;;-1:-1:-1;;;4600:67:0;;3465:2:1;4600:67:0;;;3447:21:1;;;3484:18;;;3477:30;3543:34;3523:18;;;3516:62;3595:18;;4600:67:0;;;;;;;;;5146:1:::1;5130:6:::0;;5109:40:::1;::::0;-1:-1:-1;;;;;5130:6:0;;::::1;::::0;5109:40:::1;::::0;5146:1;;5109:40:::1;5177:1;5160:19:::0;;-1:-1:-1;;5160:19:0::1;::::0;;5039:148::o;21837:225::-;3131:10;21930:4;21979:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;21979:34:0;;;;;;;;;;21930:4;;21947:85;;21970:7;;21979:52;;22016:15;;21979:52;:::i;20845:167::-;20923:4;20940:42;3131:10;20964:9;20975:6;20940:9;:42::i;5342:244::-;4608:6;;-1:-1:-1;;;;;4608:6:0;3131:10;4608:22;4600:67;;;;-1:-1:-1;;;4600:67:0;;3465:2:1;4600:67:0;;;3447:21:1;;;3484:18;;;3477:30;3543:34;3523:18;;;3516:62;3595:18;;4600:67:0;3263:356:1;4600:67:0;-1:-1:-1;;;;;5431:22:0;::::1;5423:73;;;::::0;-1:-1:-1;;;5423:73:0;;3826:2:1;5423:73:0::1;::::0;::::1;3808:21:1::0;3865:2;3845:18;;;3838:30;3904:34;3884:18;;;3877:62;3975:8;3955:18;;;3948:36;4001:19;;5423:73:0::1;3624:402:1::0;5423:73:0::1;5533:6;::::0;;5512:38:::1;::::0;-1:-1:-1;;;;;5512:38:0;;::::1;::::0;5533:6;::::1;::::0;5512:38:::1;::::0;::::1;5561:6;:17:::0;;-1:-1:-1;;5561:17:0::1;-1:-1:-1::0;;;;;5561:17:0;;;::::1;::::0;;;::::1;::::0;;5342:244::o;22074:337::-;-1:-1:-1;;;;;22167:19:0;;22159:68;;;;-1:-1:-1;;;22159:68:0;;4233:2:1;22159:68:0;;;4215:21:1;4272:2;4252:18;;;4245:30;4311:34;4291:18;;;4284:62;-1:-1:-1;;;4362:18:1;;;4355:34;4406:19;;22159:68:0;4031:400:1;22159:68:0;-1:-1:-1;;;;;22246:21:0;;22238:68;;;;-1:-1:-1;;;22238:68:0;;4638:2:1;22238:68:0;;;4620:21:1;4677:2;4657:18;;;4650:30;4716:34;4696:18;;;4689:62;-1:-1:-1;;;4767:18:1;;;4760:32;4809:19;;22238:68:0;4436:398:1;22238:68:0;-1:-1:-1;;;;;22319:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;22371:32;;1623:25:1;;;22371:32:0;;1596:18:1;22371:32:0;;;;;;;;22074:337;;;:::o;22456:885::-;-1:-1:-1;;;;;22574:28:0;;;;;;:24;:28;;;;;;;;;:62;;-1:-1:-1;;;;;;22606:30:0;;;;;;:24;:30;;;;;;;;22574:62;22570:357;;;-1:-1:-1;;;;;22657:30:0;;;;;;:24;:30;;;;;;;;22653:129;;;22708:33;22724:4;22730:2;22734:6;22708:15;:33::i;:::-;22456:885;;;:::o;22653:129::-;22570:357;;;22857:10;;22847:6;22831:13;22841:2;-1:-1:-1;;;;;20813:16:0;20786:7;20813:16;;;:7;:16;;;;;;;20720:117;22831:13;:22;;;;:::i;:::-;:36;;22823:92;;;;-1:-1:-1;;;22823:92:0;;5041:2:1;22823:92:0;;;5023:21:1;5080:2;5060:18;;;5053:30;5119:34;5099:18;;;5092:62;5190:13;5170:18;;;5163:41;5221:19;;22823:92:0;4839:407:1;22823:92:0;-1:-1:-1;;;;;22947:18:0;;22939:68;;;;-1:-1:-1;;;22939:68:0;;5453:2:1;22939:68:0;;;5435:21:1;5492:2;5472:18;;;5465:30;5531:34;5511:18;;;5504:62;-1:-1:-1;;;5582:18:1;;;5575:35;5627:19;;22939:68:0;5251:401:1;22939:68:0;-1:-1:-1;;;;;23026:16:0;;23018:64;;;;-1:-1:-1;;;23018:64:0;;5859:2:1;23018:64:0;;;5841:21:1;5898:2;5878:18;;;5871:30;5937:34;5917:18;;;5910:62;-1:-1:-1;;;5988:18:1;;;5981:33;6031:19;;23018:64:0;5657:399:1;23018:64:0;23110:1;23101:6;:10;23093:64;;;;-1:-1:-1;;;23093:64:0;;6263:2:1;23093:64:0;;;6245:21:1;6302:2;6282:18;;;6275:30;6341:34;6321:18;;;6314:62;6412:11;6392:18;;;6385:39;6441:19;;23093:64:0;6061:405:1;23093:64:0;23194:49;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23194:13:0;;-1:-1:-1;23194:13:0;;;:7;:13;;;;;;;;:49;;23212:6;;23194:17;:49::i;:::-;-1:-1:-1;;;;;23178:13:0;;;;;;;:7;:13;;;;;;:65;;;;23268:11;;;;;;;:23;;23284:6;23268:15;:23::i;:::-;-1:-1:-1;;;;;23254:11:0;;;;;;;:7;:11;;;;;;;:37;;;;23307:26;;;;;;;;;;23326:6;1623:25:1;;1611:2;1596:18;;1477:177;23349:267:0;-1:-1:-1;;;;;23493:13:0;;;;;;:7;:13;;;;;;7059:5;;;23493:25;6944:162;7409:230;7495:7;7531:12;7523:6;;;;7515:29;;;;-1:-1:-1;;;7515:29:0;;;;;;;;:::i;:::-;-1:-1:-1;;;7592:5:0;;;7409:230::o;6436:225::-;6494:7;6551:5;;;6579:6;;;;6571:46;;;;-1:-1:-1;;;6571:46:0;;6673:2:1;6571:46:0;;;6655:21:1;6712:2;6692:18;;;6685:30;6751:29;6731:18;;;6724:57;6798:18;;6571:46:0;6471:351:1;6571:46:0;6641:1;6436:225;-1:-1:-1;;;6436:225:0:o;14:548: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;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:196::-;635:20;;-1:-1:-1;;;;;684:54:1;;674:65;;664:93;;753:1;750;743:12;664:93;567:196;;;:::o;768:254::-;836:6;844;897:2;885:9;876:7;872:23;868:32;865:52;;;913:1;910;903:12;865:52;936:29;955:9;936:29;:::i;:::-;926:39;1012:2;997:18;;;;984:32;;-1:-1:-1;;;768:254:1:o;1659:328::-;1736:6;1744;1752;1805:2;1793:9;1784:7;1780:23;1776:32;1773:52;;;1821:1;1818;1811:12;1773:52;1844:29;1863:9;1844:29;:::i;:::-;1834:39;;1892:38;1926:2;1915:9;1911:18;1892:38;:::i;:::-;1882:48;;1977:2;1966:9;1962:18;1949:32;1939:42;;1659:328;;;;;:::o;2412:186::-;2471:6;2524:2;2512:9;2503:7;2499:23;2495:32;2492:52;;;2540:1;2537;2530:12;2492:52;2563:29;2582:9;2563:29;:::i;2603:260::-;2671:6;2679;2732:2;2720:9;2711:7;2707:23;2703:32;2700:52;;;2748:1;2745;2738:12;2700:52;2771:29;2790:9;2771:29;:::i;:::-;2761:39;;2819:38;2853:2;2842:9;2838:18;2819:38;:::i;:::-;2809:48;;2603:260;;;;;:::o;2868:127::-;2929:10;2924:3;2920:20;2917:1;2910:31;2960:4;2957:1;2950:15;2984:4;2981:1;2974:15;3000:128;3067:9;;;3088:11;;;3085:37;;;3102:18;;:::i;3133:125::-;3198:9;;;3219:10;;;3216:36;;;3232:18;;:::i

Swarm Source

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