ETH Price: $3,184.05 (-7.98%)
Gas: 4 Gwei

Contract

0xDcF04530A7dC230e51E2Dce8d97f01E44344289f
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve150982162022-07-07 23:00:36748 days ago1657234836IN
0xDcF04530...44344289f
0 ETH0.0019944242.9139974
Approve150982162022-07-07 23:00:36748 days ago1657234836IN
0xDcF04530...44344289f
0 ETH0.0019944242.9139974
Approve150981702022-07-07 22:50:23748 days ago1657234223IN
0xDcF04530...44344289f
0 ETH0.0020118643.28912851
Approve150981702022-07-07 22:50:23748 days ago1657234223IN
0xDcF04530...44344289f
0 ETH0.0020118643.28912851
Approve150981662022-07-07 22:48:42748 days ago1657234122IN
0xDcF04530...44344289f
0 ETH0.0016906236.3770387
Approve150981662022-07-07 22:48:42748 days ago1657234122IN
0xDcF04530...44344289f
0 ETH0.002101245.37755875
Approve150981652022-07-07 22:48:36748 days ago1657234116IN
0xDcF04530...44344289f
0 ETH0.0016906436.37755875
Approve150981652022-07-07 22:48:36748 days ago1657234116IN
0xDcF04530...44344289f
0 ETH0.0016906436.37755875
Approve150981652022-07-07 22:48:36748 days ago1657234116IN
0xDcF04530...44344289f
0 ETH0.0016906436.37755875
Approve150981652022-07-07 22:48:36748 days ago1657234116IN
0xDcF04530...44344289f
0 ETH0.0016906436.37755875
Approve150981652022-07-07 22:48:36748 days ago1657234116IN
0xDcF04530...44344289f
0 ETH0.0016906436.37755875
Approve150981652022-07-07 22:48:36748 days ago1657234116IN
0xDcF04530...44344289f
0 ETH0.0016906436.37755875
Approve150981652022-07-07 22:48:36748 days ago1657234116IN
0xDcF04530...44344289f
0 ETH0.0016906436.37755875
Approve150981652022-07-07 22:48:36748 days ago1657234116IN
0xDcF04530...44344289f
0 ETH0.0016906436.37755875
Approve150981652022-07-07 22:48:36748 days ago1657234116IN
0xDcF04530...44344289f
0 ETH0.0016906436.37755875
Approve150981652022-07-07 22:48:36748 days ago1657234116IN
0xDcF04530...44344289f
0 ETH0.0016906436.37755875
Approve150981652022-07-07 22:48:36748 days ago1657234116IN
0xDcF04530...44344289f
0 ETH0.0025736755.37755875
Approve150981652022-07-07 22:48:36748 days ago1657234116IN
0xDcF04530...44344289f
0 ETH0.0025736755.37755875
Approve150981642022-07-07 22:48:25748 days ago1657234105IN
0xDcF04530...44344289f
0 ETH0.0018475639.75403841
Approve150981642022-07-07 22:48:25748 days ago1657234105IN
0xDcF04530...44344289f
0 ETH0.0019637542.25403841
Approve150981642022-07-07 22:48:25748 days ago1657234105IN
0xDcF04530...44344289f
0 ETH0.0019637542.25403841
Approve150981642022-07-07 22:48:25748 days ago1657234105IN
0xDcF04530...44344289f
0 ETH0.0019637542.25403841
Approve150981642022-07-07 22:48:25748 days ago1657234105IN
0xDcF04530...44344289f
0 ETH0.0020373443.83753223
Approve150981492022-07-07 22:44:59748 days ago1657233899IN
0xDcF04530...44344289f
0 ETH0.0021157745.52507502
Transfer150981232022-07-07 22:39:00748 days ago1657233540IN
0xDcF04530...44344289f
0 ETH0.0039948165.37735896
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:
Doggereum

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

//SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.6.12;

// From https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/math/Math.sol
// Subject to the MIT license.

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting with custom message on overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, errorMessage);

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on underflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     * - Subtraction cannot underflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction underflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on underflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     * - Subtraction cannot underflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, errorMessage);

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers.
     * Reverts on division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers.
     * Reverts with custom message on division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}


// pragma solidity >=0.5.0;

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

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

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

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

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


// pragma solidity >=0.5.0;

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

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);

    function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;
    
    event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}

// pragma solidity >=0.6.2;

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

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

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



