ETH Price: $2,878.14 (-9.08%)
Gas: 11 Gwei

Token

Cockatoo (Cockatoo)
 

Overview

Max Total Supply

1,000,000,000 Cockatoo

Holders

214 (0.00%)

Market

Price

$0.00 @ 0.000000 ETH (-0.06%)

Onchain Market Cap

$31,735.50

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Filtered by Token Holder
iape1000xonly.eth
Balance
282,039.060969888 Cockatoo

Value
$8.95 ( ~0.00310965078245491 Eth) [0.0282%]
0xDDa86438DCA987a42c1ffCcCc8a54F1Cf240Dd11
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Dancing the groove of the blockchain.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Cockatoo

Compiler Version
v0.8.21+commit.d9974bed

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 10 : cockatoo.sol
// SPDX-License-Identifier: MIT
/**
    Cockatoo: Dance to the groove of the blockchain
    Website: https://www.dancing-cockatoo.io
**/
// Solidity version
pragma solidity ^0.8.21;

// Importing necessary contracts and interfaces
import "./SafeMath.sol";
// Standard ERC20 interfaces
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
// Uniswap interfaces
import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol";
import '@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol';

/**
 * @title Cockatoo Token Contract
 * @dev This contract implements the ERC-20 standard token with additional features
 * such as transaction fees, liquidity management, and dev fees. Furthermore it includes protection for liquidation spoofing
 */
