ETH Price: $2,901.38 (+2.82%)
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Update114640402020-12-16 12:09:321422 days ago1608120572IN
0x6CDb28E5...af3b7fB71
0 ETH0.00490650
Init114640372020-12-16 12:08:531422 days ago1608120533IN
0x6CDb28E5...af3b7fB71
0 ETH0.0056083550
0x60e06040114640322020-12-16 12:07:301422 days ago1608120450IN
 Create: UniswapOracle
0 ETH0.0539943660

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
UniswapOracle

Compiler Version
v0.6.6+commit.6c089d02

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-12-16
*/

// SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity 0.6.6;

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;
}


// computes square roots using the babylonian method
// https://en.wikipedia.org/wiki/Methods_of_computing_square_roots#Babylonian_method
library Babylonian {
    function sqrt(uint y) internal pure returns (uint z) {
        if (y > 3) {
            z = y;
            uint x = y / 2 + 1;
            while (x < z) {
                z = x;
                x = (y / x + x) / 2;
            }
        } else if (y != 0) {
            z = 1;
        }
        // else z = 0
    }
}

// a library for handling binary fixed point numbers (https://en.wikipedia.org/wiki/Q_(number_format))
library FixedPoint {
    // range: [0, 2**112 - 1]
    // resolution: 1 / 2**112
    struct uq112x112 {
        uint224 _x;
    }

    // range: [0, 2**144 - 1]
    // resolution: 1 / 2**112
    struct uq144x112 {
        uint _x;
    }

    uint8 private constant RESOLUTION = 112;
    uint private constant Q112 = uint(1) << RESOLUTION;
    uint private constant Q224 = Q112 << RESOLUTION;

    // encode a uint112 as a UQ112x112
    function encode(uint112 x) internal pure returns (uq112x112 memory) {
        return uq112x112(uint224(x) << RESOLUTION);
    }

    // encodes a uint144 as a UQ144x112
    function encode144(uint144 x) internal pure returns (uq144x112 memory) {
        return uq144x112(uint256(x) << RESOLUTION);
    }

    // divide a UQ112x112 by a uint112, returning a UQ112x112
    function div(uq112x112 memory self, uint112 x) internal pure returns (uq112x112 memory) {
        require(x != 0, 'FixedPoint: DIV_BY_ZERO');
        return uq112x112(self._x / uint224(x));
    }

    // multiply a UQ112x112 by a uint, returning a UQ144x112
    // reverts on overflow
    function mul(uq112x112 memory self, uint y) internal pure returns (uq144x112 memory) {
        uint z;
        require(y == 0 || (z = uint(self._x) * y) / y == uint(self._x), "FixedPoint: MULTIPLICATION_OVERFLOW");
        return uq144x112(z);
    }

    // returns a UQ112x112 which represents the ratio of the numerator to the denominator
    // equivalent to encode(numerator).div(denominator)
    function fraction(uint112 numerator, uint112 denominator) internal pure returns (uq112x112 memory) {
        require(denominator > 0, "FixedPoint: DIV_BY_ZERO");
        return uq112x112((uint224(numerator) << RESOLUTION) / denominator);
    }

    // decode a UQ112x112 into a uint112 by truncating after the radix point
    function decode(uq112x112 memory self) internal pure returns (uint112) {
        return uint112(self._x >> RESOLUTION);
    }

    // decode a UQ144x112 into a uint144 by truncating after the radix point
    function decode144(uq144x112 memory self) internal pure returns (uint144) {
        return uint144(self._x >> RESOLUTION);
    }

    // take the reciprocal of a UQ112x112
    function reciprocal(uq112x112 memory self) internal pure returns (uq112x112 memory) {
        require(self._x != 0, 'FixedPoint: ZERO_RECIPROCAL');
        return uq112x112(uint224(Q224 / self._x));
    }

    // square root of a UQ112x112
    function sqrt(uq112x112 memory self) internal pure returns (uq112x112 memory) {
        return uq112x112(uint224(Babylonian.sqrt(uint256(self._x)) << 56));
    }
}

// library with helper methods for oracles that are concerned with computing average prices
library UniswapV2OracleLibrary {
    using FixedPoint for *;

    // helper function that returns the current block timestamp within the range of uint32, i.e. [0, 2**32 - 1]
    function currentBlockTimestamp() internal view returns (uint32) {
        return uint32(block.timestamp % 2 ** 32);
    }

    // produces the cumulative price using counterfactuals to save gas and avoid a call to sync.
    function currentCumulativePrices(
        address pair
    ) internal view returns (uint price0Cumulative, uint price1Cumulative, uint32 blockTimestamp) {
        blockTimestamp = currentBlockTimestamp();
        price0Cumulative = IUniswapV2Pair(pair).price0CumulativeLast();
        price1Cumulative = IUniswapV2Pair(pair).price1CumulativeLast();

        // if time has elapsed since the last update on the pair, mock the accumulated price values
        (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast) = IUniswapV2Pair(pair).getReserves();
        if (blockTimestampLast != blockTimestamp) {
            // subtraction overflow is desired
            uint32 timeElapsed = blockTimestamp - blockTimestampLast;
            // addition overflow is desired
            // counterfactual
            price0Cumulative += uint(FixedPoint.fraction(reserve1, reserve0)._x) * timeElapsed;
            // counterfactual
            price1Cumulative += uint(FixedPoint.fraction(reserve0, reserve1)._x) * timeElapsed;
        }
    }
}
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 Mint(address indexed sender, uint amount0, uint amount1);
    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 mint(address to) external returns (uint liquidity);
    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;
}