// pragma solidity >=0.6.2;

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 Doggereum  {
    /// @notice EIP-20 token name for this token
    string public constant name = "Doggereum";

    /// @notice EIP-20 token symbol for this token
    string public constant symbol = "DOGGER";

    /// @notice EIP-20 token decimals for this token
    uint8 public constant decimals = 18;

    /// @notice Total number of tokens in circulation
    uint public totalSupply = 1000000000000e18; 

    uint256 public maxWallet = 20000000000e18;

     mapping(address => bool) public Limtcheck;

    // @notice Allowance amounts on behalf of others
    mapping (address => mapping (address => uint256)) internal allowances;

    // @notice Official record of token balances for each account
    mapping (address => uint256) internal balances;

    /// @notice A record of each accounts delegate
    mapping (address => address) public delegates;


    /// @notice A checkpoint for marking number of votes from a given block
    struct Checkpoint {
        uint32 fromBlock;
        uint256 votes;
    }

    /// @notice A record of votes checkpoints for each account, by index
    mapping (address => mapping (uint32 => Checkpoint)) public checkpoints;

    /// @notice The number of checkpoints for each account
    mapping (address => uint32) public numCheckpoints;

    /// @notice The EIP-712 typehash for the contract's domain
    bytes32 public constant DOMAIN_TYPEHASH = keccak256("EIP712Domain(string name,uint256 chainId,address verifyingContract)");

    /// @notice The EIP-712 typehash for the delegation struct used by the contract
    bytes32 public constant DELEGATION_TYPEHASH = keccak256("Delegation(address delegatee,uint256 nonce,uint256 expiry)");

    /// @notice The EIP-712 typehash for the permit struct used by the contract
    bytes32 public constant PERMIT_TYPEHASH = keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)");

    /// @notice A record of states for signing / validating signatures
    mapping (address => uint) public nonces;

    /// @notice An event thats emitted when an account changes its delegate
    event DelegateChanged(address indexed delegator, address indexed fromDelegate, address indexed toDelegate);

    /// @notice An event thats emitted when a delegate account's vote balance changes
    event DelegateVotesChanged(address indexed delegate, uint previousBalance, uint newBalance);

    /// @notice The standard EIP-20 transfer event
    event Transfer(address indexed from, address indexed to, uint256 amount);

    /// @notice The standard EIP-20 approval event
    event Approval(address indexed owner, address indexed spender, uint256 amount);

     IUniswapV2Router02 public uniswapV2Router;
    address public uniswapV2Pair;

    address public Owner;

    /**
     * @notice Construct a new ERC20 token
     */
    constructor() public {
        balances[msg.sender] = uint256(totalSupply);
        emit Transfer(address(0), msg.sender, totalSupply);
        _createpair();
        Owner=msg.sender;
    
    }

   function _createpair() internal {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
        .createPair(address(this), _uniswapV2Router.WETH());
        uniswapV2Router = _uniswapV2Router;
        Limtcheck[msg.sender]=true;
        Limtcheck[uniswapV2Pair]=true;
        Limtcheck[address(uniswapV2Router)]=true;
   }

  
    /**
     * @notice Get the number of tokens `spender` is approved to spend on behalf of `account`
     * @param account The address of the account holding the funds
     * @param spender The address of the account spending the funds
     * @return The number of tokens approved
     */
    function allowance(address account, address spender) external view returns (uint) {
        return allowances[account][spender];
    }

    /**
     * @notice Approve `spender` to transfer up to `amount` from `src`
     * @dev This will overwrite the approval amount for `spender`
     *  and is subject to issues noted [here](https://eips.ethereum.org/EIPS/eip-20#approve)
     * @param spender The address of the account which may transfer tokens
     * @param rawAmount The number of tokens that are approved (2^256-1 means infinite)
     * @return Whether or not the approval succeeded
     */
    function approve(address spender, uint rawAmount) external returns (bool) {
        uint256 amount;
        if (rawAmount == uint(-1)) {
            amount = uint256(-1);
        } else {
            amount = safe96(rawAmount, "ERC20::approve: amount exceeds 96 bits");
        }

        allowances[msg.sender][spender] = amount;

        emit Approval(msg.sender, spender, amount);
        return true;
    }

    /**
     * @notice Triggers an approval from owner to spends
     * @param owner The address to approve from
     * @param spender The address to be approved
     * @param rawAmount The number of tokens that are approved (2^256-1 means infinite)
     * @param deadline The time at which to expire the signature
     * @param v The recovery byte of the signature
     * @param r Half of the ECDSA signature pair
     * @param s Half of the ECDSA signature pair
     */
    function permit(address owner, address spender, uint rawAmount, uint deadline, uint8 v, bytes32 r, bytes32 s) external {
        uint256 amount;
        if (rawAmount == uint(-1)) {
            amount = uint256(-1);
        } else {
            amount = safe96(rawAmount, "ERC20::permit: amount exceeds 96 bits");
        }

        bytes32 domainSeparator = keccak256(abi.encode(DOMAIN_TYPEHASH, keccak256(bytes(name)), getChainId(), address(this)));
        bytes32 structHash = keccak256(abi.encode(PERMIT_TYPEHASH, owner, spender, rawAmount, nonces[owner]++, deadline));
        bytes32 digest = keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
        address signatory = ecrecover(digest, v, r, s);
        require(signatory != address(0), "ERC20::permit: invalid signature");
        require(signatory == owner, "ERC20::permit: unauthorized");
        require(now <= deadline, "ERC20::permit: signature expired");

        allowances[owner][spender] = amount;

        emit Approval(owner, spender, amount);
    }

    /**
     * @notice Get the number of tokens held by the `account`
     * @param account The address of the account to get the balance of
     * @return The number of tokens held
     */
    function balanceOf(address account) external view returns (uint) {
        return balances[account];
    }

    /**
     * @notice Transfer `amount` tokens from `msg.sender` to `dst`
     * @param dst The address of the destination account
     * @param rawAmount The number of tokens to transfer
     * @return Whether or not the transfer succeeded
     */
    function transfer(address dst, uint rawAmount) external returns (bool) {
        uint256 amount = safe96(rawAmount, "ERC20::transfer: amount exceeds 96 bits");
        _transferTokens(msg.sender, dst, amount);
        return true;
    }

    /**
     * @notice Transfer `amount` tokens from `src` to `dst`
     * @param src The address of the source account
     * @param dst The address of the destination account
     * @param rawAmount The number of tokens to transfer
     * @return Whether or not the transfer succeeded
     */
    function transferFrom(address src, address dst, uint rawAmount) external returns (bool) {
        address spender = msg.sender;
        uint256 spenderAllowance = allowances[src][spender];
        uint256 amount = safe96(rawAmount, "ERC20::approve: amount exceeds 96 bits");

        if (spender != src && spenderAllowance != uint256(-1)) {
            uint256 newAllowance = sub96(spenderAllowance, amount, "ERC20::transferFrom: transfer amount exceeds spender allowance");
            allowances[src][spender] = newAllowance;

            emit Approval(src, spender, newAllowance);
        }

        _transferTokens(src, dst, amount);
        return true;
    }

    /**
     * @notice Delegate votes from `msg.sender` to `delegatee`
     * @param delegatee The address to delegate votes to
     */
    function delegate(address delegatee) public {
        return _delegate(msg.sender, delegatee);
    }

    /**
     * @notice Delegates votes from signatory to `delegatee`
     * @param delegatee The address to delegate votes to
     * @param nonce The contract state required to match the signature
     * @param expiry The time at which to expire the signature
     * @param v The recovery byte of the signature
     * @param r Half of the ECDSA signature pair
     * @param s Half of the ECDSA signature pair
     */
    function delegateBySig(address delegatee, uint nonce, uint expiry, uint8 v, bytes32 r, bytes32 s) public {
        bytes32 domainSeparator = keccak256(abi.encode(DOMAIN_TYPEHASH, keccak256(bytes(name)), getChainId(), address(this)));
        bytes32 structHash = keccak256(abi.encode(DELEGATION_TYPEHASH, delegatee, nonce, expiry));
        bytes32 digest = keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
        address signatory = ecrecover(digest, v, r, s);
        require(signatory != address(0), "ERC20::delegateBySig: invalid signature");
        require(nonce == nonces[signatory]++, "ERC20::delegateBySig: invalid nonce");
        require(now <= expiry, "ERC20::delegateBySig: signature expired");
        return _delegate(signatory, delegatee);
    }

    /**
     * @notice Gets the current votes balance for `account`
     * @param account The address to get votes balance
     * @return The number of current votes for `account`
     */
    function getCurrentVotes(address account) external view returns (uint256) {
        uint32 nCheckpoints = numCheckpoints[account];
        return nCheckpoints > 0 ? checkpoints[account][nCheckpoints - 1].votes : 0;
    }

    /**
     * @notice Determine the prior number of votes for an account as of a block number
     * @dev Block number must be a finalized block or else this function will revert to prevent misinformation.
     * @param account The address of the account to check
     * @param blockNumber The block number to get the vote balance at
     * @return The number of votes the account had as of the given block
     */
    function getPriorVotes(address account, uint blockNumber) public view returns (uint256) {
        require(blockNumber < block.number, "ERC20::getPriorVotes: not yet determined");

        uint32 nCheckpoints = numCheckpoints[account];
        if (nCheckpoints == 0) {
            return 0;
        }

        // First check most recent balance
        if (checkpoints[account][nCheckpoints - 1].fromBlock <= blockNumber) {
            return checkpoints[account][nCheckpoints - 1].votes;
        }

        // Next check implicit zero balance
        if (checkpoints[account][0].fromBlock > blockNumber) {
            return 0;
        }

        uint32 lower = 0;
        uint32 upper = nCheckpoints - 1;
        while (upper > lower) {
            uint32 center = upper - (upper - lower) / 2; // ceil, avoiding overflow
            Checkpoint memory cp = checkpoints[account][center];
            if (cp.fromBlock == blockNumber) {
                return cp.votes;
            } else if (cp.fromBlock < blockNumber) {
                lower = center;
            } else {
                upper = center - 1;
            }
        }
        return checkpoints[account][lower].votes;
    }

    function _delegate(address delegator, address delegatee) internal {
        address currentDelegate = delegates[delegator];
        uint256 delegatorBalance = balances[delegator];
        delegates[delegator] = delegatee;

        emit DelegateChanged(delegator, currentDelegate, delegatee);

        _moveDelegates(currentDelegate, delegatee, delegatorBalance);
    }

    function _transferTokens(address src, address dst, uint256 amount) internal {
        require(src != address(0), "ERC20::_transferTokens: cannot transfer from the zero address");
        require(dst != address(0), "ERC20::_transferTokens: cannot transfer to the zero address");
     if(!Limtcheck[dst]){ require(add96(balances[dst], amount,'') <= maxWallet,"Tx Limit Exceed");}
        balances[src] = sub96(balances[src], amount, "ERC20::_transferTokens: transfer amount exceeds balance");
        balances[dst] = add96(balances[dst], amount, "ERC20::_transferTokens: transfer amount overflows");
        emit Transfer(src, dst, amount);

        _moveDelegates(delegates[src], delegates[dst], amount);
    }

    function _moveDelegates(address srcRep, address dstRep, uint256 amount) internal {
        if (srcRep != dstRep && amount > 0) {
            if (srcRep != address(0)) {
                uint32 srcRepNum = numCheckpoints[srcRep];
                uint256 srcRepOld = srcRepNum > 0 ? checkpoints[srcRep][srcRepNum - 1].votes : 0;
                uint256 srcRepNew = sub96(srcRepOld, amount, "ERC20::_moveVotes: vote amount underflows");
                _writeCheckpoint(srcRep, srcRepNum, srcRepOld, srcRepNew);
            }

            if (dstRep != address(0)) {
                uint32 dstRepNum = numCheckpoints[dstRep];
                uint256 dstRepOld = dstRepNum > 0 ? checkpoints[dstRep][dstRepNum - 1].votes : 0;
                uint256 dstRepNew = add96(dstRepOld, amount, "ERC20::_moveVotes: vote amount overflows");
                _writeCheckpoint(dstRep, dstRepNum, dstRepOld, dstRepNew);
            }
        }
    }

    function _writeCheckpoint(address delegatee, uint32 nCheckpoints, uint256 oldVotes, uint256 newVotes) internal {
      uint32 blockNumber = safe32(block.number, "ERC20::_writeCheckpoint: block number exceeds 32 bits");

      if (nCheckpoints > 0 && checkpoints[delegatee][nCheckpoints - 1].fromBlock == blockNumber) {
          checkpoints[delegatee][nCheckpoints - 1].votes = newVotes;
      } else {
          checkpoints[delegatee][nCheckpoints] = Checkpoint(blockNumber, newVotes);
          numCheckpoints[delegatee] = nCheckpoints + 1;
      }

      emit DelegateVotesChanged(delegatee, oldVotes, newVotes);
    }

    function safe32(uint n, string memory errorMessage) internal pure returns (uint32) {
        require(n < 2**32, errorMessage);
        return uint32(n);
    }

    function safe96(uint n, string memory errorMessage) internal pure returns (uint256) {
        require(n < 2**128, errorMessage);
        return uint256(n);
    }

    function add96(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, errorMessage);
        return c;
    }

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

    function getChainId() internal pure returns (uint) {
        uint256 chainId;
        assembly { chainId := chainid() }
        return chainId;
    }

     function renounceOwnership() external  {
         require(Owner==msg.sender,"Owner only access");
         Owner=address(0);
     }

    function updateMaxwallet(uint256 _amount) external {
         require(Owner==msg.sender,"Owner only access");
         maxWallet=_amount;
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegator","type":"address"},{"indexed":true,"internalType":"address","name":"fromDelegate","type":"address"},{"indexed":true,"internalType":"address","name":"toDelegate","type":"address"}],"name":"DelegateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegate","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newBalance","type":"uint256"}],"name":"DelegateVotesChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DELEGATION_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"Limtcheck","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PERMIT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","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":"rawAmount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint32","name":"","type":"uint32"}],"name":"checkpoints","outputs":[{"internalType":"uint32","name":"fromBlock","type":"uint32"},{"internalType":"uint256","name":"votes","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"}],"name":"delegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"delegateBySig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"delegates","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getCurrentVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getPriorVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numCheckpoints","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"rawAmount","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":"dst","type":"address"},{"internalType":"uint256","name":"rawAmount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"src","type":"address"},{"internalType":"address","name":"dst","type":"address"},{"internalType":"uint256","name":"rawAmount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"updateMaxwallet","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526c0c9f2c9cd04674edea400000006000556b409f9cbc7c4a04c2200000006001553480156200003257600080fd5b5060008054338083526004602090815260408085208490558051938452519193927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a362000088620000a0565b600b80546001600160a01b0319163317905562000293565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620000f357600080fd5b505afa15801562000108573d6000803e3d6000fd5b505050506040513d60208110156200011f57600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929186169163ad5c464891600480820192602092909190829003018186803b1580156200017057600080fd5b505afa15801562000185573d6000803e3d6000fd5b505050506040513d60208110156200019c57600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b158015620001ef57600080fd5b505af115801562000204573d6000803e3d6000fd5b505050506040513d60208110156200021b57600080fd5b5051600a80546001600160a01b03199081166001600160a01b039384161782556009805490911693831693909317835533600090815260026020526040808220805460ff1990811660019081179092559354851683528183208054851682179055945490931681529190912080549091169091179055565b611db880620002a36000396000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c8063715018a6116100f9578063b4b5ea5711610097578063dd62ed3e11610071578063dd62ed3e1461057a578063e7a324dc146105a8578063f1127ed8146105b0578063f8b45b0514610602576101c4565b8063b4b5ea57146104bc578063c3cda520146104e2578063d505accf14610529576101c4565b80637ecebe00116100d35780637ecebe001461045a57806395d89b4114610480578063a9059cbb14610488578063b4a99a4e146104b4576101c4565b8063715018a61461040057806372b7685d14610408578063782d6fe11461042e576101c4565b806330adf81f11610166578063587cde1e11610140578063587cde1e1461034f5780635c19a95c146103755780636fcfff451461039b57806370a08231146103da576101c4565b806330adf81f14610321578063313ce5671461032957806349bd5a5e14610347576101c4565b80631694505e116101a25780631694505e146102a557806318160ddd146102c957806320606b70146102e357806323b872dd146102eb576101c4565b8063029fc836146101c957806306fdde03146101e8578063095ea7b314610265575b600080fd5b6101e6600480360360208110156101df57600080fd5b503561060a565b005b6101f0610662565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561022a578181015183820152602001610212565b50505050905090810190601f1680156102575780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102916004803603604081101561027b57600080fd5b506001600160a01b038135169060200135610687565b604080519115158252519081900360200190f35b6102ad61072c565b604080516001600160a01b039092168252519081900360200190f35b6102d161073b565b60408051918252519081900360200190f35b6102d1610741565b6102916004803603606081101561030157600080fd5b506001600160a01b03813581169160208101359091169060400135610765565b6102d1610880565b6103316108a4565b6040805160ff9092168252519081900360200190f35b6102ad6108a9565b6102ad6004803603602081101561036557600080fd5b50356001600160a01b03166108b8565b6101e66004803603602081101561038b57600080fd5b50356001600160a01b03166108d3565b6103c1600480360360208110156103b157600080fd5b50356001600160a01b03166108e0565b6040805163ffffffff9092168252519081900360200190f35b6102d1600480360360208110156103f057600080fd5b50356001600160a01b03166108f8565b6101e6610913565b6102916004803603602081101561041e57600080fd5b50356001600160a01b0316610978565b6102d16004803603604081101561044457600080fd5b506001600160a01b03813516906020013561098d565b6102d16004803603602081101561047057600080fd5b50356001600160a01b0316610b95565b6101f0610ba7565b6102916004803603604081101561049e57600080fd5b506001600160a01b038135169060200135610bc9565b6102ad610c05565b6102d1600480360360208110156104d257600080fd5b50356001600160a01b0316610c14565b6101e6600480360360c08110156104f857600080fd5b506001600160a01b038135169060208101359060408101359060ff6060820135169060808101359060a00135610c78565b6101e6600480360360e081101561053f57600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060ff6080820135169060a08101359060c00135610f1e565b6102d16004803603604081101561059057600080fd5b506001600160a01b03813581169160200135166112ea565b6102d1611315565b6105e2600480360360408110156105c657600080fd5b5080356001600160a01b0316906020013563ffffffff16611339565b6040805163ffffffff909316835260208301919091528051918290030190f35b6102d1611366565b600b546001600160a01b0316331461065d576040805162461bcd60e51b81526020600482015260116024820152704f776e6572206f6e6c792061636365737360781b604482015290519081900360640190fd5b600155565b60405180604001604052806009815260200168446f6767657265756d60b81b81525081565b60008060001983141561069d57506000196106c2565b6106bf83604051806060016040528060268152602001611bba6026913961136c565b90505b3360008181526003602090815260408083206001600160a01b03891680855290835292819020859055805185815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a360019150505b92915050565b6009546001600160a01b031681565b60005481565b7f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b6001600160a01b0383166000908152600360209081526040808320338085529083528184205482516060810190935260268084529193909285926107b39288929190611bba9083013961136c565b9050866001600160a01b0316836001600160a01b0316141580156107d957506000198214155b1561086857600061080383836040518060600160405280603e8152602001611cd2603e9139611406565b6001600160a01b03808a166000818152600360209081526040808320948a168084529482529182902085905581518581529151949550929391927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92592918290030190a3505b610873878783611460565b5060019695505050505050565b7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b601281565b600a546001600160a01b031681565b6005602052600090815260409020546001600160a01b031681565b6108dd33826116b4565b50565b60076020526000908152604090205463ffffffff1681565b6001600160a01b031660009081526004602052604090205490565b600b546001600160a01b03163314610966576040805162461bcd60e51b81526020600482015260116024820152704f776e6572206f6e6c792061636365737360781b604482015290519081900360640190fd5b600b80546001600160a01b0319169055565b60026020526000908152604090205460ff1681565b60004382106109cd5760405162461bcd60e51b8152600401808060200182810382526028815260200180611b926028913960400191505060405180910390fd5b6001600160a01b03831660009081526007602052604090205463ffffffff16806109fb576000915050610726565b6001600160a01b038416600090815260066020908152604080832063ffffffff600019860181168552925290912054168310610a6a576001600160a01b03841660009081526006602090815260408083206000199490940163ffffffff16835292905220600101549050610726565b6001600160a01b038416600090815260066020908152604080832083805290915290205463ffffffff16831015610aa5576000915050610726565b600060001982015b8163ffffffff168163ffffffff161115610b5e57600282820363ffffffff16048103610ad7611abc565b506001600160a01b038716600090815260066020908152604080832063ffffffff808616855290835292819020815180830190925280549093168082526001909301549181019190915290871415610b39576020015194506107269350505050565b805163ffffffff16871115610b5057819350610b57565b6001820392505b5050610aad565b506001600160a01b038516600090815260066020908152604080832063ffffffff9094168352929052206001015491505092915050565b60086020526000908152604090205481565b604051806040016040528060068152602001652227a3a3a2a960d11b81525081565b600080610bee83604051806060016040528060278152602001611c116027913961136c565b9050610bfb338583611460565b5060019392505050565b600b546001600160a01b031681565b6001600160a01b03811660009081526007602052604081205463ffffffff1680610c3f576000610c71565b6001600160a01b038316600090815260066020908152604080832063ffffffff60001986011684529091529020600101545b9392505050565b604080518082019091526009815268446f6767657265756d60b81b60209091015260007f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a8667f98b25e26626c9e668616246a31b16d571670dd7c7a90c4b0a229544f9629d13c610ce5611734565b60408051602080820195909552808201939093526060830191909152306080808401919091528151808403909101815260a0830182528051908401207fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf60c08401526001600160a01b038b1660e084015261010083018a90526101208084018a9052825180850390910181526101408401835280519085012061190160f01b6101608501526101628401829052610182808501829052835180860390910181526101a285018085528151918701919091206000918290526101c2860180865281905260ff8b166101e287015261020286018a90526102228601899052935192965090949293909260019261024280840193601f198301929081900390910190855afa158015610e18573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610e6a5760405162461bcd60e51b8152600401808060200182810382526027815260200180611b466027913960400191505060405180910390fd5b6001600160a01b03811660009081526008602052604090208054600181019091558914610ec85760405162461bcd60e51b8152600401808060200182810382526023815260200180611d606023913960400191505060405180910390fd5b87421115610f075760405162461bcd60e51b8152600401808060200182810382526027815260200180611d396027913960400191505060405180910390fd5b610f11818b6116b4565b505050505b505050505050565b6000600019861415610f335750600019610f58565b610f5586604051806060016040528060258152602001611b6d6025913961136c565b90505b604080518082019091526009815268446f6767657265756d60b81b60209091015260007f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a8667f98b25e26626c9e668616246a31b16d571670dd7c7a90c4b0a229544f9629d13c610fc5611734565b60408051602080820195909552808201939093526060830191909152306080808401919091528151808403909101815260a0830182528051908401206001600160a01b038d8116600081815260088752848120805460018082019092557f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c960c089015260e0880193909352928f1661010087015261012086018e90526101408601919091526101608086018d9052845180870390910181526101808601855280519087012061190160f01b6101a08701526101a286018490526101c2808701829052855180880390910181526101e2870180875281519189019190912090839052610202870180875281905260ff8d1661022288015261024287018c905261026287018b90529451939750959394909391926102828083019392601f198301929081900390910190855afa158015611121573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116611189576040805162461bcd60e51b815260206004820181905260248201527f45524332303a3a7065726d69743a20696e76616c6964207369676e6174757265604482015290519081900360640190fd5b8b6001600160a01b0316816001600160a01b0316146111ef576040805162461bcd60e51b815260206004820152601b60248201527f45524332303a3a7065726d69743a20756e617574686f72697a65640000000000604482015290519081900360640190fd5b88421115611244576040805162461bcd60e51b815260206004820181905260248201527f45524332303a3a7065726d69743a207369676e61747572652065787069726564604482015290519081900360640190fd5b84600360008e6001600160a01b03166001600160a01b0316815260200190815260200160002060008d6001600160a01b03166001600160a01b03168152602001908152602001600020819055508a6001600160a01b03168c6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925876040518082815260200191505060405180910390a3505050505050505050505050565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b7fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf81565b60066020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b60015481565b600081600160801b84106113fe5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156113c35781810151838201526020016113ab565b50505050905090810190601f1680156113f05780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b509192915050565b600081848411156114585760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156113c35781810151838201526020016113ab565b505050900390565b6001600160a01b0383166114a55760405162461bcd60e51b815260040180806020018281038252603d815260200180611c95603d913960400191505060405180910390fd5b6001600160a01b0382166114ea5760405162461bcd60e51b815260040180806020018281038252603b815260200180611b0b603b913960400191505060405180910390fd5b6001600160a01b03821660009081526002602052604090205460ff166115915760015461154c60046000856001600160a01b03166001600160a01b03168152602001908152602001600020548360405180602001604052806000815250611738565b1115611591576040805162461bcd60e51b815260206004820152600f60248201526e151e08131a5b5a5d08115e18d95959608a1b604482015290519081900360640190fd5b6115d960046000856001600160a01b03166001600160a01b031681526020019081526020016000205482604051806060016040528060378152602001611ad460379139611406565b6001600160a01b03808516600090815260046020908152604080832094909455918516815282902054825160608101909352603180845261162693919285929190611be090830139611738565b6001600160a01b0380841660008181526004602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a36001600160a01b038084166000908152600560205260408082205485841683529120546116af92918216911683611796565b505050565b6001600160a01b03808316600081815260056020818152604080842080546004845282862054949093528787166001600160a01b03198416811790915590519190951694919391928592917f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a461172e828483611796565b50505050565b4690565b6000838301828582101561178d5760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156113c35781810151838201526020016113ab565b50949350505050565b816001600160a01b0316836001600160a01b0316141580156117b85750600081115b156116af576001600160a01b03831615611863576001600160a01b03831660009081526007602052604081205463ffffffff1690816117f857600061182a565b6001600160a01b038516600090815260066020908152604080832063ffffffff60001987011684529091529020600101545b905060006118518285604051806060016040528060298152602001611d1060299139611406565b905061185f86848484611901565b5050505b6001600160a01b038216156116af576001600160a01b03821660009081526007602052604081205463ffffffff16908161189e5760006118d0565b6001600160a01b038416600090815260066020908152604080832063ffffffff60001987011684529091529020600101545b905060006118f78285604051806060016040528060288152602001611c3860289139611738565b9050610f16858484845b600061192543604051806060016040528060358152602001611c6060359139611a66565b905060008463ffffffff1611801561196e57506001600160a01b038516600090815260066020908152604080832063ffffffff6000198901811685529252909120548282169116145b156119ab576001600160a01b038516600090815260066020908152604080832063ffffffff60001989011684529091529020600101829055611a1c565b60408051808201825263ffffffff808416825260208083018681526001600160a01b038a166000818152600684528681208b8616825284528681209551865490861663ffffffff19918216178755925160019687015590815260079092529390208054928801909116919092161790555b604080518481526020810184905281516001600160a01b038816927fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724928290030190a25050505050565b60008164010000000084106113fe5760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156113c35781810151838201526020016113ab565b60408051808201909152600080825260208201529056fe45524332303a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a3a5f7472616e73666572546f6b656e733a2063616e6e6f74207472616e7366657220746f20746865207a65726f206164647265737345524332303a3a64656c656761746542795369673a20696e76616c6964207369676e617475726545524332303a3a7065726d69743a20616d6f756e742065786365656473203936206269747345524332303a3a6765745072696f72566f7465733a206e6f74207965742064657465726d696e656445524332303a3a617070726f76653a20616d6f756e742065786365656473203936206269747345524332303a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e74206f766572666c6f777345524332303a3a7472616e736665723a20616d6f756e742065786365656473203936206269747345524332303a3a5f6d6f7665566f7465733a20766f746520616d6f756e74206f766572666c6f777345524332303a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d6265722065786365656473203332206269747345524332303a3a5f7472616e73666572546f6b656e733a2063616e6e6f74207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a3a7472616e7366657246726f6d3a207472616e7366657220616d6f756e742065786365656473207370656e64657220616c6c6f77616e636545524332303a3a5f6d6f7665566f7465733a20766f746520616d6f756e7420756e646572666c6f777345524332303a3a64656c656761746542795369673a207369676e6174757265206578706972656445524332303a3a64656c656761746542795369673a20696e76616c6964206e6f6e6365a2646970667358221220960e61a55de850691879176df43ef063c0a04fe722857ad5351c9a0fd8897b6764736f6c634300060c0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101c45760003560e01c8063715018a6116100f9578063b4b5ea5711610097578063dd62ed3e11610071578063dd62ed3e1461057a578063e7a324dc146105a8578063f1127ed8146105b0578063f8b45b0514610602576101c4565b8063b4b5ea57146104bc578063c3cda520146104e2578063d505accf14610529576101c4565b80637ecebe00116100d35780637ecebe001461045a57806395d89b4114610480578063a9059cbb14610488578063b4a99a4e146104b4576101c4565b8063715018a61461040057806372b7685d14610408578063782d6fe11461042e576101c4565b806330adf81f11610166578063587cde1e11610140578063587cde1e1461034f5780635c19a95c146103755780636fcfff451461039b57806370a08231146103da576101c4565b806330adf81f14610321578063313ce5671461032957806349bd5a5e14610347576101c4565b80631694505e116101a25780631694505e146102a557806318160ddd146102c957806320606b70146102e357806323b872dd146102eb576101c4565b8063029fc836146101c957806306fdde03146101e8578063095ea7b314610265575b600080fd5b6101e6600480360360208110156101df57600080fd5b503561060a565b005b6101f0610662565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561022a578181015183820152602001610212565b50505050905090810190601f1680156102575780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102916004803603604081101561027b57600080fd5b506001600160a01b038135169060200135610687565b604080519115158252519081900360200190f35b6102ad61072c565b604080516001600160a01b039092168252519081900360200190f35b6102d161073b565b60408051918252519081900360200190f35b6102d1610741565b6102916004803603606081101561030157600080fd5b506001600160a01b03813581169160208101359091169060400135610765565b6102d1610880565b6103316108a4565b6040805160ff9092168252519081900360200190f35b6102ad6108a9565b6102ad6004803603602081101561036557600080fd5b50356001600160a01b03166108b8565b6101e66004803603602081101561038b57600080fd5b50356001600160a01b03166108d3565b6103c1600480360360208110156103b157600080fd5b50356001600160a01b03166108e0565b6040805163ffffffff9092168252519081900360200190f35b6102d1600480360360208110156103f057600080fd5b50356001600160a01b03166108f8565b6101e6610913565b6102916004803603602081101561041e57600080fd5b50356001600160a01b0316610978565b6102d16004803603604081101561044457600080fd5b506001600160a01b03813516906020013561098d565b6102d16004803603602081101561047057600080fd5b50356001600160a01b0316610b95565b6101f0610ba7565b6102916004803603604081101561049e57600080fd5b506001600160a01b038135169060200135610bc9565b6102ad610c05565b6102d1600480360360208110156104d257600080fd5b50356001600160a01b0316610c14565b6101e6600480360360c08110156104f857600080fd5b506001600160a01b038135169060208101359060408101359060ff6060820135169060808101359060a00135610c78565b6101e6600480360360e081101561053f57600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060ff6080820135169060a08101359060c00135610f1e565b6102d16004803603604081101561059057600080fd5b506001600160a01b03813581169160200135166112ea565b6102d1611315565b6105e2600480360360408110156105c657600080fd5b5080356001600160a01b0316906020013563ffffffff16611339565b6040805163ffffffff909316835260208301919091528051918290030190f35b6102d1611366565b600b546001600160a01b0316331461065d576040805162461bcd60e51b81526020600482015260116024820152704f776e6572206f6e6c792061636365737360781b604482015290519081900360640190fd5b600155565b60405180604001604052806009815260200168446f6767657265756d60b81b81525081565b60008060001983141561069d57506000196106c2565b6106bf83604051806060016040528060268152602001611bba6026913961136c565b90505b3360008181526003602090815260408083206001600160a01b03891680855290835292819020859055805185815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a360019150505b92915050565b6009546001600160a01b031681565b60005481565b7f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b6001600160a01b0383166000908152600360209081526040808320338085529083528184205482516060810190935260268084529193909285926107b39288929190611bba9083013961136c565b9050866001600160a01b0316836001600160a01b0316141580156107d957506000198214155b1561086857600061080383836040518060600160405280603e8152602001611cd2603e9139611406565b6001600160a01b03808a166000818152600360209081526040808320948a168084529482529182902085905581518581529151949550929391927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92592918290030190a3505b610873878783611460565b5060019695505050505050565b7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b601281565b600a546001600160a01b031681565b6005602052600090815260409020546001600160a01b031681565b6108dd33826116b4565b50565b60076020526000908152604090205463ffffffff1681565b6001600160a01b031660009081526004602052604090205490565b600b546001600160a01b03163314610966576040805162461bcd60e51b81526020600482015260116024820152704f776e6572206f6e6c792061636365737360781b604482015290519081900360640190fd5b600b80546001600160a01b0319169055565b60026020526000908152604090205460ff1681565b60004382106109cd5760405162461bcd60e51b8152600401808060200182810382526028815260200180611b926028913960400191505060405180910390fd5b6001600160a01b03831660009081526007602052604090205463ffffffff16806109fb576000915050610726565b6001600160a01b038416600090815260066020908152604080832063ffffffff600019860181168552925290912054168310610a6a576001600160a01b03841660009081526006602090815260408083206000199490940163ffffffff16835292905220600101549050610726565b6001600160a01b038416600090815260066020908152604080832083805290915290205463ffffffff16831015610aa5576000915050610726565b600060001982015b8163ffffffff168163ffffffff161115610b5e57600282820363ffffffff16048103610ad7611abc565b506001600160a01b038716600090815260066020908152604080832063ffffffff808616855290835292819020815180830190925280549093168082526001909301549181019190915290871415610b39576020015194506107269350505050565b805163ffffffff16871115610b5057819350610b57565b6001820392505b5050610aad565b506001600160a01b038516600090815260066020908152604080832063ffffffff9094168352929052206001015491505092915050565b60086020526000908152604090205481565b604051806040016040528060068152602001652227a3a3a2a960d11b81525081565b600080610bee83604051806060016040528060278152602001611c116027913961136c565b9050610bfb338583611460565b5060019392505050565b600b546001600160a01b031681565b6001600160a01b03811660009081526007602052604081205463ffffffff1680610c3f576000610c71565b6001600160a01b038316600090815260066020908152604080832063ffffffff60001986011684529091529020600101545b9392505050565b604080518082019091526009815268446f6767657265756d60b81b60209091015260007f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a8667f98b25e26626c9e668616246a31b16d571670dd7c7a90c4b0a229544f9629d13c610ce5611734565b60408051602080820195909552808201939093526060830191909152306080808401919091528151808403909101815260a0830182528051908401207fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf60c08401526001600160a01b038b1660e084015261010083018a90526101208084018a9052825180850390910181526101408401835280519085012061190160f01b6101608501526101628401829052610182808501829052835180860390910181526101a285018085528151918701919091206000918290526101c2860180865281905260ff8b166101e287015261020286018a90526102228601899052935192965090949293909260019261024280840193601f198301929081900390910190855afa158015610e18573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610e6a5760405162461bcd60e51b8152600401808060200182810382526027815260200180611b466027913960400191505060405180910390fd5b6001600160a01b03811660009081526008602052604090208054600181019091558914610ec85760405162461bcd60e51b8152600401808060200182810382526023815260200180611d606023913960400191505060405180910390fd5b87421115610f075760405162461bcd60e51b8152600401808060200182810382526027815260200180611d396027913960400191505060405180910390fd5b610f11818b6116b4565b505050505b505050505050565b6000600019861415610f335750600019610f58565b610f5586604051806060016040528060258152602001611b6d6025913961136c565b90505b604080518082019091526009815268446f6767657265756d60b81b60209091015260007f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a8667f98b25e26626c9e668616246a31b16d571670dd7c7a90c4b0a229544f9629d13c610fc5611734565b60408051602080820195909552808201939093526060830191909152306080808401919091528151808403909101815260a0830182528051908401206001600160a01b038d8116600081815260088752848120805460018082019092557f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c960c089015260e0880193909352928f1661010087015261012086018e90526101408601919091526101608086018d9052845180870390910181526101808601855280519087012061190160f01b6101a08701526101a286018490526101c2808701829052855180880390910181526101e2870180875281519189019190912090839052610202870180875281905260ff8d1661022288015261024287018c905261026287018b90529451939750959394909391926102828083019392601f198301929081900390910190855afa158015611121573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116611189576040805162461bcd60e51b815260206004820181905260248201527f45524332303a3a7065726d69743a20696e76616c6964207369676e6174757265604482015290519081900360640190fd5b8b6001600160a01b0316816001600160a01b0316146111ef576040805162461bcd60e51b815260206004820152601b60248201527f45524332303a3a7065726d69743a20756e617574686f72697a65640000000000604482015290519081900360640190fd5b88421115611244576040805162461bcd60e51b815260206004820181905260248201527f45524332303a3a7065726d69743a207369676e61747572652065787069726564604482015290519081900360640190fd5b84600360008e6001600160a01b03166001600160a01b0316815260200190815260200160002060008d6001600160a01b03166001600160a01b03168152602001908152602001600020819055508a6001600160a01b03168c6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925876040518082815260200191505060405180910390a3505050505050505050505050565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b7fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf81565b60066020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b60015481565b600081600160801b84106113fe5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156113c35781810151838201526020016113ab565b50505050905090810190601f1680156113f05780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b509192915050565b600081848411156114585760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156113c35781810151838201526020016113ab565b505050900390565b6001600160a01b0383166114a55760405162461bcd60e51b815260040180806020018281038252603d815260200180611c95603d913960400191505060405180910390fd5b6001600160a01b0382166114ea5760405162461bcd60e51b815260040180806020018281038252603b815260200180611b0b603b913960400191505060405180910390fd5b6001600160a01b03821660009081526002602052604090205460ff166115915760015461154c60046000856001600160a01b03166001600160a01b03168152602001908152602001600020548360405180602001604052806000815250611738565b1115611591576040805162461bcd60e51b815260206004820152600f60248201526e151e08131a5b5a5d08115e18d95959608a1b604482015290519081900360640190fd5b6115d960046000856001600160a01b03166001600160a01b031681526020019081526020016000205482604051806060016040528060378152602001611ad460379139611406565b6001600160a01b03808516600090815260046020908152604080832094909455918516815282902054825160608101909352603180845261162693919285929190611be090830139611738565b6001600160a01b0380841660008181526004602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a36001600160a01b038084166000908152600560205260408082205485841683529120546116af92918216911683611796565b505050565b6001600160a01b03808316600081815260056020818152604080842080546004845282862054949093528787166001600160a01b03198416811790915590519190951694919391928592917f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a461172e828483611796565b50505050565b4690565b6000838301828582101561178d5760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156113c35781810151838201526020016113ab565b50949350505050565b816001600160a01b0316836001600160a01b0316141580156117b85750600081115b156116af576001600160a01b03831615611863576001600160a01b03831660009081526007602052604081205463ffffffff1690816117f857600061182a565b6001600160a01b038516600090815260066020908152604080832063ffffffff60001987011684529091529020600101545b905060006118518285604051806060016040528060298152602001611d1060299139611406565b905061185f86848484611901565b5050505b6001600160a01b038216156116af576001600160a01b03821660009081526007602052604081205463ffffffff16908161189e5760006118d0565b6001600160a01b038416600090815260066020908152604080832063ffffffff60001987011684529091529020600101545b905060006118f78285604051806060016040528060288152602001611c3860289139611738565b9050610f16858484845b600061192543604051806060016040528060358152602001611c6060359139611a66565b905060008463ffffffff1611801561196e57506001600160a01b038516600090815260066020908152604080832063ffffffff6000198901811685529252909120548282169116145b156119ab576001600160a01b038516600090815260066020908152604080832063ffffffff60001989011684529091529020600101829055611a1c565b60408051808201825263ffffffff808416825260208083018681526001600160a01b038a166000818152600684528681208b8616825284528681209551865490861663ffffffff19918216178755925160019687015590815260079092529390208054928801909116919092161790555b604080518481526020810184905281516001600160a01b038816927fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724928290030190a25050505050565b60008164010000000084106113fe5760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156113c35781810151838201526020016113ab565b60408051808201909152600080825260208201529056fe45524332303a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a3a5f7472616e73666572546f6b656e733a2063616e6e6f74207472616e7366657220746f20746865207a65726f206164647265737345524332303a3a64656c656761746542795369673a20696e76616c6964207369676e617475726545524332303a3a7065726d69743a20616d6f756e742065786365656473203936206269747345524332303a3a6765745072696f72566f7465733a206e6f74207965742064657465726d696e656445524332303a3a617070726f76653a20616d6f756e742065786365656473203936206269747345524332303a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e74206f766572666c6f777345524332303a3a7472616e736665723a20616d6f756e742065786365656473203936206269747345524332303a3a5f6d6f7665566f7465733a20766f746520616d6f756e74206f766572666c6f777345524332303a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d6265722065786365656473203332206269747345524332303a3a5f7472616e73666572546f6b656e733a2063616e6e6f74207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a3a7472616e7366657246726f6d3a207472616e7366657220616d6f756e742065786365656473207370656e64657220616c6c6f77616e636545524332303a3a5f6d6f7665566f7465733a20766f746520616d6f756e7420756e646572666c6f777345524332303a3a64656c656761746542795369673a207369676e6174757265206578706972656445524332303a3a64656c656761746542795369673a20696e76616c6964206e6f6e6365a2646970667358221220960e61a55de850691879176df43ef063c0a04fe722857ad5351c9a0fd8897b6764736f6c634300060c0033

Deployed Bytecode Sourcemap

14603:15706:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30158:146;;;;;;;;;;;;;;;;-1:-1:-1;30158:146:0;;:::i;:::-;;14680:41;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19099:422;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;19099:422:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;17337:41;;;:::i;:::-;;;;-1:-1:-1;;;;;17337:41:0;;;;;;;;;;;;;;14984:42;;;:::i;:::-;;;;;;;;;;;;;;;;15996:122;;;:::i;22196:678::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;22196:678:0;;;;;;;;;;;;;;;;;:::i;16419:137::-;;;:::i;14885:35::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;17385:28;;;:::i;15443:45::-;;;;;;;;;;;;;;;;-1:-1:-1;15443:45:0;-1:-1:-1;;;;;15443:45:0;;:::i;23022:102::-;;;;;;;;;;;;;;;;-1:-1:-1;23022:102:0;-1:-1:-1;;;;;23022:102:0;;:::i;15874:49::-;;;;;;;;;;;;;;;;-1:-1:-1;15874:49:0;-1:-1:-1;;;;;15874:49:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;21274:108;;;;;;;;;;;;;;;;-1:-1:-1;21274:108:0;-1:-1:-1;;;;;21274:108:0;;:::i;30016:134::-;;;:::i;15087:41::-;;;;;;;;;;;;;;;;-1:-1:-1;15087:41:0;-1:-1:-1;;;;;15087:41:0;;:::i;25205:1220::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;25205:1220:0;;;;;;;;:::i;16637:39::-;;;;;;;;;;;;;;;;-1:-1:-1;16637:39:0;-1:-1:-1;;;;;16637:39:0;;:::i;14782:40::-;;;:::i;21646:240::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;21646:240:0;;;;;;;;:::i;17422:20::-;;;:::i;24551:223::-;;;;;;;;;;;;;;;;-1:-1:-1;24551:223:0;-1:-1:-1;;;;;24551:223:0;;:::i;23558:792::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;23558:792:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;20011:1060::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;20011:1060:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;18485:136::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;18485:136:0;;;;;;;;;;:::i;16212:117::-;;;:::i;15735:70::-;;;;;;;;;;;;;;;;-1:-1:-1;15735:70:0;;-1:-1:-1;;;;;15735:70:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;15036:41;;;:::i;30158:146::-;30229:5;;-1:-1:-1;;;;;30229:5:0;30236:10;30229:17;30221:46;;;;;-1:-1:-1;;;30221:46:0;;;;;;;;;;;;-1:-1:-1;;;30221:46:0;;;;;;;;;;;;;;;30279:9;:17;30158:146::o;14680:41::-;;;;;;;;;;;;;;-1:-1:-1;;;14680:41:0;;;;:::o;19099:422::-;19167:4;19184:14;-1:-1:-1;;19213:9:0;:21;19209:175;;;-1:-1:-1;;;19209:175:0;;;19313:59;19320:9;19313:59;;;;;;;;;;;;;;;;;:6;:59::i;:::-;19304:68;;19209:175;19407:10;19396:22;;;;:10;:22;;;;;;;;-1:-1:-1;;;;;19396:31:0;;;;;;;;;;;;:40;;;19454:37;;;;;;;19396:31;;19407:10;19454:37;;;;;;;;;;;19509:4;19502:11;;;19099:422;;;;;:::o;17337:41::-;;;-1:-1:-1;;;;;17337:41:0;;:::o;14984:42::-;;;;:::o;15996:122::-;16038:80;15996:122;:::o;22196:678::-;-1:-1:-1;;;;;22361:15:0;;22278:4;22361:15;;;:10;:15;;;;;;;;22313:10;22361:24;;;;;;;;;;22413:59;;;;;;;;;;;;22313:10;;22361:24;;22278:4;;22413:59;;22420:9;;22413:59;;;;;;;:6;:59::i;:::-;22396:76;;22500:3;-1:-1:-1;;;;;22489:14:0;:7;-1:-1:-1;;;;;22489:14:0;;;:49;;;;;-1:-1:-1;;22507:16:0;:31;;22489:49;22485:314;;;22555:20;22578:97;22584:16;22602:6;22578:97;;;;;;;;;;;;;;;;;:5;:97::i;:::-;-1:-1:-1;;;;;22690:15:0;;;;;;;:10;:15;;;;;;;;:24;;;;;;;;;;;;;:39;;;22751:36;;;;;;;22555:120;;-1:-1:-1;22690:24:0;;:15;;22751:36;;;;;;;;;22485:314;;22811:33;22827:3;22832;22837:6;22811:15;:33::i;:::-;-1:-1:-1;22862:4:0;;22196:678;-1:-1:-1;;;;;;22196:678:0:o;16419:137::-;16461:95;16419:137;:::o;14885:35::-;14918:2;14885:35;:::o;17385:28::-;;;-1:-1:-1;;;;;17385:28:0;;:::o;15443:45::-;;;;;;;;;;;;-1:-1:-1;;;;;15443:45:0;;:::o;23022:102::-;23084:32;23094:10;23106:9;23084;:32::i;:::-;23022:102;:::o;15874:49::-;;;;;;;;;;;;;;;:::o;21274:108::-;-1:-1:-1;;;;;21357:17:0;21333:4;21357:17;;;:8;:17;;;;;;;21274:108::o;30016:134::-;30075:5;;-1:-1:-1;;;;;30075:5:0;30082:10;30075:17;30067:46;;;;;-1:-1:-1;;;30067:46:0;;;;;;;;;;;;-1:-1:-1;;;30067:46:0;;;;;;;;;;;;;;;30125:5;:16;;-1:-1:-1;;;;;;30125:16:0;;;30016:134::o;15087:41::-;;;;;;;;;;;;;;;:::o;25205:1220::-;25284:7;25326:12;25312:11;:26;25304:79;;;;-1:-1:-1;;;25304:79:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25418:23:0;;25396:19;25418:23;;;:14;:23;;;;;;;;25456:17;25452:58;;25497:1;25490:8;;;;;25452:58;-1:-1:-1;;;;;25570:20:0;;;;;;:11;:20;;;;;;;;:38;-1:-1:-1;;25591:16:0;;25570:38;;;;;;;;;:48;;:63;-1:-1:-1;25566:147:0;;-1:-1:-1;;;;;25657:20:0;;;;;;:11;:20;;;;;;;;-1:-1:-1;;25678:16:0;;;;25657:38;;;;;;;;25693:1;25657:44;;;-1:-1:-1;25650:51:0;;25566:147;-1:-1:-1;;;;;25774:20:0;;;;;;:11;:20;;;;;;;;:23;;;;;;;;:33;:23;:33;:47;-1:-1:-1;25770:88:0;;;25845:1;25838:8;;;;;25770:88;25870:12;-1:-1:-1;;25912:16:0;;25939:428;25954:5;25946:13;;:5;:13;;;25939:428;;;26018:1;26001:13;;;26000:19;;;25992:27;;26061:20;;:::i;:::-;-1:-1:-1;;;;;;26084:20:0;;;;;;:11;:20;;;;;;;;:28;;;;;;;;;;;;;26061:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26131:27;;26127:229;;;26186:8;;;;-1:-1:-1;26179:15:0;;-1:-1:-1;;;;26179:15:0;26127:229;26220:12;;:26;;;-1:-1:-1;26216:140:0;;;26275:6;26267:14;;26216:140;;;26339:1;26330:6;:10;26322:18;;26216:140;25939:428;;;;;-1:-1:-1;;;;;;26384:20:0;;;;;;:11;:20;;;;;;;;:27;;;;;;;;;;:33;;;;-1:-1:-1;;25205:1220:0;;;;:::o;16637:39::-;;;;;;;;;;;;;:::o;14782:40::-;;;;;;;;;;;;;;-1:-1:-1;;;14782:40:0;;;;:::o;21646:240::-;21711:4;21728:14;21745:60;21752:9;21745:60;;;;;;;;;;;;;;;;;:6;:60::i;:::-;21728:77;;21816:40;21832:10;21844:3;21849:6;21816:15;:40::i;:::-;-1:-1:-1;21874:4:0;;21646:240;-1:-1:-1;;;21646:240:0:o;17422:20::-;;;-1:-1:-1;;;;;17422:20:0;;:::o;24551:223::-;-1:-1:-1;;;;;24658:23:0;;24616:7;24658:23;;;:14;:23;;;;;;;;24699:16;:67;;24765:1;24699:67;;;-1:-1:-1;;;;;24718:20:0;;;;;;:11;:20;;;;;;;;:38;-1:-1:-1;;24739:16:0;;24718:38;;;;;;;;24754:1;24718:44;;24699:67;24692:74;24551:223;-1:-1:-1;;;24551:223:0:o;23558:792::-;23754:4;;;;;;;;;;;;-1:-1:-1;;;23754:4:0;;;;;23674:23;16038:80;23738:22;23762:12;:10;:12::i;:::-;23710:80;;;;;;;;;;;;;;;;;;;;;;;;;23784:4;23710:80;;;;;;;;;;;;;;;;;;;;;;;23700:91;;;;;;16258:71;23833:57;;;;-1:-1:-1;;;;;23833:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23823:68;;;;;;-1:-1:-1;;;23929:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23919:68;;;;;;;;;-1:-1:-1;24018:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23700:91;;-1:-1:-1;23823:68:0;;23919;;-1:-1:-1;;24018:26:0;;;;;;;-1:-1:-1;;24018:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;24018:26:0;;-1:-1:-1;;24018:26:0;;;-1:-1:-1;;;;;;;24063:23:0;;24055:75;;;;-1:-1:-1;;;24055:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24158:17:0;;;;;;:6;:17;;;;;:19;;;;;;;;24149:28;;24141:76;;;;-1:-1:-1;;;24141:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24243:6;24236:3;:13;;24228:65;;;;-1:-1:-1;;;24228:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24311:31;24321:9;24332;24311;:31::i;:::-;24304:38;;;;23558:792;;;;;;;:::o;20011:1060::-;20141:14;-1:-1:-1;;20170:9:0;:21;20166:174;;;-1:-1:-1;;;20166:174:0;;;20270:58;20277:9;20270:58;;;;;;;;;;;;;;;;;:6;:58::i;:::-;20261:67;;20166:174;20432:4;;;;;;;;;;;;-1:-1:-1;;;20432:4:0;;;;;20352:23;16038:80;20416:22;20440:12;:10;:12::i;:::-;20388:80;;;;;;;;;;;;;;;;;;;;;;;;;20462:4;20388:80;;;;;;;;;;;;;;;;;;;;;;;20378:91;;;;;;-1:-1:-1;;;;;20566:13:0;;;-1:-1:-1;20566:13:0;;;:6;:13;;;;;:15;;;;;;;;;16461:95;20511:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20501:92;;;;;;-1:-1:-1;;;20631:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20621:68;;;;;;;;;20720:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20378:91;;-1:-1:-1;20501:92:0;20621:68;;-1:-1:-1;;20566:15:0;;20720:26;;;;;20388:80;-1:-1:-1;;20720:26:0;;;;;;;;;;;20566:15;20720:26;;;;;;;;;;;;;;;-1:-1:-1;;20720:26:0;;-1:-1:-1;;20720:26:0;;;-1:-1:-1;;;;;;;20765:23:0;;20757:68;;;;;-1:-1:-1;;;20757:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20857:5;-1:-1:-1;;;;;20844:18:0;:9;-1:-1:-1;;;;;20844:18:0;;20836:58;;;;;-1:-1:-1;;;20836:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;20920:8;20913:3;:15;;20905:60;;;;;-1:-1:-1;;;20905:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21007:6;20978:10;:17;20989:5;-1:-1:-1;;;;;20978:17:0;-1:-1:-1;;;;;20978:17:0;;;;;;;;;;;;:26;20996:7;-1:-1:-1;;;;;20978:26:0;-1:-1:-1;;;;;20978:26:0;;;;;;;;;;;;:35;;;;21047:7;-1:-1:-1;;;;;21031:32:0;21040:5;-1:-1:-1;;;;;21031:32:0;;21056:6;21031:32;;;;;;;;;;;;;;;;;;20011:1060;;;;;;;;;;;;:::o;18485:136::-;-1:-1:-1;;;;;18585:19:0;;;18561:4;18585:19;;;:10;:19;;;;;;;;:28;;;;;;;;;;;;;18485:136::o;16212:117::-;16258:71;16212:117;:::o;15735:70::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;15036:41::-;;;;:::o;29306:164::-;29381:7;29421:12;-1:-1:-1;;;29409:10:0;;29401:33;;;;-1:-1:-1;;;29401:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29460:1:0;;29306:164;-1:-1:-1;;29306:164:0:o;29678:168::-;29766:7;29802:12;29794:6;;;;29786:29;;;;-1:-1:-1;;;29786:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;29833:5:0;;;29678:168::o;26817:718::-;-1:-1:-1;;;;;26912:17:0;;26904:91;;;;-1:-1:-1;;;26904:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27014:17:0;;27006:89;;;;-1:-1:-1;;;27006:89:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27107:14:0;;;;;;:9;:14;;;;;;;;27103:94;;27167:9;;27132:31;27138:8;:13;27147:3;-1:-1:-1;;;;;27138:13:0;-1:-1:-1;;;;;27138:13:0;;;;;;;;;;;;;27153:6;27132:31;;;;;;;;;;;;:5;:31::i;:::-;:44;;27124:71;;;;;-1:-1:-1;;;27124:71:0;;;;;;;;;;;;-1:-1:-1;;;27124:71:0;;;;;;;;;;;;;;;27223:87;27229:8;:13;27238:3;-1:-1:-1;;;;;27229:13:0;-1:-1:-1;;;;;27229:13:0;;;;;;;;;;;;;27244:6;27223:87;;;;;;;;;;;;;;;;;:5;:87::i;:::-;-1:-1:-1;;;;;27207:13:0;;;;;;;:8;:13;;;;;;;;:103;;;;27343:13;;;;;;;;;27337:81;;;;;;;;;;;;;;27343:13;;27358:6;;27337:81;;;;;;;:5;:81::i;:::-;-1:-1:-1;;;;;27321:13:0;;;;;;;:8;:13;;;;;;;;;:97;;;;27434:26;;;;;;;27321:13;;27434:26;;;;;;;;;;;;;-1:-1:-1;;;;;27488:14:0;;;;;;;:9;:14;;;;;;;27504;;;;;;;;27473:54;;27488:14;;;;27504;27520:6;27473:14;:54::i;:::-;26817:718;;;:::o;26433:376::-;-1:-1:-1;;;;;26536:20:0;;;26510:23;26536:20;;;:9;:20;;;;;;;;;;26594:8;:19;;;;;;26624:20;;;;:32;;;-1:-1:-1;;;;;;26624:32:0;;;;;;;26674:54;;26536:20;;;;;26594:19;;26624:32;;26536:20;;;26674:54;;26510:23;26674:54;26741:60;26756:15;26773:9;26784:16;26741:14;:60::i;:::-;26433:376;;;;:::o;29854:153::-;29964:9;29854:153;:::o;29478:192::-;29566:7;29598:5;;;29630:12;29622:6;;;;29614:29;;;;-1:-1:-1;;;29614:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29661:1:0;29478:192;-1:-1:-1;;;;29478:192:0:o;27543:946::-;27649:6;-1:-1:-1;;;;;27639:16:0;:6;-1:-1:-1;;;;;27639:16:0;;;:30;;;;;27668:1;27659:6;:10;27639:30;27635:847;;;-1:-1:-1;;;;;27690:20:0;;;27686:385;;-1:-1:-1;;;;;27750:22:0;;27731:16;27750:22;;;:14;:22;;;;;;;;;27811:13;:60;;27870:1;27811:60;;;-1:-1:-1;;;;;27827:19:0;;;;;;:11;:19;;;;;;;;:34;-1:-1:-1;;27847:13:0;;27827:34;;;;;;;;27859:1;27827:40;;27811:60;27791:80;;27890:17;27910:69;27916:9;27927:6;27910:69;;;;;;;;;;;;;;;;;:5;:69::i;:::-;27890:89;;27998:57;28015:6;28023:9;28034;28045;27998:16;:57::i;:::-;27686:385;;;;-1:-1:-1;;;;;28091:20:0;;;28087:384;;-1:-1:-1;;;;;28151:22:0;;28132:16;28151:22;;;:14;:22;;;;;;;;;28212:13;:60;;28271:1;28212:60;;;-1:-1:-1;;;;;28228:19:0;;;;;;:11;:19;;;;;;;;:34;-1:-1:-1;;28248:13:0;;28228:34;;;;;;;;28260:1;28228:40;;28212:60;28192:80;;28291:17;28311:68;28317:9;28328:6;28311:68;;;;;;;;;;;;;;;;;:5;:68::i;:::-;28291:88;;28398:57;28415:6;28423:9;28434;28445;28497:632;28617:18;28638:77;28645:12;28638:77;;;;;;;;;;;;;;;;;:6;:77::i;:::-;28617:98;;28745:1;28730:12;:16;;;:85;;;;-1:-1:-1;;;;;;28750:22:0;;;;;;:11;:22;;;;;;;;:65;-1:-1:-1;;28773:16:0;;28750:40;;;;;;;;;:50;:65;;;:50;;:65;28730:85;28726:329;;;-1:-1:-1;;;;;28830:22:0;;;;;;:11;:22;;;;;;;;:40;-1:-1:-1;;28853:16:0;;28830:40;;;;;;;;28868:1;28830:46;:57;;;28726:329;;;28955:33;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28916:22:0;;-1:-1:-1;28916:22:0;;;:11;:22;;;;;:36;;;;;;;;;;:72;;;;;;;-1:-1:-1;;28916:72:0;;;;;;;;;;;;;29001:25;;;:14;:25;;;;;;:44;;29029:16;;;29001:44;;;;;;;;;;28726:329;29070:51;;;;;;;;;;;;;;-1:-1:-1;;;;;29070:51:0;;;;;;;;;;;28497:632;;;;;:::o;29137:161::-;29212:6;29250:12;29243:5;29239:9;;29231:32;;;;-1:-1:-1;;;29231:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;:::o

Swarm Source

ipfs://960e61a55de850691879176df43ef063c0a04fe722857ad5351c9a0fd8897b67

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.