ETH Price: $2,634.63 (+2.22%)

Token

PeterGriffinFortniteEminem10000inu (VBUCKS)
 

Overview

Max Total Supply

42,069,000 VBUCKS

Holders

41

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
172,810.323161207965533099 VBUCKS

Value
$0.00
0x749Ee915d025157b6B13b632be936f35A4C75810
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
PeterGriffinFortniteEminem10000inu

Compiler Version
v0.8.21+commit.d9974bed

Optimization Enabled:
Yes with 999999 runs

Other Settings:
paris EvmVersion
File 1 of 3 : PeterGriffinFortniteEminem10000inu.sol
// Twitter: https://twitter.com/pgfe10000i
// Telegram: https://t.me/pgfe10000i

// SPDX-License-Identifier: MIT
pragma solidity >=0.8.0;

import "solmate/auth/Owned.sol";
import "solmate/tokens/ERC20.sol";

interface IDEXFactory {
    function createPair(address tokenA, address tokenB) external returns (address pair);
}

interface IDEXRouter {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

contract PeterGriffinFortniteEminem10000inu is ERC20, Owned {
    mapping (address => bool) isFeeExempt;

    uint256 public fee;
    uint256 constant feeDenominator = 1000;
    uint256 public whaleDenominator = 100;

    address internal team;

    IDEXRouter public router;
    address public pair;

    uint256 public swapThreshold;
    bool inSwap;
    modifier swapping() { inSwap = true; _; inSwap = false; }

    constructor (address _team, uint256 _fee) Owned(msg.sender) ERC20("PeterGriffinFortniteEminem10000inu", "VBUCKS", 18) {
        address routerAddress = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D;

        team = _team;
        fee = _fee;
        allowance[address(this)][routerAddress] = type(uint256).max;

        isFeeExempt[_team] = true;
        isFeeExempt[address(this)] = true;
        isFeeExempt[msg.sender] = true;

        uint supply = 42069000 * (10**decimals);

        router = IDEXRouter(routerAddress);
        pair = IDEXFactory(router.factory()).createPair(address(this), router.WETH());

        _mint(owner, supply);

        swapThreshold = supply / 1000 * 2; // 0.2%
    }

    function transfer(address recipient, uint256 amount) public override returns (bool) {
        return _transferFrom(msg.sender, recipient, amount);
    }

    function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
        uint256 allowed = allowance[sender][msg.sender];

        if (allowed != type(uint256).max) allowance[sender][msg.sender] = allowed - amount;

        return _transferFrom(sender, recipient, amount);
    }

    function _transferFrom(address sender, address recipient, uint256 amount) internal returns (bool) {
        if (amount > totalSupply / whaleDenominator && sender != owner) { revert("Transfer amount exceeds the whale amount"); }
        if(inSwap){ return super.transferFrom(sender, recipient, amount); }

        if(shouldSwapBack(recipient)){ swapBack(); }

        balanceOf[sender] -= amount;

        uint256 amountReceived = shouldTakeFee(sender) ? takeFee(sender, amount) : amount;

        unchecked {
            // Cannot overflow because the sum of all user
            balanceOf[recipient] += amountReceived;
        }

        emit Transfer(sender, recipient, amountReceived);
        return true;
    }

    function shouldTakeFee(address sender) internal view returns (bool) {
        return !isFeeExempt[sender];
    }

    function takeFee(address sender, uint256 amount) internal returns (uint256) {
        uint256 feeAmount = (amount * fee) / feeDenominator;
        balanceOf[address(this)] = balanceOf[address(this)] + feeAmount;
        emit Transfer(sender, address(this), feeAmount);
        return amount - feeAmount;
    }

    function shouldSwapBack(address to) internal view returns (bool) {
        return msg.sender != pair 
        && !inSwap
        && balanceOf[address(this)] >= swapThreshold;
    }

    function swapBack() internal swapping {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = router.WETH();

        uint256 balanceBefore = address(this).balance;

        router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            swapThreshold,
            0,
            path,
            address(this),
            block.timestamp
        );
        uint256 amountETH = address(this).balance - balanceBefore;

        (bool TeamSuccess,) = payable(team).call{value: amountETH, gas: 30000}("");
        require(TeamSuccess, "receiver rejected ETH transfer");
    }

    function clearStuckBalance() external {
        payable(team).transfer(address(this).balance);
    }

    function setWhaleDenominator(uint256 _whaleDenominator) external onlyOwner {
        whaleDenominator = _whaleDenominator;
    }

    function setFee(uint256 _fee) external onlyOwner {
        fee = _fee;
    }

    receive() external payable {}
}