contract Cockatoo is Context, IERC20, Ownable {
    using SafeMath for uint256;
    // Various contract parameters and settings
    uint8 private constant _decimals = 9;
    uint256 private constant _totalSupply = 1000000000 * 10**_decimals;
    string private constant _name = unicode"Cockatoo";
    string private constant _symbol = unicode"Cockatoo";
    uint256 public maxTx = 0;
    uint256 public maxWallet = 0;
    bool private limitsInPlace = true;

    // Mapping to track token balances of users
    mapping (address => uint256) private _balances;
    // Mapping to track allowed token transfers between users
    mapping (address => mapping (address => uint256)) private _allowances;

    // Contract fees and settings
    uint256 private taxFee = 3;
    // Percentage of fees (3 * 0.2) that is transfered to liquidityWallet in tokens
    uint8 private constant liquidityPercentage = 20;
    // Percentage of fees (3 * 0.8) that is swapped and paid out to dev in ETH
    uint8 private constant devPercentage = 80;
    uint256 public _taxSwapThreshold = 5000000 * 10**_decimals;
    uint256 public _maxTaxSwap = 5000000 * 10**_decimals;
    address payable private devWallet = payable(0x7765DC477945992bAD93B41a7aA48715D190e8B4);
    address payable private liquidityWallet = payable(0xD3E52484ccF885EF1e5aBdda5ce96C0E5802FDbd);

    // Fee liquidation prevention parameters
    uint256 public lastFeeBlock = 0;
    uint public feesThisBlock = 0;

    IUniswapV2Router02 private uniswapV2Router;
    address private uniswapV2Pair;
    bool private inSwap = false;
    bool private swapEnabled = false;

    // Modifier to lock token swaps while they are being executed
    modifier lockTheSwap {
        inSwap = true;
        _;
        inSwap = false;
    }
    // Implementation of ERC20 allowance function
    function allowance(address owner, address spender) public view override returns (uint256) {
        return _allowances[owner][spender];
    }

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

    // Internal function to approve token spending
    function _approve(address owner, address spender, uint256 amount) private {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");
        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    // Implementation of ERC20 transfer function
    function transfer(address recipient, uint256 amount) public override returns (bool) {
        transfer(_msgSender(), recipient, amount);
        return true;
    }

    // Implementation of ERC20 transferFrom function
    function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
        transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

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

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

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

    // ERC20 totalSupply function
    function totalSupply() public pure override returns (uint256) {
        return _totalSupply;
    }

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

    // Contract constructor
    constructor () {
        _balances[msg.sender] = _totalSupply;
        emit Transfer(address(0), msg.sender, _totalSupply);

        uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH());
    }
    
    function cockatooLiquidityAmount(uint256 tokenAmount) private pure returns (uint256) {
        return tokenAmount.mul(liquidityPercentage).div(100);
    }


    function cockatooDevAmount(uint256 tokenAmount) private pure returns (uint256) {
        return tokenAmount.mul(devPercentage).div(100);
    }

    /**
     * @dev Updates trading limits and settings.
     * @param _limitsInPlace Whether trading limits are in place.
     * @param _maxTxPercentage Maximum transaction percentage of total supply.
     * @param _maxWalletPercentage Maximum wallet percentage of total supply.
     * @param _swapEnabled Whether token swapping is enabled for accrued taxes.
     */
    function editCockatooSettings(bool _limitsInPlace, uint256 _maxTxPercentage, uint256 _maxWalletPercentage, bool _swapEnabled) external onlyOwner {
        require(_maxTxPercentage > 1 || _limitsInPlace == false, "Max tx must be set to at least 1");
        require(_maxWalletPercentage > 1 || _limitsInPlace == false, "Max wallet must be set to at least 1");
        limitsInPlace = _limitsInPlace;
        maxTx = _totalSupply.mul(_maxTxPercentage).div(100);
        maxWallet = _totalSupply.mul(_maxWalletPercentage).div(100);
        swapEnabled = _swapEnabled;
    }

    /**
     * @dev Removes trading limits
     */
    function removeCockatooLimits() external onlyOwner {
        limitsInPlace = false;
    }

    // Private function to handle transfers and apply fees
    function transfer(address from, address to, uint256 amount) private {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
        uint256 taxAmount = 0;
        uint currentblock = block.number;

        // Calculate tax amount if it's not a transaction from or to the owner
        if (from != owner() && to != owner()) {
            // If uniswap buy or sell, levy tax, otherwise don't
            if ((from == uniswapV2Pair || to == uniswapV2Pair )
                && to != address(liquidityWallet) && to != address(devWallet) && from != address(this) ) {
                taxAmount = amount.mul(taxFee).div(100);
            }

            // If limits are in place for tx amount and wallet, check those
            if (limitsInPlace && from == uniswapV2Pair && to != address(uniswapV2Router) && to != address(devWallet) && to != address(liquidityWallet)) {
                require(amount <= maxTx, "Exceeds the _maxTxAmount.");
                require(balanceOf(to) + amount <= maxWallet, "Exceeds the maxWalletSize.");
            }

            // Get contract balance in tokens
            uint256 contractTokenBalance = balanceOf(address(this));
            // Check if the token is eligible for liquidity swap
            if (!inSwap && to == uniswapV2Pair && swapEnabled && contractTokenBalance > _taxSwapThreshold) {
                if (checkCanLiquifyThisBlock(currentblock)) {
                    // Transfer tokens to the liquidity wallet
                    uint256 liquifyAmount = cockatooLiquidityAmount(_taxSwapThreshold);
                    _balances[liquidityWallet] = _balances[liquidityWallet].add(liquifyAmount);
                    emit Transfer(from, liquidityWallet, liquifyAmount);

                    // Store the rest of the tokens on the contract for dev fees to be sold
                    uint256 devAmount = cockatooDevAmount(_taxSwapThreshold);
                    // Swap tokens for ETH
                    swapTokensForEth(devAmount);
                    // Transfer ETH to the dev wallet if balance exceeds a threshold
                    devWallet.transfer(address(this).balance);
                }
            }
        }
        // Apply tax and transfer tokens
        if (taxAmount > 0) {
            // Store tokens on the contract as tax to be sold and liquidated later
            _balances[address(this)] = _balances[address(this)].add(taxAmount);
            emit Transfer(from, address(this), taxAmount);
        }

        _balances[from] = _balances[from].sub(amount);
        _balances[to] = _balances[to].add(amount.sub(taxAmount));
        emit Transfer(from, to, amount.sub(taxAmount));
    }

    // Function to get the minimum of two numbers
    function min(uint256 a, uint256 b) private pure returns (uint256) {
        return (a > b) ? b : a;
    }

    // Function to swap tokens for ETH on the Uniswap V2 Router
    function swapTokensForEth(uint256 tokenAmount) private lockTheSwap {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();
        _approve(address(this), address(uniswapV2Router), tokenAmount);
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

    // Function to check if the token can be swapped for liquidity
    // This limits the possibility of fees triggering too often
    function checkCanLiquifyThisBlock(uint currentblock) private returns (bool) {
        require(currentblock >= lastFeeBlock, "Blockchain state invalid");
        if (inSwap) {
            return false;
        } else if (currentblock > lastFeeBlock) {
            lastFeeBlock = currentblock;
            feesThisBlock = 0;
            return true;
        } else {
            if (feesThisBlock < 2) {
                feesThisBlock += 1;
                return true;
            } else {
                return false;
            }
        }
    }

    // Fallback function to accept ETH
    receive() external payable {}
}

File 2 of 10 : IUniswapV2Factory.sol
pragma solidity >=0.5.0;

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

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

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

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

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

File 3 of 10 : IUniswapV2Router02.sol
pragma solidity >=0.6.2;

import './IUniswapV2Router01.sol';

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

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

File 4 of 10 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    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;
    }

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

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

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    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;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

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

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

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

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

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    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);
            }
        }
    }

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

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

File 5 of 10 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

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

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

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

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

File 6 of 10 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

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

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

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

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

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

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

File 7 of 10 : SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.21;

// SafeMath library for secure arithmetic operations
library SafeMath {
    // Safe addition
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
        return c;
    }

    // Safe subtraction
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    // Safe subtraction with error message
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;
        return c;
    }

    // Safe multiplication
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
        return c;
    }

    // Safe division
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    // Safe division with error message
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        return c;
    }
}

File 8 of 10 : IUniswapV2Router01.sol
pragma solidity >=0.6.2;

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

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

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