// ----------------------------------------------------------------------------
// Safe maths
// ----------------------------------------------------------------------------
library SafeMath {
    /**
     * @dev Multiplies two unsigned integers, reverts on 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-solidity/pull/522
        if (a == 0) {
            return 0;
        }

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

        return c;
    }

    /**
     * @dev Integer division of two unsigned integers truncating the quotient, reverts on division by zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Subtracts two unsigned integers, reverts on overflow (i.e. if subtrahend is greater than minuend).
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b <= a);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Adds two unsigned integers, reverts on overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a);

        return c;
    }

    /**
     * @dev Divides two unsigned integers and returns the remainder (unsigned integer modulo),
     * reverts when dividing by zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b != 0);
        return a % b;
    }
}

library UniswapV2Library {
    using SafeMath for uint;

    // returns sorted token addresses, used to handle return values from pairs sorted in this order
    function sortTokens(address tokenA, address tokenB) internal pure returns (address token0, address token1) {
        require(tokenA != tokenB, 'UniswapV2Library: IDENTICAL_ADDRESSES');
        (token0, token1) = tokenA < tokenB ? (tokenA, tokenB) : (tokenB, tokenA);
        require(token0 != address(0), 'UniswapV2Library: ZERO_ADDRESS');
    }

    // calculates the CREATE2 address for a pair without making any external calls
    function pairFor(address factory, address tokenA, address tokenB) internal pure returns (address pair) {
        (address token0, address token1) = sortTokens(tokenA, tokenB);
        pair = address(uint(keccak256(abi.encodePacked(
                hex'ff',
                factory,
                keccak256(abi.encodePacked(token0, token1)),
                hex'96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f' // init code hash
            ))));
    }

    // fetches and sorts the reserves for a pair
    function getReserves(address factory, address tokenA, address tokenB) internal view returns (uint reserveA, uint reserveB) {
        (address token0,) = sortTokens(tokenA, tokenB);
        (uint reserve0, uint reserve1,) = IUniswapV2Pair(pairFor(factory, tokenA, tokenB)).getReserves();
        (reserveA, reserveB) = tokenA == token0 ? (reserve0, reserve1) : (reserve1, reserve0);
    }

    // given some amount of an asset and pair reserves, returns an equivalent amount of the other asset
    function quote(uint amountA, uint reserveA, uint reserveB) internal pure returns (uint amountB) {
        require(amountA > 0, 'UniswapV2Library: INSUFFICIENT_AMOUNT');
        require(reserveA > 0 && reserveB > 0, 'UniswapV2Library: INSUFFICIENT_LIQUIDITY');
        amountB = amountA.mul(reserveB) / reserveA;
    }

    // given an input amount of an asset and pair reserves, returns the maximum output amount of the other asset
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) internal pure returns (uint amountOut) {
        require(amountIn > 0, 'UniswapV2Library: INSUFFICIENT_INPUT_AMOUNT');
        require(reserveIn > 0 && reserveOut > 0, 'UniswapV2Library: INSUFFICIENT_LIQUIDITY');
        uint amountInWithFee = amountIn.mul(997);
        uint numerator = amountInWithFee.mul(reserveOut);
        uint denominator = reserveIn.mul(1000).add(amountInWithFee);
        amountOut = numerator / denominator;
    }

    // given an output amount of an asset and pair reserves, returns a required input amount of the other asset
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) internal pure returns (uint amountIn) {
        require(amountOut > 0, 'UniswapV2Library: INSUFFICIENT_OUTPUT_AMOUNT');
        require(reserveIn > 0 && reserveOut > 0, 'UniswapV2Library: INSUFFICIENT_LIQUIDITY');
        uint numerator = reserveIn.mul(amountOut).mul(1000);
        uint denominator = reserveOut.sub(amountOut).mul(997);
        amountIn = (numerator / denominator).add(1);
    }

    // performs chained getAmountOut calculations on any number of pairs
    function getAmountsOut(address factory, uint amountIn, address[] memory path) internal view returns (uint[] memory amounts) {
        require(path.length >= 2, 'UniswapV2Library: INVALID_PATH');
        amounts = new uint[](path.length);
        amounts[0] = amountIn;
        for (uint i; i < path.length - 1; i++) {
            (uint reserveIn, uint reserveOut) = getReserves(factory, path[i], path[i + 1]);
            amounts[i + 1] = getAmountOut(amounts[i], reserveIn, reserveOut);
        }
    }

    // performs chained getAmountIn calculations on any number of pairs
    function getAmountsIn(address factory, uint amountOut, address[] memory path) internal view returns (uint[] memory amounts) {
        require(path.length >= 2, 'UniswapV2Library: INVALID_PATH');
        amounts = new uint[](path.length);
        amounts[amounts.length - 1] = amountOut;
        for (uint i = path.length - 1; i > 0; i--) {
            (uint reserveIn, uint reserveOut) = getReserves(factory, path[i - 1], path[i]);
            amounts[i - 1] = getAmountIn(amounts[i], reserveIn, reserveOut);
        }
    }
}
//custom interface for custom setting
interface oracleI {
    function returnFeesPerBlock() external view returns (uint256);
    function returnAllValues() external view returns(uint256, uint256);
}
// fixed window oracle that recomputes the average price for the entire period once every period
// note that the price average is only guaranteed to be over at least 1 period, but may be over a longer period
contract UniswapOracle {
  using FixedPoint for *;

  uint256 public PERIOD;

  IUniswapV2Pair public immutable pair;
  address public immutable token0;
  address public immutable token1;

  uint256 public price0CumulativeLast;
  uint256 public price1CumulativeLast;
  uint32 public blockTimestampLast;
  FixedPoint.uq112x112 public price0Average;
  FixedPoint.uq112x112 public price1Average;
  bool public initialized;
  bool public updated;

  constructor(
   
  ) public {
      address factory = 0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f;
    address tokenA = 0x4c16b17165abF7bE7641BBdE8C3279964B2f0539;
    address tokenB = 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48;
    uint256 period = 1;
      //0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f,0x4c16b17165abF7bE7641BBdE8C3279964B2f0539,0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48,1
    IUniswapV2Pair _pair = IUniswapV2Pair(
      UniswapV2Library.pairFor(factory,tokenA , tokenB)
    );
    pair = _pair;
    token0 = _pair.token0();
    token1 = _pair.token1();
    PERIOD = period;
  }

  function init() external {
    require(!initialized, "UniswapOracle: INITIALIZED");
    initialized = true;
    price0CumulativeLast = pair.price0CumulativeLast(); // fetch the current accumulated price value (1 / 0)
    price1CumulativeLast = pair.price1CumulativeLast(); // fetch the current accumulated price value (0 / 1)
    uint112 reserve0;
    uint112 reserve1;
    (reserve0, reserve1, blockTimestampLast) = pair.getReserves();
    require(reserve0 != 0 && reserve1 != 0, "UniswapOracle: NO_RESERVES"); // ensure that there's liquidity in the pair
  }

  function update() external returns (bool success) {
    require(initialized, "UniswapOracle: NOT_INITIALIZED");
    (
      uint256 price0Cumulative,
      uint256 price1Cumulative,
      uint32 blockTimestamp
    ) = UniswapV2OracleLibrary.currentCumulativePrices(address(pair));

    uint32 timeElapsed = blockTimestamp - blockTimestampLast; // overflow is desired
    // ensure that at least one full period has passed since the last update
    if (timeElapsed < PERIOD) {
      return false;
    }

    // overflow is desired, casting never truncates
    // cumulative price is in (uq112x112 price * seconds) units so we simply wrap it after division by time elapsed
    price0Average = FixedPoint.uq112x112(
      uint224((price0Cumulative - price0CumulativeLast) / timeElapsed)
    );
    price1Average = FixedPoint.uq112x112(
      uint224((price1Cumulative - price1CumulativeLast) / timeElapsed)
    );

    price0CumulativeLast = price0Cumulative;
    price1CumulativeLast = price1Cumulative;
    blockTimestampLast = blockTimestamp;
    updated = true;

    return true;
  }

  // note this will always return 0 before update has been called successfully for the first time.
  function consult(address token, uint256 amountIn)
    external
    view
    returns (uint256 amountOut)
  {
    if (token == token0) {
      amountOut = price0Average.mul(amountIn).decode144();
    } else {
      require(token == token1, "UniswapOracle: INVALID_TOKEN");
      amountOut = price1Average.mul(amountIn).decode144()*1000000000000;
    }
  }

  // used in frontend for checking the latest price
  function updateAndConsult(address token, uint256 amountIn)
    external
    returns (uint256 amountOut)
  {
    this.update();
    return this.consult(token, amountIn);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"PERIOD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"blockTimestampLast","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amountIn","type":"uint256"}],"name":"consult","outputs":[{"internalType":"uint256","name":"amountOut","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"init","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initialized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pair","outputs":[{"internalType":"contract IUniswapV2Pair","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price0Average","outputs":[{"internalType":"uint224","name":"_x","type":"uint224"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price0CumulativeLast","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price1Average","outputs":[{"internalType":"uint224","name":"_x","type":"uint224"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price1CumulativeLast","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"token0","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"token1","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"update","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amountIn","type":"uint256"}],"name":"updateAndConsult","outputs":[{"internalType":"uint256","name":"amountOut","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"updated","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

60e06040523480156200001157600080fd5b50735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f734c16b17165abf7be7641bbde8c3279964b2f053973a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48600160006200006e85858562000192602090811b62000c8917901c565b9050806001600160a01b03166080816001600160a01b031660601b81525050806001600160a01b0316630dfe16816040518163ffffffff1660e01b815260040160206040518083038186803b158015620000c757600080fd5b505afa158015620000dc573d6000803e3d6000fd5b505050506040513d6020811015620000f357600080fd5b505160601b6001600160601b03191660a0526040805163d21220a760e01b815290516001600160a01b0383169163d21220a7916004808301926020929190829003018186803b1580156200014657600080fd5b505afa1580156200015b573d6000803e3d6000fd5b505050506040513d60208110156200017257600080fd5b505160601b6001600160601b03191660c052506000555062000352915050565b60008080620001ab85856001600160e01b036200026f16565b604080516001600160601b0319606094851b811660208084019190915293851b81166034830152825160288184030181526048830184528051908501207fff0000000000000000000000000000000000000000000000000000000000000060688401529a90941b9093166069840152607d8301989098527f96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f609d808401919091528851808403909101815260bd909201909752805196019590952095945050505050565b600080826001600160a01b0316846001600160a01b03161415620002c55760405162461bcd60e51b81526004018080602001828103825260258152602001806200124b6025913960400191505060405180910390fd5b826001600160a01b0316846001600160a01b031610620002e7578284620002ea565b83835b90925090506001600160a01b0382166200034b576040805162461bcd60e51b815260206004820152601e60248201527f556e697377617056324c6962726172793a205a45524f5f414444524553530000604482015290519081900360640190fd5b9250929050565b60805160601c60a05160601c60c05160601c610ea5620003a6600039806103cb5280610682525080610235528061034f525080610521528061064c528061072352806107b252806108465250610ea56000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c80637b2aab0311610097578063b4d1d79511610066578063b4d1d795146101f8578063c5700a0214610200578063d21220a714610221578063e1c7392a14610229576100f5565b80637b2aab03146101d8578063a2e62045146101e0578063a6bb4539146101e8578063a8aa1b31146101f0576100f5565b80633ddac953116100d35780633ddac953146101785780635909c0d5146101a45780635a3d5493146101ac5780635e6aaf2c146101b4576100f5565b80630dfe1681146100fa578063158ef93e1461011e5780632d3a9ee71461013a575b600080fd5b610102610233565b604080516001600160a01b039092168252519081900360200190f35b610126610257565b604080519115158252519081900360200190f35b6101666004803603604081101561015057600080fd5b506001600160a01b038135169060200135610260565b60408051918252519081900360200190f35b6101666004803603604081101561018e57600080fd5b506001600160a01b03813516906020013561034b565b610166610494565b61016661049a565b6101bc6104a0565b604080516001600160e01b039092168252519081900360200190f35b6101266104af565b6101266104bd565b6101bc61063b565b61010261064a565b61016661066e565b610208610674565b6040805163ffffffff9092168252519081900360200190f35b610102610680565b6102316106a4565b005b7f000000000000000000000000000000000000000000000000000000000000000081565b60065460ff1681565b6000306001600160a01b031663a2e620456040518163ffffffff1660e01b8152600401602060405180830381600087803b15801561029d57600080fd5b505af11580156102b1573d6000803e3d6000fd5b505050506040513d60208110156102c757600080fd5b505060408051633ddac95360e01b81526001600160a01b03851660048201526024810184905290513091633ddac953916044808301926020929190829003018186803b15801561031657600080fd5b505afa15801561032a573d6000803e3d6000fd5b505050506040513d602081101561034057600080fd5b505190505b92915050565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031614156103c95760408051602081019091526004546001600160e01b031681526103b9906103b4908463ffffffff61095616565b6109d4565b6001600160901b03169050610345565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b03161461044f576040805162461bcd60e51b815260206004820152601c60248201527f556e69737761704f7261636c653a20494e56414c49445f544f4b454e00000000604482015290519081900360640190fd5b60408051602081019091526005546001600160e01b0316815261047c906103b4908463ffffffff61095616565b64e8d4a51000026001600160901b0316905092915050565b60015481565b60025481565b6005546001600160e01b031681565b600654610100900460ff1681565b60065460009060ff16610517576040805162461bcd60e51b815260206004820152601e60248201527f556e69737761704f7261636c653a204e4f545f494e495449414c495a45440000604482015290519081900360640190fd5b60008060006105457f00000000000000000000000000000000000000000000000000000000000000006109db565b600354600054939650919450925063ffffffff9081168303919082161015610574576000945050505050610638565b60405180602001604052808263ffffffff1660015487038161059257fe5b046001600160e01b039081169091529051600480546001600160e01b031916919092161790556040805160208101909152600254819063ffffffff8416908603816105d957fe5b046001600160e01b039081169091529051600580546001600160e01b031916919092161790555060019283556002919091556003805463ffffffff191663ffffffff9092169190911790556006805461010061ff001990911617905590505b90565b6004546001600160e01b031681565b7f000000000000000000000000000000000000000000000000000000000000000081565b60005481565b60035463ffffffff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b60065460ff16156106fc576040805162461bcd60e51b815260206004820152601a60248201527f556e69737761704f7261636c653a20494e495449414c495a4544000000000000604482015290519081900360640190fd5b6006805460ff1916600117905560408051635909c0d560e01b815290516001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001691635909c0d5916004808301926020929190829003018186803b15801561076957600080fd5b505afa15801561077d573d6000803e3d6000fd5b505050506040513d602081101561079357600080fd5b505160015560408051635a3d549360e01b815290516001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001691635a3d5493916004808301926020929190829003018186803b1580156107f857600080fd5b505afa15801561080c573d6000803e3d6000fd5b505050506040513d602081101561082257600080fd5b505160025560408051630240bc6b60e21b8152905160009182916001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001691630902f1ac916004808301926060929190829003018186803b15801561088c57600080fd5b505afa1580156108a0573d6000803e3d6000fd5b505050506040513d60608110156108b657600080fd5b50805160208201516040909201516003805463ffffffff191663ffffffff909216919091179055925090506001600160701b0382161580159061090157506001600160701b03811615155b610952576040805162461bcd60e51b815260206004820152601a60248201527f556e69737761704f7261636c653a204e4f5f5245534552564553000000000000604482015290519081900360640190fd5b5050565b61095e610c64565b600082158061098457505082516001600160e01b03168281029083828161098157fe5b04145b6109bf5760405162461bcd60e51b8152600401808060200182810382526023815260200180610e4d6023913960400191505060405180910390fd5b60408051602081019091529081529392505050565b5160701c90565b60008060006109e8610baa565b9050836001600160a01b0316635909c0d56040518163ffffffff1660e01b815260040160206040518083038186803b158015610a2357600080fd5b505afa158015610a37573d6000803e3d6000fd5b505050506040513d6020811015610a4d57600080fd5b505160408051635a3d549360e01b815290519194506001600160a01b03861691635a3d549391600480820192602092909190829003018186803b158015610a9357600080fd5b505afa158015610aa7573d6000803e3d6000fd5b505050506040513d6020811015610abd57600080fd5b505160408051630240bc6b60e21b81529051919350600091829182916001600160a01b03891691630902f1ac916004808301926060929190829003018186803b158015610b0957600080fd5b505afa158015610b1d573d6000803e3d6000fd5b505050506040513d6060811015610b3357600080fd5b5080516020820151604090920151909450909250905063ffffffff80821690851614610ba05780840363ffffffff8116610b6d8486610bb4565b516001600160e01b031602969096019563ffffffff8116610b8e8585610bb4565b516001600160e01b0316029590950194505b5050509193909250565b63ffffffff421690565b610bbc610c77565b6000826001600160701b031611610c1a576040805162461bcd60e51b815260206004820152601760248201527f4669786564506f696e743a204449565f42595f5a45524f000000000000000000604482015290519081900360640190fd5b6040805160208101909152806001600160701b0384166dffffffffffffffffffffffffffff60701b607087901b1681610c4f57fe5b046001600160e01b0316815250905092915050565b6040518060200160405280600081525090565b60408051602081019091526000815290565b6000806000610c988585610d49565b604080516bffffffffffffffffffffffff19606094851b811660208084019190915293851b81166034830152825160288184030181526048830184528051908501206001600160f81b031960688401529a90941b9093166069840152607d8301989098527f96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f609d808401919091528851808403909101815260bd909201909752805196019590952095945050505050565b600080826001600160a01b0316846001600160a01b03161415610d9d5760405162461bcd60e51b8152600401808060200182810382526025815260200180610e286025913960400191505060405180910390fd5b826001600160a01b0316846001600160a01b031610610dbd578284610dc0565b83835b90925090506001600160a01b038216610e20576040805162461bcd60e51b815260206004820152601e60248201527f556e697377617056324c6962726172793a205a45524f5f414444524553530000604482015290519081900360640190fd5b925092905056fe556e697377617056324c6962726172793a204944454e544943414c5f4144445245535345534669786564506f696e743a204d554c5449504c49434154494f4e5f4f564552464c4f57a2646970667358221220e270748c038852cafcc034edcbd0a5020a053f5f4ce2a4505b8e5d0731e761be64736f6c63430006060033556e697377617056324c6962726172793a204944454e544943414c5f414444524553534553

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100f55760003560e01c80637b2aab0311610097578063b4d1d79511610066578063b4d1d795146101f8578063c5700a0214610200578063d21220a714610221578063e1c7392a14610229576100f5565b80637b2aab03146101d8578063a2e62045146101e0578063a6bb4539146101e8578063a8aa1b31146101f0576100f5565b80633ddac953116100d35780633ddac953146101785780635909c0d5146101a45780635a3d5493146101ac5780635e6aaf2c146101b4576100f5565b80630dfe1681146100fa578063158ef93e1461011e5780632d3a9ee71461013a575b600080fd5b610102610233565b604080516001600160a01b039092168252519081900360200190f35b610126610257565b604080519115158252519081900360200190f35b6101666004803603604081101561015057600080fd5b506001600160a01b038135169060200135610260565b60408051918252519081900360200190f35b6101666004803603604081101561018e57600080fd5b506001600160a01b03813516906020013561034b565b610166610494565b61016661049a565b6101bc6104a0565b604080516001600160e01b039092168252519081900360200190f35b6101266104af565b6101266104bd565b6101bc61063b565b61010261064a565b61016661066e565b610208610674565b6040805163ffffffff9092168252519081900360200190f35b610102610680565b6102316106a4565b005b7f0000000000000000000000004c16b17165abf7be7641bbde8c3279964b2f053981565b60065460ff1681565b6000306001600160a01b031663a2e620456040518163ffffffff1660e01b8152600401602060405180830381600087803b15801561029d57600080fd5b505af11580156102b1573d6000803e3d6000fd5b505050506040513d60208110156102c757600080fd5b505060408051633ddac95360e01b81526001600160a01b03851660048201526024810184905290513091633ddac953916044808301926020929190829003018186803b15801561031657600080fd5b505afa15801561032a573d6000803e3d6000fd5b505050506040513d602081101561034057600080fd5b505190505b92915050565b60007f0000000000000000000000004c16b17165abf7be7641bbde8c3279964b2f05396001600160a01b0316836001600160a01b031614156103c95760408051602081019091526004546001600160e01b031681526103b9906103b4908463ffffffff61095616565b6109d4565b6001600160901b03169050610345565b7f000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb486001600160a01b0316836001600160a01b03161461044f576040805162461bcd60e51b815260206004820152601c60248201527f556e69737761704f7261636c653a20494e56414c49445f544f4b454e00000000604482015290519081900360640190fd5b60408051602081019091526005546001600160e01b0316815261047c906103b4908463ffffffff61095616565b64e8d4a51000026001600160901b0316905092915050565b60015481565b60025481565b6005546001600160e01b031681565b600654610100900460ff1681565b60065460009060ff16610517576040805162461bcd60e51b815260206004820152601e60248201527f556e69737761704f7261636c653a204e4f545f494e495449414c495a45440000604482015290519081900360640190fd5b60008060006105457f000000000000000000000000c2ab65dc63da691ef68953b70152186d217b9abf6109db565b600354600054939650919450925063ffffffff9081168303919082161015610574576000945050505050610638565b60405180602001604052808263ffffffff1660015487038161059257fe5b046001600160e01b039081169091529051600480546001600160e01b031916919092161790556040805160208101909152600254819063ffffffff8416908603816105d957fe5b046001600160e01b039081169091529051600580546001600160e01b031916919092161790555060019283556002919091556003805463ffffffff191663ffffffff9092169190911790556006805461010061ff001990911617905590505b90565b6004546001600160e01b031681565b7f000000000000000000000000c2ab65dc63da691ef68953b70152186d217b9abf81565b60005481565b60035463ffffffff1681565b7f000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4881565b60065460ff16156106fc576040805162461bcd60e51b815260206004820152601a60248201527f556e69737761704f7261636c653a20494e495449414c495a4544000000000000604482015290519081900360640190fd5b6006805460ff1916600117905560408051635909c0d560e01b815290516001600160a01b037f000000000000000000000000c2ab65dc63da691ef68953b70152186d217b9abf1691635909c0d5916004808301926020929190829003018186803b15801561076957600080fd5b505afa15801561077d573d6000803e3d6000fd5b505050506040513d602081101561079357600080fd5b505160015560408051635a3d549360e01b815290516001600160a01b037f000000000000000000000000c2ab65dc63da691ef68953b70152186d217b9abf1691635a3d5493916004808301926020929190829003018186803b1580156107f857600080fd5b505afa15801561080c573d6000803e3d6000fd5b505050506040513d602081101561082257600080fd5b505160025560408051630240bc6b60e21b8152905160009182916001600160a01b037f000000000000000000000000c2ab65dc63da691ef68953b70152186d217b9abf1691630902f1ac916004808301926060929190829003018186803b15801561088c57600080fd5b505afa1580156108a0573d6000803e3d6000fd5b505050506040513d60608110156108b657600080fd5b50805160208201516040909201516003805463ffffffff191663ffffffff909216919091179055925090506001600160701b0382161580159061090157506001600160701b03811615155b610952576040805162461bcd60e51b815260206004820152601a60248201527f556e69737761704f7261636c653a204e4f5f5245534552564553000000000000604482015290519081900360640190fd5b5050565b61095e610c64565b600082158061098457505082516001600160e01b03168281029083828161098157fe5b04145b6109bf5760405162461bcd60e51b8152600401808060200182810382526023815260200180610e4d6023913960400191505060405180910390fd5b60408051602081019091529081529392505050565b5160701c90565b60008060006109e8610baa565b9050836001600160a01b0316635909c0d56040518163ffffffff1660e01b815260040160206040518083038186803b158015610a2357600080fd5b505afa158015610a37573d6000803e3d6000fd5b505050506040513d6020811015610a4d57600080fd5b505160408051635a3d549360e01b815290519194506001600160a01b03861691635a3d549391600480820192602092909190829003018186803b158015610a9357600080fd5b505afa158015610aa7573d6000803e3d6000fd5b505050506040513d6020811015610abd57600080fd5b505160408051630240bc6b60e21b81529051919350600091829182916001600160a01b03891691630902f1ac916004808301926060929190829003018186803b158015610b0957600080fd5b505afa158015610b1d573d6000803e3d6000fd5b505050506040513d6060811015610b3357600080fd5b5080516020820151604090920151909450909250905063ffffffff80821690851614610ba05780840363ffffffff8116610b6d8486610bb4565b516001600160e01b031602969096019563ffffffff8116610b8e8585610bb4565b516001600160e01b0316029590950194505b5050509193909250565b63ffffffff421690565b610bbc610c77565b6000826001600160701b031611610c1a576040805162461bcd60e51b815260206004820152601760248201527f4669786564506f696e743a204449565f42595f5a45524f000000000000000000604482015290519081900360640190fd5b6040805160208101909152806001600160701b0384166dffffffffffffffffffffffffffff60701b607087901b1681610c4f57fe5b046001600160e01b0316815250905092915050565b6040518060200160405280600081525090565b60408051602081019091526000815290565b6000806000610c988585610d49565b604080516bffffffffffffffffffffffff19606094851b811660208084019190915293851b81166034830152825160288184030181526048830184528051908501206001600160f81b031960688401529a90941b9093166069840152607d8301989098527f96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f609d808401919091528851808403909101815260bd909201909752805196019590952095945050505050565b600080826001600160a01b0316846001600160a01b03161415610d9d5760405162461bcd60e51b8152600401808060200182810382526025815260200180610e286025913960400191505060405180910390fd5b826001600160a01b0316846001600160a01b031610610dbd578284610dc0565b83835b90925090506001600160a01b038216610e20576040805162461bcd60e51b815260206004820152601e60248201527f556e697377617056324c6962726172793a205a45524f5f414444524553530000604482015290519081900360640190fd5b925092905056fe556e697377617056324c6962726172793a204944454e544943414c5f4144445245535345534669786564506f696e743a204d554c5449504c49434154494f4e5f4f564552464c4f57a2646970667358221220e270748c038852cafcc034edcbd0a5020a053f5f4ce2a4505b8e5d0731e761be64736f6c63430006060033

Deployed Bytecode Sourcemap

14833:3479:0:-:0;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;14833:3479:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;9;2:12;14959:31:0;;;:::i;:::-;;;;-1:-1:-1;;;;;14959:31:0;;;;;;;;;;;;;;15242:23;;;:::i;:::-;;;;;;;;;;;;;;;;;;18131:178;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;18131:178:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;17708:364;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;17708:364:0;;;;;;;;:::i;15033:35::-;;;:::i;15073:::-;;;:::i;15196:41::-;;;:::i;:::-;;;;-1:-1:-1;;;;;15196:41:0;;;;;;;;;;;;;;15270:19;;;:::i;16489:1113::-;;;:::i;15150:41::-;;;:::i;14918:36::-;;;:::i;14890:21::-;;;:::i;15113:32::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;14995:31;;;:::i;15914:569::-;;;:::i;:::-;;14959:31;;;:::o;15242:23::-;;;;;;:::o;18131:178::-;18218:17;18247:4;-1:-1:-1;;;;;18247:11:0;;:13;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;18247:13:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;18247:13:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;18274:29:0;;;-1:-1:-1;;;18274:29:0;;-1:-1:-1;;;;;18274:29:0;;;;;;;;;;;;;;:4;;:12;;:29;;;;;18247:13;;18274:29;;;;;;;:4;:29;;;2:2:-1;;;;27:1;24;17:12;2:2;18274:29:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;18274:29:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;18274:29:0;;-1:-1:-1;18131:178:0;;;;;:::o;17708:364::-;17796:17;17838:6;-1:-1:-1;;;;;17829:15:0;:5;-1:-1:-1;;;;;17829:15:0;;17825:242;;;17867:17;;;;;;;;;:13;:17;-1:-1:-1;;;;;17867:17:0;;;:39;;:27;;17885:8;17867:27;:17;:27;:::i;:::-;:37;:39::i;:::-;-1:-1:-1;;;;;17855:51:0;;;17825:242;;;17946:6;-1:-1:-1;;;;;17937:15:0;:5;-1:-1:-1;;;;;17937:15:0;;17929:56;;;;;-1:-1:-1;;;17929:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;18006:17;;;;;;;;;:13;:17;-1:-1:-1;;;;;18006:17:0;;;:39;;:27;;18024:8;18006:27;:17;:27;:::i;:39::-;18046:13;18006:53;-1:-1:-1;;;;;17994:65:0;;;17708:364;;;;:::o;15033:35::-;;;;:::o;15073:::-;;;;:::o;15196:41::-;;;-1:-1:-1;;;;;15196:41:0;;:::o;15270:19::-;;;;;;;;;:::o;16489:1113::-;16554:11;;16525:12;;16554:11;;16546:54;;;;;-1:-1:-1;;;16546:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;16616:24;16649;16682:21;16713:61;16768:4;16713:46;:61::i;:::-;16821:18;;16783;16965:6;16607:167;;-1:-1:-1;16607:167:0;;-1:-1:-1;16607:167:0;-1:-1:-1;16821:18:0;;;;16804:35;;;16951:20;;;;16947:55;;;16989:5;16982:12;;;;;;;;16947:55;17196:100;;;;;;;;17277:11;17233:55;;17253:20;;17234:16;:39;17233:55;;;;;;-1:-1:-1;;;;;17196:100:0;;;;;;17180:116;;:13;:116;;-1:-1:-1;;;;;;17180:116:0;;;;;;;;17319:100;;;;;;;;;17376:20;;17319:100;;17356:55;;;;17357:39;;17356:55;;;;;;-1:-1:-1;;;;;17319:100:0;;;;;;17303:116;;:13;:116;;-1:-1:-1;;;;;;17303:116:0;;;;;;;;-1:-1:-1;;17428:39:0;;;17474:20;:39;;;;-1:-1:-1;17520:35:0;;-1:-1:-1;;17520:35:0;;;;;;;;;;;17562:7;:14;;17303:116;-1:-1:-1;;17562:14:0;;;;;;-1:-1:-1;;16489:1113:0;;:::o;15150:41::-;;;-1:-1:-1;;;;;15150:41:0;;:::o;14918:36::-;;;:::o;14890:21::-;;;;:::o;15113:32::-;;;;;;:::o;14995:31::-;;;:::o;15914:569::-;15955:11;;;;15954:12;15946:51;;;;;-1:-1:-1;;;15946:51:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;16004:11;:18;;-1:-1:-1;;16004:18:0;16018:4;16004:18;;;16052:27;;;-1:-1:-1;;;16052:27:0;;;;-1:-1:-1;;;;;16052:4:0;:25;;;;:27;;;;;;;;;;;;;;:25;:27;;;2:2:-1;;;;27:1;24;17:12;2:2;16052:27:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;16052:27:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;16052:27:0;16029:20;:50;16162:27;;;-1:-1:-1;;;16162:27:0;;;;-1:-1:-1;;;;;16162:4:0;:25;;;;:27;;;;;16052;;16162;;;;;;;:25;:27;;;2:2:-1;;;;27:1;24;17:12;2:2;16162:27:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;16162:27:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;16162:27:0;16139:20;:50;16338:18;;;-1:-1:-1;;;16338:18:0;;;;16249:16;;;;-1:-1:-1;;;;;16338:4:0;:16;;;;:18;;;;;;;;;;;;;;:16;:18;;;2:2:-1;;;;27:1;24;17:12;2:2;16338:18:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;16338:18:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;16338:18:0;;;;;;;;;;;16316;16295:61;;-1:-1:-1;;16295:61:0;;;;;;;;;;;16338:18;-1:-1:-1;16338:18:0;-1:-1:-1;;;;;;16371:13:0;;;;;;:30;;-1:-1:-1;;;;;;16388:13:0;;;;16371:30;16363:69;;;;;-1:-1:-1;;;16363:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;15914:569;;:::o;2460:253::-;2527:16;;:::i;:::-;2556:6;2581;;;:54;;-1:-1:-1;;2627:7:0;;-1:-1:-1;;;;;2622:13:0;2596:17;;;;2617:1;2596:17;2617:1;2591:27;;;;;:44;2581:54;2573:102;;;;-1:-1:-1;;;2573:102:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2693:12;;;;;;;;;;;;;2460:253;-1:-1:-1;;;2460:253:0:o;3414:130::-;3514:7;1620:3;3514:21;;3414:130::o;4519:1058::-;4605:21;4628;4651;4702:23;:21;:23::i;:::-;4685:40;;4770:4;-1:-1:-1;;;;;4755:41:0;;:43;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;4755:43:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;4755:43:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;4755:43:0;4828;;;-1:-1:-1;;;4828:43:0;;;;4755;;-1:-1:-1;;;;;;4828:41:0;;;;;:43;;;;;4755;;4828;;;;;;;;:41;:43;;;2:2:-1;;;;27:1;24;17:12;2:2;4828:43:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;4828:43:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;4828:43:0;5051:34;;;-1:-1:-1;;;5051:34:0;;;;4828:43;;-1:-1:-1;4986:16:0;;;;;;-1:-1:-1;;;;;5051:32:0;;;;;:34;;;;;;;;;;;;;;:32;:34;;;2:2:-1;;;;27:1;24;17:12;2:2;5051:34:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;5051:34:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;5051:34:0;;;;;;;;;;;;;-1:-1:-1;5051:34:0;;-1:-1:-1;5051:34:0;-1:-1:-1;5100:36:0;;;;;;;;5096:474;;5222:35;;;5368:62;;;5373:39;5393:8;5403;5373:19;:39::i;:::-;:42;-1:-1:-1;;;;;5368:48:0;:62;5348:82;;;;;5496:62;;;5501:39;5521:8;5531;5501:19;:39::i;:::-;:42;-1:-1:-1;;;;;5496:48:0;:62;5476:82;;;;;-1:-1:-1;5096:474:0;4519:1058;;;;;;;;:::o;4290:123::-;4379:25;:15;:25;;4290:123::o;2869:246::-;2950:16;;:::i;:::-;3001:1;2987:11;-1:-1:-1;;;;;2987:15:0;;2979:51;;;;;-1:-1:-1;;;2979:51:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;3048:59;;;;;;;;;;-1:-1:-1;;;;;3058:48:0;;-1:-1:-1;;;1620:3:0;3059:32;;;;3058:48;;;;;;-1:-1:-1;;;;;3048:59:0;;;;3041:66;;2869:246;;;;:::o;14833:3479::-;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;-1:-1:-1;14833:3479:0;;;:::o;10614:478::-;10703:12;10729:14;10745;10763:26;10774:6;10782;10763:10;:26::i;:::-;10927:32;;;-1:-1:-1;;10927:32:0;;;;;;;;;;;;;;;;;;;;;;;;;22::-1;26:21;;;22:32;6:49;;10927:32:0;;;;;10917:43;;;;;;-1:-1:-1;;;;;;10830:251:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;10830:251:0;;;;;;;10820:262;;;;;;;;;10614:478;-1:-1:-1;;;;;10614:478:0:o;10173:349::-;10248:14;10264;10309:6;-1:-1:-1;;;;;10299:16:0;:6;-1:-1:-1;;;;;10299:16:0;;;10291:66;;;;-1:-1:-1;;;10291:66:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10396:6;-1:-1:-1;;;;;10387:15:0;:6;-1:-1:-1;;;;;10387:15:0;;:53;;10425:6;10433;10387:53;;;10406:6;10414;10387:53;10368:72;;-1:-1:-1;10368:72:0;-1:-1:-1;;;;;;10459:20:0;;10451:63;;;;;-1:-1:-1;;;10451:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;10173:349;;;;;:::o

Swarm Source

ipfs://e270748c038852cafcc034edcbd0a5020a053f5f4ce2a4505b8e5d0731e761be

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.