File 2 of 3 : Owned.sol
// SPDX-License-Identifier: AGPL-3.0-only
pragma solidity >=0.8.0;

/// @notice Simple single owner authorization mixin.
/// @author Solmate (https://github.com/transmissions11/solmate/blob/main/src/auth/Owned.sol)
abstract contract Owned {
    /*//////////////////////////////////////////////////////////////
                                 EVENTS
    //////////////////////////////////////////////////////////////*/

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

    /*//////////////////////////////////////////////////////////////
                            OWNERSHIP STORAGE
    //////////////////////////////////////////////////////////////*/

    address public owner;

    modifier onlyOwner() virtual {
        require(msg.sender == owner, "UNAUTHORIZED");

        _;
    }

    /*//////////////////////////////////////////////////////////////
                               CONSTRUCTOR
    //////////////////////////////////////////////////////////////*/

    constructor(address _owner) {
        owner = _owner;

        emit OwnershipTransferred(address(0), _owner);
    }

    /*//////////////////////////////////////////////////////////////
                             OWNERSHIP LOGIC
    //////////////////////////////////////////////////////////////*/

    function transferOwnership(address newOwner) public virtual onlyOwner {
        owner = newOwner;

        emit OwnershipTransferred(msg.sender, newOwner);
    }
}

File 3 of 3 : ERC20.sol
// SPDX-License-Identifier: AGPL-3.0-only
pragma solidity >=0.8.0;

/// @notice Modern and gas efficient ERC20 + EIP-2612 implementation.
/// @author Solmate (https://github.com/transmissions11/solmate/blob/main/src/tokens/ERC20.sol)
/// @author Modified from Uniswap (https://github.com/Uniswap/uniswap-v2-core/blob/master/contracts/UniswapV2ERC20.sol)
/// @dev Do not manually set balances without updating totalSupply, as the sum of all user balances must not exceed it.
abstract contract ERC20 {
    /*//////////////////////////////////////////////////////////////
                                 EVENTS
    //////////////////////////////////////////////////////////////*/

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

    event Approval(address indexed owner, address indexed spender, uint256 amount);

    /*//////////////////////////////////////////////////////////////
                            METADATA STORAGE
    //////////////////////////////////////////////////////////////*/

    string public name;

    string public symbol;

    uint8 public immutable decimals;

    /*//////////////////////////////////////////////////////////////
                              ERC20 STORAGE
    //////////////////////////////////////////////////////////////*/

    uint256 public totalSupply;

    mapping(address => uint256) public balanceOf;

    mapping(address => mapping(address => uint256)) public allowance;

    /*//////////////////////////////////////////////////////////////
                            EIP-2612 STORAGE
    //////////////////////////////////////////////////////////////*/

    uint256 internal immutable INITIAL_CHAIN_ID;

    bytes32 internal immutable INITIAL_DOMAIN_SEPARATOR;

    mapping(address => uint256) public nonces;

    /*//////////////////////////////////////////////////////////////
                               CONSTRUCTOR
    //////////////////////////////////////////////////////////////*/

    constructor(
        string memory _name,
        string memory _symbol,
        uint8 _decimals
    ) {
        name = _name;
        symbol = _symbol;
        decimals = _decimals;

        INITIAL_CHAIN_ID = block.chainid;
        INITIAL_DOMAIN_SEPARATOR = computeDomainSeparator();
    }

    /*//////////////////////////////////////////////////////////////
                               ERC20 LOGIC
    //////////////////////////////////////////////////////////////*/

    function approve(address spender, uint256 amount) public virtual returns (bool) {
        allowance[msg.sender][spender] = amount;

        emit Approval(msg.sender, spender, amount);

        return true;
    }

    function transfer(address to, uint256 amount) public virtual returns (bool) {
        balanceOf[msg.sender] -= amount;

        // Cannot overflow because the sum of all user
        // balances can't exceed the max uint256 value.
        unchecked {
            balanceOf[to] += amount;
        }

        emit Transfer(msg.sender, to, amount);

        return true;
    }

    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual returns (bool) {
        uint256 allowed = allowance[from][msg.sender]; // Saves gas for limited approvals.

        if (allowed != type(uint256).max) allowance[from][msg.sender] = allowed - amount;

        balanceOf[from] -= amount;

        // Cannot overflow because the sum of all user
        // balances can't exceed the max uint256 value.
        unchecked {
            balanceOf[to] += amount;
        }

        emit Transfer(from, to, amount);

        return true;
    }

    /*//////////////////////////////////////////////////////////////
                             EIP-2612 LOGIC
    //////////////////////////////////////////////////////////////*/

    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) public virtual {
        require(deadline >= block.timestamp, "PERMIT_DEADLINE_EXPIRED");

        // Unchecked because the only math done is incrementing
        // the owner's nonce which cannot realistically overflow.
        unchecked {
            address recoveredAddress = ecrecover(
                keccak256(
                    abi.encodePacked(
                        "\x19\x01",
                        DOMAIN_SEPARATOR(),
                        keccak256(
                            abi.encode(
                                keccak256(
                                    "Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)"
                                ),
                                owner,
                                spender,
                                value,
                                nonces[owner]++,
                                deadline
                            )
                        )
                    )
                ),
                v,
                r,
                s
            );

            require(recoveredAddress != address(0) && recoveredAddress == owner, "INVALID_SIGNER");

            allowance[recoveredAddress][spender] = value;
        }

        emit Approval(owner, spender, value);
    }

    function DOMAIN_SEPARATOR() public view virtual returns (bytes32) {
        return block.chainid == INITIAL_CHAIN_ID ? INITIAL_DOMAIN_SEPARATOR : computeDomainSeparator();
    }

    function computeDomainSeparator() internal view virtual returns (bytes32) {
        return
            keccak256(
                abi.encode(
                    keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"),
                    keccak256(bytes(name)),
                    keccak256("1"),
                    block.chainid,
                    address(this)
                )
            );
    }

    /*//////////////////////////////////////////////////////////////
                        INTERNAL MINT/BURN LOGIC
    //////////////////////////////////////////////////////////////*/

    function _mint(address to, uint256 amount) internal virtual {
        totalSupply += amount;

        // Cannot overflow because the sum of all user
        // balances can't exceed the max uint256 value.
        unchecked {
            balanceOf[to] += amount;
        }

        emit Transfer(address(0), to, amount);
    }

    function _burn(address from, uint256 amount) internal virtual {
        balanceOf[from] -= amount;

        // Cannot underflow because a user's balance
        // will never be larger than the total supply.
        unchecked {
            totalSupply -= amount;
        }

        emit Transfer(from, address(0), amount);
    }
}