File 9 of 10 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 10 of 10 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_maxTaxSwap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxSwapThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"bool","name":"_limitsInPlace","type":"bool"},{"internalType":"uint256","name":"_maxTxPercentage","type":"uint256"},{"internalType":"uint256","name":"_maxWalletPercentage","type":"uint256"},{"internalType":"bool","name":"_swapEnabled","type":"bool"}],"name":"editCockatooSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feesThisBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastFeeBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeCockatooLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040525f6001555f600255600160035f6101000a81548160ff02191690831515021790555060036006556009600a6200003b9190620006fe565b624c4b406200004b91906200074e565b6007556009600a6200005e9190620006fe565b624c4b406200006e91906200074e565b600855737765dc477945992bad93b41a7aa48715d190e8b460095f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073d3e52484ccf885ef1e5abdda5ce96c0e5802fdbd600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505f600b555f600c555f600e60146101000a81548160ff0219169083151502179055505f600e60156101000a81548160ff02191690831515021790555034801562000161575f80fd5b506200018262000176620004a460201b60201c565b620004ab60201b60201c565b6009600a620001929190620006fe565b633b9aca00620001a391906200074e565b60045f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055503373ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6009600a620002439190620006fe565b633b9aca006200025491906200074e565b604051620002639190620007a9565b60405180910390a3737a250d5630b4cf539739df2c5dacb4c659f2488d600d5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600d5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200032a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000350919062000829565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600d5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620003d7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620003fd919062000829565b6040518363ffffffff1660e01b81526004016200041c9291906200086a565b6020604051808303815f875af115801562000439573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200045f919062000829565b600e5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000895565b5f33905090565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b6001851115620005f657808604811115620005ce57620005cd6200056c565b5b6001851615620005de5780820291505b8081029050620005ee8562000599565b9450620005ae565b94509492505050565b5f82620006105760019050620006e2565b816200061f575f9050620006e2565b8160018114620006385760028114620006435762000679565b6001915050620006e2565b60ff8411156200065857620006576200056c565b5b8360020a9150848211156200067257620006716200056c565b5b50620006e2565b5060208310610133831016604e8410600b8410161715620006b35782820a905083811115620006ad57620006ac6200056c565b5b620006e2565b620006c28484846001620005a5565b92509050818404811115620006dc57620006db6200056c565b5b81810290505b9392505050565b5f819050919050565b5f60ff82169050919050565b5f6200070a82620006e9565b91506200071783620006f2565b9250620007467fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620005ff565b905092915050565b5f6200075a82620006e9565b91506200076783620006e9565b92508282026200077781620006e9565b915082820484148315176200079157620007906200056c565b5b5092915050565b620007a381620006e9565b82525050565b5f602082019050620007be5f83018462000798565b92915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f620007f382620007c8565b9050919050565b6200080581620007e7565b811462000810575f80fd5b50565b5f815190506200082381620007fa565b92915050565b5f60208284031215620008415762000840620007c4565b5b5f620008508482850162000813565b91505092915050565b6200086481620007e7565b82525050565b5f6040820190506200087f5f83018562000859565b6200088e602083018462000859565b9392505050565b612c5380620008a35f395ff3fe608060405260043610610122575f3560e01c80637437681e1161009f578063bf474bed11610063578063bf474bed146103c1578063dd62ed3e146103eb578063e4275bc114610427578063f2fde38b14610451578063f8b45b051461047957610129565b80637437681e146102f1578063792dd52e1461031b5780638da5cb5b1461033157806395d89b411461035b578063a9059cbb1461038557610129565b806323b872dd116100e657806323b872dd14610211578063313ce5671461024d578063602dbf6f1461027757806370a082311461029f578063715018a6146102db57610129565b806306fdde031461012d578063095ea7b3146101575780630faee56f1461019357806318160ddd146101bd5780631a0a2e14146101e757610129565b3661012957005b5f80fd5b348015610138575f80fd5b506101416104a3565b60405161014e9190611d94565b60405180910390f35b348015610162575f80fd5b5061017d60048036038101906101789190611e45565b6104e0565b60405161018a9190611e9d565b60405180910390f35b34801561019e575f80fd5b506101a76104fd565b6040516101b49190611ec5565b60405180910390f35b3480156101c8575f80fd5b506101d1610503565b6040516101de9190611ec5565b60405180910390f35b3480156101f2575f80fd5b506101fb610526565b6040516102089190611ec5565b60405180910390f35b34801561021c575f80fd5b5061023760048036038101906102329190611ede565b61052c565b6040516102449190611e9d565b60405180910390f35b348015610258575f80fd5b50610261610600565b60405161026e9190611f49565b60405180910390f35b348015610282575f80fd5b5061029d60048036038101906102989190611f8c565b610608565b005b3480156102aa575f80fd5b506102c560048036038101906102c09190611ff0565b61077b565b6040516102d29190611ec5565b60405180910390f35b3480156102e6575f80fd5b506102ef6107c1565b005b3480156102fc575f80fd5b506103056107d4565b6040516103129190611ec5565b60405180910390f35b348015610326575f80fd5b5061032f6107da565b005b34801561033c575f80fd5b506103456107fd565b604051610352919061202a565b60405180910390f35b348015610366575f80fd5b5061036f610824565b60405161037c9190611d94565b60405180910390f35b348015610390575f80fd5b506103ab60048036038101906103a69190611e45565b610861565b6040516103b89190611e9d565b60405180910390f35b3480156103cc575f80fd5b506103d561087e565b6040516103e29190611ec5565b60405180910390f35b3480156103f6575f80fd5b50610411600480360381019061040c9190612043565b610884565b60405161041e9190611ec5565b60405180910390f35b348015610432575f80fd5b5061043b610906565b6040516104489190611ec5565b60405180910390f35b34801561045c575f80fd5b5061047760048036038101906104729190611ff0565b61090c565b005b348015610484575f80fd5b5061048d61098e565b60405161049a9190611ec5565b60405180910390f35b60606040518060400160405280600881526020017f436f636b61746f6f000000000000000000000000000000000000000000000000815250905090565b5f6104f36104ec610994565b848461099b565b6001905092915050565b60085481565b5f6009600a61051291906121dd565b633b9aca006105219190612227565b905090565b600c5481565b5f610538848484610b5e565b6105f584610544610994565b6105f085604051806060016040528060288152602001612bf66028913960055f8b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6105a7610994565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546116199092919063ffffffff16565b61099b565b600190509392505050565b5f6009905090565b61061061167b565b600183118061062257505f1515841515145b610661576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610658906122b2565b60405180910390fd5b600182118061067357505f1515841515145b6106b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106a990612340565b60405180910390fd5b8360035f6101000a81548160ff02191690831515021790555061070d60646106ff856009600a6106e291906121dd565b633b9aca006106f19190612227565b6116f990919063ffffffff16565b61177090919063ffffffff16565b6001819055506107556064610747846009600a61072a91906121dd565b633b9aca006107399190612227565b6116f990919063ffffffff16565b61177090919063ffffffff16565b60028190555080600e60156101000a81548160ff02191690831515021790555050505050565b5f60045f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6107c961167b565b6107d25f6117b9565b565b60015481565b6107e261167b565b5f60035f6101000a81548160ff021916908315150217905550565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600881526020017f436f636b61746f6f000000000000000000000000000000000000000000000000815250905090565b5f61087461086d610994565b8484610b5e565b6001905092915050565b60075481565b5f60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b600b5481565b61091461167b565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610982576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610979906123ce565b60405180910390fd5b61098b816117b9565b50565b60025481565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a009061245c565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6e906124ea565b60405180910390fd5b8060055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b519190611ec5565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc390612578565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3190612606565b60405180910390fd5b5f8111610c7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7390612694565b60405180910390fd5b5f80439050610c896107fd565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614158015610cf75750610cc76107fd565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b1561136857600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610da35750600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b8015610dfc5750600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015610e55575060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015610e8d57503073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b15610ebd57610eba6064610eac600654866116f990919063ffffffff16565b61177090919063ffffffff16565b91505b60035f9054906101000a900460ff168015610f245750600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b8015610f7d5750600d5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015610fd6575060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b801561102f5750600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b156110d257600154831115611079576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611070906126fc565b60405180910390fd5b600254836110868661077b565b611090919061271a565b11156110d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c890612797565b60405180910390fd5b5b5f6110dc3061077b565b9050600e60149054906101000a900460ff161580156111475750600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b801561115f5750600e60159054906101000a900460ff165b801561116c575060075481115b156113665761117a8261187a565b15611365575f61118b600754611934565b90506111fe8160045f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461196690919063ffffffff16565b60045f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516112de9190611ec5565b60405180910390a35f6112f26007546119c3565b90506112fd816119f5565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f19350505050158015611361573d5f803e3d5ffd5b5050505b5b505b5f821115611467576113c08260045f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461196690919063ffffffff16565b60045f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055503073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161145e9190611ec5565b60405180910390a35b6114b78360045f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611c6090919063ffffffff16565b60045f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555061155a61150e8385611c6090919063ffffffff16565b60045f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461196690919063ffffffff16565b60045f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6115fd8587611c6090919063ffffffff16565b60405161160a9190611ec5565b60405180910390a35050505050565b5f838311158290611660576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116579190611d94565b60405180910390fd5b505f838561166e91906127b5565b9050809150509392505050565b611683610994565b73ffffffffffffffffffffffffffffffffffffffff166116a16107fd565b73ffffffffffffffffffffffffffffffffffffffff16146116f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ee90612832565b60405180910390fd5b565b5f808303611709575f905061176a565b5f82846117169190612227565b9050828482611725919061287d565b14611765576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175c9061291d565b60405180910390fd5b809150505b92915050565b5f6117b183836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611ca9565b905092915050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f600b548210156118c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b790612985565b60405180910390fd5b600e60149054906101000a900460ff16156118dd575f905061192f565b600b548211156118fe5781600b819055505f600c819055506001905061192f565b6002600c54101561192b576001600c5f82825461191b919061271a565b925050819055506001905061192f565b5f90505b919050565b5f61195f6064611951601460ff16856116f990919063ffffffff16565b61177090919063ffffffff16565b9050919050565b5f808284611974919061271a565b9050838110156119b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b0906129ed565b60405180910390fd5b8091505092915050565b5f6119ee60646119e0605060ff16856116f990919063ffffffff16565b61177090919063ffffffff16565b9050919050565b6001600e60146101000a81548160ff0219169083151502179055505f600267ffffffffffffffff811115611a2c57611a2b612a0b565b5b604051908082528060200260200182016040528015611a5a5781602001602082028036833780820191505090505b50905030815f81518110611a7157611a70612a38565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600d5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b15573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b399190612a79565b81600181518110611b4d57611b4c612a38565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611bb330600d5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff168461099b565b600d5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b8152600401611c15959493929190612b9d565b5f604051808303815f87803b158015611c2c575f80fd5b505af1158015611c3e573d5f803e3d5ffd5b50505050505f600e60146101000a81548160ff02191690831515021790555050565b5f611ca183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611619565b905092915050565b5f8083118290611cef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce69190611d94565b60405180910390fd5b505f8385611cfd919061287d565b9050809150509392505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611d41578082015181840152602081019050611d26565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611d6682611d0a565b611d708185611d14565b9350611d80818560208601611d24565b611d8981611d4c565b840191505092915050565b5f6020820190508181035f830152611dac8184611d5c565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611de182611db8565b9050919050565b611df181611dd7565b8114611dfb575f80fd5b50565b5f81359050611e0c81611de8565b92915050565b5f819050919050565b611e2481611e12565b8114611e2e575f80fd5b50565b5f81359050611e3f81611e1b565b92915050565b5f8060408385031215611e5b57611e5a611db4565b5b5f611e6885828601611dfe565b9250506020611e7985828601611e31565b9150509250929050565b5f8115159050919050565b611e9781611e83565b82525050565b5f602082019050611eb05f830184611e8e565b92915050565b611ebf81611e12565b82525050565b5f602082019050611ed85f830184611eb6565b92915050565b5f805f60608486031215611ef557611ef4611db4565b5b5f611f0286828701611dfe565b9350506020611f1386828701611dfe565b9250506040611f2486828701611e31565b9150509250925092565b5f60ff82169050919050565b611f4381611f2e565b82525050565b5f602082019050611f5c5f830184611f3a565b92915050565b611f6b81611e83565b8114611f75575f80fd5b50565b5f81359050611f8681611f62565b92915050565b5f805f8060808587031215611fa457611fa3611db4565b5b5f611fb187828801611f78565b9450506020611fc287828801611e31565b9350506040611fd387828801611e31565b9250506060611fe487828801611f78565b91505092959194509250565b5f6020828403121561200557612004611db4565b5b5f61201284828501611dfe565b91505092915050565b61202481611dd7565b82525050565b5f60208201905061203d5f83018461201b565b92915050565b5f806040838503121561205957612058611db4565b5b5f61206685828601611dfe565b925050602061207785828601611dfe565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b6001851115612103578086048111156120df576120de612081565b5b60018516156120ee5780820291505b80810290506120fc856120ae565b94506120c3565b94509492505050565b5f8261211b57600190506121d6565b81612128575f90506121d6565b816001811461213e576002811461214857612177565b60019150506121d6565b60ff84111561215a57612159612081565b5b8360020a91508482111561217157612170612081565b5b506121d6565b5060208310610133831016604e8410600b84101617156121ac5782820a9050838111156121a7576121a6612081565b5b6121d6565b6121b984848460016120ba565b925090508184048111156121d0576121cf612081565b5b81810290505b9392505050565b5f6121e782611e12565b91506121f283611f2e565b925061221f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848461210c565b905092915050565b5f61223182611e12565b915061223c83611e12565b925082820261224a81611e12565b9150828204841483151761226157612260612081565b5b5092915050565b7f4d6178207478206d7573742062652073657420746f206174206c6561737420315f82015250565b5f61229c602083611d14565b91506122a782612268565b602082019050919050565b5f6020820190508181035f8301526122c981612290565b9050919050565b7f4d61782077616c6c6574206d7573742062652073657420746f206174206c65615f8201527f7374203100000000000000000000000000000000000000000000000000000000602082015250565b5f61232a602483611d14565b9150612335826122d0565b604082019050919050565b5f6020820190508181035f8301526123578161231e565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6123b8602683611d14565b91506123c38261235e565b604082019050919050565b5f6020820190508181035f8301526123e5816123ac565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f612446602483611d14565b9150612451826123ec565b604082019050919050565b5f6020820190508181035f8301526124738161243a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6124d4602283611d14565b91506124df8261247a565b604082019050919050565b5f6020820190508181035f830152612501816124c8565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f612562602583611d14565b915061256d82612508565b604082019050919050565b5f6020820190508181035f83015261258f81612556565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6125f0602383611d14565b91506125fb82612596565b604082019050919050565b5f6020820190508181035f83015261261d816125e4565b9050919050565b7f5472616e7366657220616d6f756e74206d7573742062652067726561746572205f8201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b5f61267e602983611d14565b915061268982612624565b604082019050919050565b5f6020820190508181035f8301526126ab81612672565b9050919050565b7f4578636565647320746865205f6d61785478416d6f756e742e000000000000005f82015250565b5f6126e6601983611d14565b91506126f1826126b2565b602082019050919050565b5f6020820190508181035f830152612713816126da565b9050919050565b5f61272482611e12565b915061272f83611e12565b925082820190508082111561274757612746612081565b5b92915050565b7f4578636565647320746865206d617857616c6c657453697a652e0000000000005f82015250565b5f612781601a83611d14565b915061278c8261274d565b602082019050919050565b5f6020820190508181035f8301526127ae81612775565b9050919050565b5f6127bf82611e12565b91506127ca83611e12565b92508282039050818111156127e2576127e1612081565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61281c602083611d14565b9150612827826127e8565b602082019050919050565b5f6020820190508181035f83015261284981612810565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61288782611e12565b915061289283611e12565b9250826128a2576128a1612850565b5b828204905092915050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f5f8201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b5f612907602183611d14565b9150612912826128ad565b604082019050919050565b5f6020820190508181035f830152612934816128fb565b9050919050565b7f426c6f636b636861696e20737461746520696e76616c696400000000000000005f82015250565b5f61296f601883611d14565b915061297a8261293b565b602082019050919050565b5f6020820190508181035f83015261299c81612963565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f7700000000005f82015250565b5f6129d7601b83611d14565b91506129e2826129a3565b602082019050919050565b5f6020820190508181035f830152612a04816129cb565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050612a7381611de8565b92915050565b5f60208284031215612a8e57612a8d611db4565b5b5f612a9b84828501612a65565b91505092915050565b5f819050919050565b5f819050919050565b5f612ad0612acb612ac684612aa4565b612aad565b611e12565b9050919050565b612ae081612ab6565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b612b1881611dd7565b82525050565b5f612b298383612b0f565b60208301905092915050565b5f602082019050919050565b5f612b4b82612ae6565b612b558185612af0565b9350612b6083612b00565b805f5b83811015612b90578151612b778882612b1e565b9750612b8283612b35565b925050600181019050612b63565b5085935050505092915050565b5f60a082019050612bb05f830188611eb6565b612bbd6020830187612ad7565b8181036040830152612bcf8186612b41565b9050612bde606083018561201b565b612beb6080830184611eb6565b969550505050505056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220f4d02e3e4ab551cb0baa09f7baed09d0972178b33792c4865d6b6ec06ded01be64736f6c63430008150033