Settings
{
  "remappings": [
    "solmate/=lib/solmate/src/",
    "forge-std/=lib/forge-std/src/",
    "v2-core/=lib/v2-core/contracts/",
    "v2-periphery/=lib/v2-periphery/contracts/",
    "ds-test/=lib/forge-std/lib/ds-test/src/",
    "@uniswap/v2-core/=lib/v2-core/contracts/",
    "@uniswap/lib/contracts/libraries/=lib/",
    "solady/=lib/solady/src/"
  ],
  "optimizer": {
    "enabled": true,
    "runs": 999999
  },
  "metadata": {
    "useLiteralContent": false,
    "bytecodeHash": "ipfs",
    "appendCBOR": true
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "evmVersion": "paris",
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_team","type":"address"},{"internalType":"uint256","name":"_fee","type":"uint256"}],"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":"amount","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","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":"amount","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"clearStuckBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IDEXRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fee","type":"uint256"}],"name":"setFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_whaleDenominator","type":"uint256"}],"name":"setWhaleDenominator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whaleDenominator","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60e060405260646009553480156200001657600080fd5b506040516200214f3803806200214f8339810160408190526200003991620004a6565b336040518060600160405280602281526020016200212d60229139604080518082019091526006815265564255434b5360d01b6020820152601260006200008184826200057a565b5060016200009083826200057a565b5060ff81166080524660a052620000a662000380565b60c0525050600680546001600160a01b0319166001600160a01b0384169081179091556040519091506000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600a80546001600160a01b0319166001600160a01b03841690811782556008839055306000818152600460209081526040808320737a250d5630b4cf539739df2c5dacb4c659f2488d80855290835281842060001990559483526007909152808220805460ff19908116600190811790925593835281832080548516821790553383529082208054909316179091556080519192909162000199916200075b565b620001a990630281ec0862000773565b600b80546001600160a01b0319166001600160a01b0385169081179091556040805163c45a015560e01b81529051929350909163c45a0155916004808201926020929091908290030181865afa15801562000208573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200022e91906200078d565b6001600160a01b031663c9c6539630600b60009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000291573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002b791906200078d565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000305573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200032b91906200078d565b600c80546001600160a01b0319166001600160a01b03928316179055600654620003579116826200041c565b620003656103e882620007ab565b6200037290600262000773565b600d55506200086292505050565b60007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6000604051620003b49190620007ce565b6040805191829003822060208301939093528101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608201524660808201523060a082015260c00160405160208183030381529060405280519060200120905090565b80600260008282546200043091906200084c565b90915550506001600160a01b0382166000818152600360209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b80516001600160a01b0381168114620004a157600080fd5b919050565b60008060408385031215620004ba57600080fd5b620004c58362000489565b9150602083015190509250929050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200050057607f821691505b6020821081036200052157634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200057557600081815260208120601f850160051c81016020861015620005505750805b601f850160051c820191505b8181101562000571578281556001016200055c565b5050505b505050565b81516001600160401b03811115620005965762000596620004d5565b620005ae81620005a78454620004eb565b8462000527565b602080601f831160018114620005e65760008415620005cd5750858301515b600019600386901b1c1916600185901b17855562000571565b600085815260208120601f198616915b828110156200061757888601518255948401946001909101908401620005f6565b5085821015620006365787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b808511156200069d57816000190482111562000681576200068162000646565b808516156200068f57918102915b93841c939080029062000661565b509250929050565b600082620006b65750600162000755565b81620006c55750600062000755565b8160018114620006de5760028114620006e95762000709565b600191505062000755565b60ff841115620006fd57620006fd62000646565b50506001821b62000755565b5060208310610133831016604e8410600b84101617156200072e575081810a62000755565b6200073a83836200065c565b806000190482111562000751576200075162000646565b0290505b92915050565b60006200076c60ff841683620006a5565b9392505050565b808202811582820484141762000755576200075562000646565b600060208284031215620007a057600080fd5b6200076c8262000489565b600082620007c957634e487b7160e01b600052601260045260246000fd5b500490565b6000808354620007de81620004eb565b60018281168015620007f957600181146200080f5762000840565b60ff198416875282151583028701945062000840565b8760005260208060002060005b85811015620008375781548a8201529084019082016200081c565b50505082870194505b50929695505050505050565b8082018082111562000755576200075562000646565b60805160a05160c05161189b6200089260003960006106fb015260006106c601526000610248015261189b6000f3fe6080604052600436106101795760003560e01c80637ecebe00116100cb578063d505accf1161007f578063f2fde38b11610059578063f2fde38b14610464578063f40d2d2414610484578063f887ea401461049a57600080fd5b8063d505accf146103f6578063dd62ed3e14610416578063ddca3f431461044e57600080fd5b806395d89b41116100b057806395d89b4114610394578063a8aa1b31146103a9578063a9059cbb146103d657600080fd5b80637ecebe00146103155780638da5cb5b1461034257600080fd5b8063313ce5671161012d578063664c1b4811610107578063664c1b48146102a857806369fe0e2d146102c857806370a08231146102e857600080fd5b8063313ce56714610236578063364333f41461027c5780633644e5151461029357600080fd5b8063095ea7b31161015e578063095ea7b3146101d057806318160ddd1461020057806323b872dd1461021657600080fd5b80630445b6671461018557806306fdde03146101ae57600080fd5b3661018057005b600080fd5b34801561019157600080fd5b5061019b600d5481565b6040519081526020015b60405180910390f35b3480156101ba57600080fd5b506101c36104c7565b6040516101a591906113dd565b3480156101dc57600080fd5b506101f06101eb36600461146b565b610555565b60405190151581526020016101a5565b34801561020c57600080fd5b5061019b60025481565b34801561022257600080fd5b506101f0610231366004611497565b6105cf565b34801561024257600080fd5b5061026a7f000000000000000000000000000000000000000000000000000000000000000081565b60405160ff90911681526020016101a5565b34801561028857600080fd5b50610291610679565b005b34801561029f57600080fd5b5061019b6106c2565b3480156102b457600080fd5b506102916102c33660046114d8565b61071d565b3480156102d457600080fd5b506102916102e33660046114d8565b6107a8565b3480156102f457600080fd5b5061019b6103033660046114f1565b60036020526000908152604090205481565b34801561032157600080fd5b5061019b6103303660046114f1565b60056020526000908152604090205481565b34801561034e57600080fd5b5060065461036f9073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016101a5565b3480156103a057600080fd5b506101c361082e565b3480156103b557600080fd5b50600c5461036f9073ffffffffffffffffffffffffffffffffffffffff1681565b3480156103e257600080fd5b506101f06103f136600461146b565b61083b565b34801561040257600080fd5b5061029161041136600461150e565b610848565b34801561042257600080fd5b5061019b610431366004611585565b600460209081526000928352604080842090915290825290205481565b34801561045a57600080fd5b5061019b60085481565b34801561047057600080fd5b5061029161047f3660046114f1565b610b67565b34801561049057600080fd5b5061019b60095481565b3480156104a657600080fd5b50600b5461036f9073ffffffffffffffffffffffffffffffffffffffff1681565b600080546104d4906115be565b80601f0160208091040260200160405190810160405280929190818152602001828054610500906115be565b801561054d5780601f106105225761010080835404028352916020019161054d565b820191906000526020600020905b81548152906001019060200180831161053057829003601f168201915b505050505081565b33600081815260046020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906105bd9086815260200190565b60405180910390a35060015b92915050565b73ffffffffffffffffffffffffffffffffffffffff831660009081526004602090815260408083203384529091528120547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610663576106318382611640565b73ffffffffffffffffffffffffffffffffffffffff861660009081526004602090815260408083203384529091529020555b61066e858585610c59565b9150505b9392505050565b600a5460405173ffffffffffffffffffffffffffffffffffffffff909116904780156108fc02916000818181858888f193505050501580156106bf573d6000803e3d6000fd5b50565b60007f000000000000000000000000000000000000000000000000000000000000000046146106f8576106f3610e45565b905090565b507f000000000000000000000000000000000000000000000000000000000000000090565b60065473ffffffffffffffffffffffffffffffffffffffff1633146107a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f554e415554484f52495a4544000000000000000000000000000000000000000060448201526064015b60405180910390fd5b600955565b60065473ffffffffffffffffffffffffffffffffffffffff163314610829576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f554e415554484f52495a45440000000000000000000000000000000000000000604482015260640161079a565b600855565b600180546104d4906115be565b6000610672338484610c59565b428410156108b2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f5045524d49545f444541444c494e455f45585049524544000000000000000000604482015260640161079a565b600060016108be6106c2565b73ffffffffffffffffffffffffffffffffffffffff8a811660008181526005602090815260409182902080546001810190915582517f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98184015280840194909452938d166060840152608083018c905260a083019390935260c08083018b90528151808403909101815260e0830190915280519201919091207f190100000000000000000000000000000000000000000000000000000000000061010083015261010282019290925261012281019190915261014201604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181528282528051602091820120600084529083018083525260ff871690820152606081018590526080810184905260a0016020604051602081039080840390855afa158015610a10573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff811615801590610a8b57508773ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16145b610af1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600e60248201527f494e56414c49445f5349474e4552000000000000000000000000000000000000604482015260640161079a565b73ffffffffffffffffffffffffffffffffffffffff90811660009081526004602090815260408083208a8516808552908352928190208990555188815291928a16917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a350505050505050565b60065473ffffffffffffffffffffffffffffffffffffffff163314610be8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f554e415554484f52495a45440000000000000000000000000000000000000000604482015260640161079a565b600680547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff831690811790915560405133907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a350565b6000600954600254610c6b9190611653565b82118015610c94575060065473ffffffffffffffffffffffffffffffffffffffff858116911614155b15610d21576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865207768616c60448201527f6520616d6f756e74000000000000000000000000000000000000000000000000606482015260840161079a565b600e5460ff1615610d3e57610d37848484610edf565b9050610672565b610d4783611010565b15610d5457610d54611060565b73ffffffffffffffffffffffffffffffffffffffff841660009081526003602052604081208054849290610d89908490611640565b909155505073ffffffffffffffffffffffffffffffffffffffff841660009081526007602052604081205460ff1615610dc25782610dcc565b610dcc8584611329565b73ffffffffffffffffffffffffffffffffffffffff808616600081815260036020526040908190208054850190555192935091908716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610e329085815260200190565b60405180910390a3506001949350505050565b60007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6000604051610e77919061168e565b6040805191829003822060208301939093528101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608201524660808201523060a082015260c00160405160208183030381529060405280519060200120905090565b73ffffffffffffffffffffffffffffffffffffffff831660009081526004602090815260408083203384529091528120547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610f7357610f418382611640565b73ffffffffffffffffffffffffffffffffffffffff861660009081526004602090815260408083203384529091529020555b73ffffffffffffffffffffffffffffffffffffffff851660009081526003602052604081208054859290610fa8908490611640565b909155505073ffffffffffffffffffffffffffffffffffffffff808516600081815260036020526040908190208054870190555190918716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610e329087815260200190565b600c5460009073ffffffffffffffffffffffffffffffffffffffff16331480159061103e5750600e5460ff16155b80156105c95750600d5430600090815260036020526040902054101592915050565b600e80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016600117905560408051600280825260608201835260009260208301908036833701905050905030816000815181106110c0576110c0611764565b73ffffffffffffffffffffffffffffffffffffffff928316602091820292909201810191909152600b54604080517fad5c46480000000000000000000000000000000000000000000000000000000081529051919093169263ad5c46489260048083019391928290030181865afa15801561113f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111639190611793565b8160018151811061117657611176611764565b73ffffffffffffffffffffffffffffffffffffffff9283166020918202929092010152600b54600d546040517f791ac9470000000000000000000000000000000000000000000000000000000081524793929092169163791ac947916111e7916000908790309042906004016117b0565b600060405180830381600087803b15801561120157600080fd5b505af1158015611215573d6000803e3d6000fd5b50505050600081476112279190611640565b600a5460405191925060009173ffffffffffffffffffffffffffffffffffffffff9091169061753090849084818181858888f193505050503d806000811461128b576040519150601f19603f3d011682016040523d82523d6000602084013e611290565b606091505b50509050806112fb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f72656365697665722072656a656374656420455448207472616e736665720000604482015260640161079a565b5050600e80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690555050565b6000806103e86008548461133d919061183b565b6113479190611653565b30600090815260036020526040902054909150611365908290611852565b306000818152600360205260409081902092909255905173ffffffffffffffffffffffffffffffffffffffff8616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906113c39085815260200190565b60405180910390a36113d58184611640565b949350505050565b600060208083528351808285015260005b8181101561140a578581018301518582016040015282016113ee565b5060006040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b73ffffffffffffffffffffffffffffffffffffffff811681146106bf57600080fd5b6000806040838503121561147e57600080fd5b823561148981611449565b946020939093013593505050565b6000806000606084860312156114ac57600080fd5b83356114b781611449565b925060208401356114c781611449565b929592945050506040919091013590565b6000602082840312156114ea57600080fd5b5035919050565b60006020828403121561150357600080fd5b813561067281611449565b600080600080600080600060e0888a03121561152957600080fd5b873561153481611449565b9650602088013561154481611449565b95506040880135945060608801359350608088013560ff8116811461156857600080fd5b9699959850939692959460a0840135945060c09093013592915050565b6000806040838503121561159857600080fd5b82356115a381611449565b915060208301356115b381611449565b809150509250929050565b600181811c908216806115d257607f821691505b60208210810361160b577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b818103818111156105c9576105c9611611565b600082611689577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b600080835481600182811c9150808316806116aa57607f831692505b602080841082036116e2577f4e487b710000000000000000000000000000000000000000000000000000000086526022600452602486fd5b8180156116f6576001811461172957611756565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0086168952841515850289019650611756565b60008a81526020902060005b8681101561174e5781548b820152908501908301611735565b505084890196505b509498975050505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000602082840312156117a557600080fd5b815161067281611449565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561180d57845173ffffffffffffffffffffffffffffffffffffffff16835293830193918301916001016117db565b505073ffffffffffffffffffffffffffffffffffffffff969096166060850152505050608001529392505050565b80820281158282048414176105c9576105c9611611565b808201808211156105c9576105c961161156fea2646970667358221220c087b76fed7fa5c5ebc0ea2f3f0973c3b254d1be6f12369d08dbdc139b847d2d64736f6c6343000815003350657465724772696666696e466f72746e697465456d696e656d3130303030696e75000000000000000000000000d4fb167a80b97bf3905a97f14673d0efb07c73a300000000000000000000000000000000000000000000000000000000000000fa

Deployed Bytecode

0x6080604052600436106101795760003560e01c80637ecebe00116100cb578063d505accf1161007f578063f2fde38b11610059578063f2fde38b14610464578063f40d2d2414610484578063f887ea401461049a57600080fd5b8063d505accf146103f6578063dd62ed3e14610416578063ddca3f431461044e57600080fd5b806395d89b41116100b057806395d89b4114610394578063a8aa1b31146103a9578063a9059cbb146103d657600080fd5b80637ecebe00146103155780638da5cb5b1461034257600080fd5b8063313ce5671161012d578063664c1b4811610107578063664c1b48146102a857806369fe0e2d146102c857806370a08231146102e857600080fd5b8063313ce56714610236578063364333f41461027c5780633644e5151461029357600080fd5b8063095ea7b31161015e578063095ea7b3146101d057806318160ddd1461020057806323b872dd1461021657600080fd5b80630445b6671461018557806306fdde03146101ae57600080fd5b3661018057005b600080fd5b34801561019157600080fd5b5061019b600d5481565b6040519081526020015b60405180910390f35b3480156101ba57600080fd5b506101c36104c7565b6040516101a591906113dd565b3480156101dc57600080fd5b506101f06101eb36600461146b565b610555565b60405190151581526020016101a5565b34801561020c57600080fd5b5061019b60025481565b34801561022257600080fd5b506101f0610231366004611497565b6105cf565b34801561024257600080fd5b5061026a7f000000000000000000000000000000000000000000000000000000000000001281565b60405160ff90911681526020016101a5565b34801561028857600080fd5b50610291610679565b005b34801561029f57600080fd5b5061019b6106c2565b3480156102b457600080fd5b506102916102c33660046114d8565b61071d565b3480156102d457600080fd5b506102916102e33660046114d8565b6107a8565b3480156102f457600080fd5b5061019b6103033660046114f1565b60036020526000908152604090205481565b34801561032157600080fd5b5061019b6103303660046114f1565b60056020526000908152604090205481565b34801561034e57600080fd5b5060065461036f9073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016101a5565b3480156103a057600080fd5b506101c361082e565b3480156103b557600080fd5b50600c5461036f9073ffffffffffffffffffffffffffffffffffffffff1681565b3480156103e257600080fd5b506101f06103f136600461146b565b61083b565b34801561040257600080fd5b5061029161041136600461150e565b610848565b34801561042257600080fd5b5061019b610431366004611585565b600460209081526000928352604080842090915290825290205481565b34801561045a57600080fd5b5061019b60085481565b34801561047057600080fd5b5061029161047f3660046114f1565b610b67565b34801561049057600080fd5b5061019b60095481565b3480156104a657600080fd5b50600b5461036f9073ffffffffffffffffffffffffffffffffffffffff1681565b600080546104d4906115be565b80601f0160208091040260200160405190810160405280929190818152602001828054610500906115be565b801561054d5780601f106105225761010080835404028352916020019161054d565b820191906000526020600020905b81548152906001019060200180831161053057829003601f168201915b505050505081565b33600081815260046020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906105bd9086815260200190565b60405180910390a35060015b92915050565b73ffffffffffffffffffffffffffffffffffffffff831660009081526004602090815260408083203384529091528120547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610663576106318382611640565b73ffffffffffffffffffffffffffffffffffffffff861660009081526004602090815260408083203384529091529020555b61066e858585610c59565b9150505b9392505050565b600a5460405173ffffffffffffffffffffffffffffffffffffffff909116904780156108fc02916000818181858888f193505050501580156106bf573d6000803e3d6000fd5b50565b60007f000000000000000000000000000000000000000000000000000000000000000146146106f8576106f3610e45565b905090565b507f4594e5bcf0551e2f4dcf7dbd8a689488178a2e2a56c8d0fd56969b2f0d85815d90565b60065473ffffffffffffffffffffffffffffffffffffffff1633146107a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f554e415554484f52495a4544000000000000000000000000000000000000000060448201526064015b60405180910390fd5b600955565b60065473ffffffffffffffffffffffffffffffffffffffff163314610829576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f554e415554484f52495a45440000000000000000000000000000000000000000604482015260640161079a565b600855565b600180546104d4906115be565b6000610672338484610c59565b428410156108b2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f5045524d49545f444541444c494e455f45585049524544000000000000000000604482015260640161079a565b600060016108be6106c2565b73ffffffffffffffffffffffffffffffffffffffff8a811660008181526005602090815260409182902080546001810190915582517f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98184015280840194909452938d166060840152608083018c905260a083019390935260c08083018b90528151808403909101815260e0830190915280519201919091207f190100000000000000000000000000000000000000000000000000000000000061010083015261010282019290925261012281019190915261014201604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181528282528051602091820120600084529083018083525260ff871690820152606081018590526080810184905260a0016020604051602081039080840390855afa158015610a10573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff811615801590610a8b57508773ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16145b610af1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600e60248201527f494e56414c49445f5349474e4552000000000000000000000000000000000000604482015260640161079a565b73ffffffffffffffffffffffffffffffffffffffff90811660009081526004602090815260408083208a8516808552908352928190208990555188815291928a16917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a350505050505050565b60065473ffffffffffffffffffffffffffffffffffffffff163314610be8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f554e415554484f52495a45440000000000000000000000000000000000000000604482015260640161079a565b600680547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff831690811790915560405133907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a350565b6000600954600254610c6b9190611653565b82118015610c94575060065473ffffffffffffffffffffffffffffffffffffffff858116911614155b15610d21576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865207768616c60448201527f6520616d6f756e74000000000000000000000000000000000000000000000000606482015260840161079a565b600e5460ff1615610d3e57610d37848484610edf565b9050610672565b610d4783611010565b15610d5457610d54611060565b73ffffffffffffffffffffffffffffffffffffffff841660009081526003602052604081208054849290610d89908490611640565b909155505073ffffffffffffffffffffffffffffffffffffffff841660009081526007602052604081205460ff1615610dc25782610dcc565b610dcc8584611329565b73ffffffffffffffffffffffffffffffffffffffff808616600081815260036020526040908190208054850190555192935091908716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610e329085815260200190565b60405180910390a3506001949350505050565b60007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6000604051610e77919061168e565b6040805191829003822060208301939093528101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608201524660808201523060a082015260c00160405160208183030381529060405280519060200120905090565b73ffffffffffffffffffffffffffffffffffffffff831660009081526004602090815260408083203384529091528120547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610f7357610f418382611640565b73ffffffffffffffffffffffffffffffffffffffff861660009081526004602090815260408083203384529091529020555b73ffffffffffffffffffffffffffffffffffffffff851660009081526003602052604081208054859290610fa8908490611640565b909155505073ffffffffffffffffffffffffffffffffffffffff808516600081815260036020526040908190208054870190555190918716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610e329087815260200190565b600c5460009073ffffffffffffffffffffffffffffffffffffffff16331480159061103e5750600e5460ff16155b80156105c95750600d5430600090815260036020526040902054101592915050565b600e80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016600117905560408051600280825260608201835260009260208301908036833701905050905030816000815181106110c0576110c0611764565b73ffffffffffffffffffffffffffffffffffffffff928316602091820292909201810191909152600b54604080517fad5c46480000000000000000000000000000000000000000000000000000000081529051919093169263ad5c46489260048083019391928290030181865afa15801561113f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111639190611793565b8160018151811061117657611176611764565b73ffffffffffffffffffffffffffffffffffffffff9283166020918202929092010152600b54600d546040517f791ac9470000000000000000000000000000000000000000000000000000000081524793929092169163791ac947916111e7916000908790309042906004016117b0565b600060405180830381600087803b15801561120157600080fd5b505af1158015611215573d6000803e3d6000fd5b50505050600081476112279190611640565b600a5460405191925060009173ffffffffffffffffffffffffffffffffffffffff9091169061753090849084818181858888f193505050503d806000811461128b576040519150601f19603f3d011682016040523d82523d6000602084013e611290565b606091505b50509050806112fb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f72656365697665722072656a656374656420455448207472616e736665720000604482015260640161079a565b5050600e80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690555050565b6000806103e86008548461133d919061183b565b6113479190611653565b30600090815260036020526040902054909150611365908290611852565b306000818152600360205260409081902092909255905173ffffffffffffffffffffffffffffffffffffffff8616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906113c39085815260200190565b60405180910390a36113d58184611640565b949350505050565b600060208083528351808285015260005b8181101561140a578581018301518582016040015282016113ee565b5060006040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b73ffffffffffffffffffffffffffffffffffffffff811681146106bf57600080fd5b6000806040838503121561147e57600080fd5b823561148981611449565b946020939093013593505050565b6000806000606084860312156114ac57600080fd5b83356114b781611449565b925060208401356114c781611449565b929592945050506040919091013590565b6000602082840312156114ea57600080fd5b5035919050565b60006020828403121561150357600080fd5b813561067281611449565b600080600080600080600060e0888a03121561152957600080fd5b873561153481611449565b9650602088013561154481611449565b95506040880135945060608801359350608088013560ff8116811461156857600080fd5b9699959850939692959460a0840135945060c09093013592915050565b6000806040838503121561159857600080fd5b82356115a381611449565b915060208301356115b381611449565b809150509250929050565b600181811c908216806115d257607f821691505b60208210810361160b577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b818103818111156105c9576105c9611611565b600082611689577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b600080835481600182811c9150808316806116aa57607f831692505b602080841082036116e2577f4e487b710000000000000000000000000000000000000000000000000000000086526022600452602486fd5b8180156116f6576001811461172957611756565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0086168952841515850289019650611756565b60008a81526020902060005b8681101561174e5781548b820152908501908301611735565b505084890196505b509498975050505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000602082840312156117a557600080fd5b815161067281611449565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561180d57845173ffffffffffffffffffffffffffffffffffffffff16835293830193918301916001016117db565b505073ffffffffffffffffffffffffffffffffffffffff969096166060850152505050608001529392505050565b80820281158282048414176105c9576105c9611611565b808201808211156105c9576105c961161156fea2646970667358221220c087b76fed7fa5c5ebc0ea2f3f0973c3b254d1be6f12369d08dbdc139b847d2d64736f6c63430008150033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000d4fB167a80b97Bf3905a97f14673D0Efb07c73A300000000000000000000000000000000000000000000000000000000000000FA

-----Decoded View---------------
Arg [0] : _team (address): 0xd4fB167a80b97Bf3905a97f14673D0Efb07c73A3
Arg [1] : _fee (uint256): 250

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000d4fB167a80b97Bf3905a97f14673D0Efb07c73A3
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000FA


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.