Deployed Bytecode

0x608060405260043610610122575f3560e01c80637437681e1161009f578063bf474bed11610063578063bf474bed146103c1578063dd62ed3e146103eb578063e4275bc114610427578063f2fde38b14610451578063f8b45b051461047957610129565b80637437681e146102f1578063792dd52e1461031b5780638da5cb5b1461033157806395d89b411461035b578063a9059cbb1461038557610129565b806323b872dd116100e657806323b872dd14610211578063313ce5671461024d578063602dbf6f1461027757806370a082311461029f578063715018a6146102db57610129565b806306fdde031461012d578063095ea7b3146101575780630faee56f1461019357806318160ddd146101bd5780631a0a2e14146101e757610129565b3661012957005b5f80fd5b348015610138575f80fd5b506101416104a3565b60405161014e9190611d94565b60405180910390f35b348015610162575f80fd5b5061017d60048036038101906101789190611e45565b6104e0565b60405161018a9190611e9d565b60405180910390f35b34801561019e575f80fd5b506101a76104fd565b6040516101b49190611ec5565b60405180910390f35b3480156101c8575f80fd5b506101d1610503565b6040516101de9190611ec5565b60405180910390f35b3480156101f2575f80fd5b506101fb610526565b6040516102089190611ec5565b60405180910390f35b34801561021c575f80fd5b5061023760048036038101906102329190611ede565b61052c565b6040516102449190611e9d565b60405180910390f35b348015610258575f80fd5b50610261610600565b60405161026e9190611f49565b60405180910390f35b348015610282575f80fd5b5061029d60048036038101906102989190611f8c565b610608565b005b3480156102aa575f80fd5b506102c560048036038101906102c09190611ff0565b61077b565b6040516102d29190611ec5565b60405180910390f35b3480156102e6575f80fd5b506102ef6107c1565b005b3480156102fc575f80fd5b506103056107d4565b6040516103129190611ec5565b60405180910390f35b348015610326575f80fd5b5061032f6107da565b005b34801561033c575f80fd5b506103456107fd565b604051610352919061202a565b60405180910390f35b348015610366575f80fd5b5061036f610824565b60405161037c9190611d94565b60405180910390f35b348015610390575f80fd5b506103ab60048036038101906103a69190611e45565b610861565b6040516103b89190611e9d565b60405180910390f35b3480156103cc575f80fd5b506103d561087e565b6040516103e29190611ec5565b60405180910390f35b3480156103f6575f80fd5b50610411600480360381019061040c9190612043565b610884565b60405161041e9190611ec5565b60405180910390f35b348015610432575f80fd5b5061043b610906565b6040516104489190611ec5565b60405180910390f35b34801561045c575f80fd5b5061047760048036038101906104729190611ff0565b61090c565b005b348015610484575f80fd5b5061048d61098e565b60405161049a9190611ec5565b60405180910390f35b60606040518060400160405280600881526020017f436f636b61746f6f000000000000000000000000000000000000000000000000815250905090565b5f6104f36104ec610994565b848461099b565b6001905092915050565b60085481565b5f6009600a61051291906121dd565b633b9aca006105219190612227565b905090565b600c5481565b5f610538848484610b5e565b6105f584610544610994565b6105f085604051806060016040528060288152602001612bf66028913960055f8b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6105a7610994565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546116199092919063ffffffff16565b61099b565b600190509392505050565b5f6009905090565b61061061167b565b600183118061062257505f1515841515145b610661576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610658906122b2565b60405180910390fd5b600182118061067357505f1515841515145b6106b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106a990612340565b60405180910390fd5b8360035f6101000a81548160ff02191690831515021790555061070d60646106ff856009600a6106e291906121dd565b633b9aca006106f19190612227565b6116f990919063ffffffff16565b61177090919063ffffffff16565b6001819055506107556064610747846009600a61072a91906121dd565b633b9aca006107399190612227565b6116f990919063ffffffff16565b61177090919063ffffffff16565b60028190555080600e60156101000a81548160ff02191690831515021790555050505050565b5f60045f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6107c961167b565b6107d25f6117b9565b565b60015481565b6107e261167b565b5f60035f6101000a81548160ff021916908315150217905550565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600881526020017f436f636b61746f6f000000000000000000000000000000000000000000000000815250905090565b5f61087461086d610994565b8484610b5e565b6001905092915050565b60075481565b5f60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b600b5481565b61091461167b565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610982576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610979906123ce565b60405180910390fd5b61098b816117b9565b50565b60025481565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a009061245c565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6e906124ea565b60405180910390fd5b8060055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b519190611ec5565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc390612578565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3190612606565b60405180910390fd5b5f8111610c7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7390612694565b60405180910390fd5b5f80439050610c896107fd565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614158015610cf75750610cc76107fd565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b1561136857600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610da35750600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b8015610dfc5750600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015610e55575060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015610e8d57503073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b15610ebd57610eba6064610eac600654866116f990919063ffffffff16565b61177090919063ffffffff16565b91505b60035f9054906101000a900460ff168015610f245750600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b8015610f7d5750600d5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015610fd6575060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b801561102f5750600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b156110d257600154831115611079576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611070906126fc565b60405180910390fd5b600254836110868661077b565b611090919061271a565b11156110d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c890612797565b60405180910390fd5b5b5f6110dc3061077b565b9050600e60149054906101000a900460ff161580156111475750600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b801561115f5750600e60159054906101000a900460ff165b801561116c575060075481115b156113665761117a8261187a565b15611365575f61118b600754611934565b90506111fe8160045f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461196690919063ffffffff16565b60045f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516112de9190611ec5565b60405180910390a35f6112f26007546119c3565b90506112fd816119f5565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f19350505050158015611361573d5f803e3d5ffd5b5050505b5b505b5f821115611467576113c08260045f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461196690919063ffffffff16565b60045f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055503073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161145e9190611ec5565b60405180910390a35b6114b78360045f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611c6090919063ffffffff16565b60045f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555061155a61150e8385611c6090919063ffffffff16565b60045f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461196690919063ffffffff16565b60045f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6115fd8587611c6090919063ffffffff16565b60405161160a9190611ec5565b60405180910390a35050505050565b5f838311158290611660576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116579190611d94565b60405180910390fd5b505f838561166e91906127b5565b9050809150509392505050565b611683610994565b73ffffffffffffffffffffffffffffffffffffffff166116a16107fd565b73ffffffffffffffffffffffffffffffffffffffff16146116f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ee90612832565b60405180910390fd5b565b5f808303611709575f905061176a565b5f82846117169190612227565b9050828482611725919061287d565b14611765576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175c9061291d565b60405180910390fd5b809150505b92915050565b5f6117b183836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611ca9565b905092915050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f600b548210156118c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b790612985565b60405180910390fd5b600e60149054906101000a900460ff16156118dd575f905061192f565b600b548211156118fe5781600b819055505f600c819055506001905061192f565b6002600c54101561192b576001600c5f82825461191b919061271a565b925050819055506001905061192f565b5f90505b919050565b5f61195f6064611951601460ff16856116f990919063ffffffff16565b61177090919063ffffffff16565b9050919050565b5f808284611974919061271a565b9050838110156119b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b0906129ed565b60405180910390fd5b8091505092915050565b5f6119ee60646119e0605060ff16856116f990919063ffffffff16565b61177090919063ffffffff16565b9050919050565b6001600e60146101000a81548160ff0219169083151502179055505f600267ffffffffffffffff811115611a2c57611a2b612a0b565b5b604051908082528060200260200182016040528015611a5a5781602001602082028036833780820191505090505b50905030815f81518110611a7157611a70612a38565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600d5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b15573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b399190612a79565b81600181518110611b4d57611b4c612a38565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611bb330600d5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff168461099b565b600d5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b8152600401611c15959493929190612b9d565b5f604051808303815f87803b158015611c2c575f80fd5b505af1158015611c3e573d5f803e3d5ffd5b50505050505f600e60146101000a81548160ff02191690831515021790555050565b5f611ca183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611619565b905092915050565b5f8083118290611cef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce69190611d94565b60405180910390fd5b505f8385611cfd919061287d565b9050809150509392505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611d41578082015181840152602081019050611d26565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611d6682611d0a565b611d708185611d14565b9350611d80818560208601611d24565b611d8981611d4c565b840191505092915050565b5f6020820190508181035f830152611dac8184611d5c565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611de182611db8565b9050919050565b611df181611dd7565b8114611dfb575f80fd5b50565b5f81359050611e0c81611de8565b92915050565b5f819050919050565b611e2481611e12565b8114611e2e575f80fd5b50565b5f81359050611e3f81611e1b565b92915050565b5f8060408385031215611e5b57611e5a611db4565b5b5f611e6885828601611dfe565b9250506020611e7985828601611e31565b9150509250929050565b5f8115159050919050565b611e9781611e83565b82525050565b5f602082019050611eb05f830184611e8e565b92915050565b611ebf81611e12565b82525050565b5f602082019050611ed85f830184611eb6565b92915050565b5f805f60608486031215611ef557611ef4611db4565b5b5f611f0286828701611dfe565b9350506020611f1386828701611dfe565b9250506040611f2486828701611e31565b9150509250925092565b5f60ff82169050919050565b611f4381611f2e565b82525050565b5f602082019050611f5c5f830184611f3a565b92915050565b611f6b81611e83565b8114611f75575f80fd5b50565b5f81359050611f8681611f62565b92915050565b5f805f8060808587031215611fa457611fa3611db4565b5b5f611fb187828801611f78565b9450506020611fc287828801611e31565b9350506040611fd387828801611e31565b9250506060611fe487828801611f78565b91505092959194509250565b5f6020828403121561200557612004611db4565b5b5f61201284828501611dfe565b91505092915050565b61202481611dd7565b82525050565b5f60208201905061203d5f83018461201b565b92915050565b5f806040838503121561205957612058611db4565b5b5f61206685828601611dfe565b925050602061207785828601611dfe565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b6001851115612103578086048111156120df576120de612081565b5b60018516156120ee5780820291505b80810290506120fc856120ae565b94506120c3565b94509492505050565b5f8261211b57600190506121d6565b81612128575f90506121d6565b816001811461213e576002811461214857612177565b60019150506121d6565b60ff84111561215a57612159612081565b5b8360020a91508482111561217157612170612081565b5b506121d6565b5060208310610133831016604e8410600b84101617156121ac5782820a9050838111156121a7576121a6612081565b5b6121d6565b6121b984848460016120ba565b925090508184048111156121d0576121cf612081565b5b81810290505b9392505050565b5f6121e782611e12565b91506121f283611f2e565b925061221f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848461210c565b905092915050565b5f61223182611e12565b915061223c83611e12565b925082820261224a81611e12565b9150828204841483151761226157612260612081565b5b5092915050565b7f4d6178207478206d7573742062652073657420746f206174206c6561737420315f82015250565b5f61229c602083611d14565b91506122a782612268565b602082019050919050565b5f6020820190508181035f8301526122c981612290565b9050919050565b7f4d61782077616c6c6574206d7573742062652073657420746f206174206c65615f8201527f7374203100000000000000000000000000000000000000000000000000000000602082015250565b5f61232a602483611d14565b9150612335826122d0565b604082019050919050565b5f6020820190508181035f8301526123578161231e565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6123b8602683611d14565b91506123c38261235e565b604082019050919050565b5f6020820190508181035f8301526123e5816123ac565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f612446602483611d14565b9150612451826123ec565b604082019050919050565b5f6020820190508181035f8301526124738161243a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6124d4602283611d14565b91506124df8261247a565b604082019050919050565b5f6020820190508181035f830152612501816124c8565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f612562602583611d14565b915061256d82612508565b604082019050919050565b5f6020820190508181035f83015261258f81612556565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6125f0602383611d14565b91506125fb82612596565b604082019050919050565b5f6020820190508181035f83015261261d816125e4565b9050919050565b7f5472616e7366657220616d6f756e74206d7573742062652067726561746572205f8201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b5f61267e602983611d14565b915061268982612624565b604082019050919050565b5f6020820190508181035f8301526126ab81612672565b9050919050565b7f4578636565647320746865205f6d61785478416d6f756e742e000000000000005f82015250565b5f6126e6601983611d14565b91506126f1826126b2565b602082019050919050565b5f6020820190508181035f830152612713816126da565b9050919050565b5f61272482611e12565b915061272f83611e12565b925082820190508082111561274757612746612081565b5b92915050565b7f4578636565647320746865206d617857616c6c657453697a652e0000000000005f82015250565b5f612781601a83611d14565b915061278c8261274d565b602082019050919050565b5f6020820190508181035f8301526127ae81612775565b9050919050565b5f6127bf82611e12565b91506127ca83611e12565b92508282039050818111156127e2576127e1612081565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61281c602083611d14565b9150612827826127e8565b602082019050919050565b5f6020820190508181035f83015261284981612810565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61288782611e12565b915061289283611e12565b9250826128a2576128a1612850565b5b828204905092915050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f5f8201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b5f612907602183611d14565b9150612912826128ad565b604082019050919050565b5f6020820190508181035f830152612934816128fb565b9050919050565b7f426c6f636b636861696e20737461746520696e76616c696400000000000000005f82015250565b5f61296f601883611d14565b915061297a8261293b565b602082019050919050565b5f6020820190508181035f83015261299c81612963565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f7700000000005f82015250565b5f6129d7601b83611d14565b91506129e2826129a3565b602082019050919050565b5f6020820190508181035f830152612a04816129cb565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050612a7381611de8565b92915050565b5f60208284031215612a8e57612a8d611db4565b5b5f612a9b84828501612a65565b91505092915050565b5f819050919050565b5f819050919050565b5f612ad0612acb612ac684612aa4565b612aad565b611e12565b9050919050565b612ae081612ab6565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b612b1881611dd7565b82525050565b5f612b298383612b0f565b60208301905092915050565b5f602082019050919050565b5f612b4b82612ae6565b612b558185612af0565b9350612b6083612b00565b805f5b83811015612b90578151612b778882612b1e565b9750612b8283612b35565b925050600181019050612b63565b5085935050505092915050565b5f60a082019050612bb05f830188611eb6565b612bbd6020830187612ad7565b8181036040830152612bcf8186612b41565b9050612bde606083018561201b565b612beb6080830184611eb6565b969550505050505056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220f4d02e3e4ab551cb0baa09f7baed09d0972178b33792c4865d6b6ec06ded01be64736f6c63430008150033

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.