ETH Price: $3,031.71 (+4.44%)

Contract

0x21A8D15322C257Abd2b22a56eDde758398be0F32
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
0x61103561139825262022-01-11 6:13:231033 days ago1641881603IN
 Create: ABDKMath64x64
0 ETH0.13930428147.96544478

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
ABDKMath64x64

Compiler Version
v0.7.6+commit.7338295f

Optimization Enabled:
Yes with 825 runs

Other Settings:
default evmVersion
File 1 of 1 : ABDKMath64x64.sol
// SPDX-License-Identifier: BSD-4-Clause
/*
 * ABDK Math 64.64 Smart Contract Library.  Copyright © 2019 by ABDK Consulting.
 * Author: Mikhail Vladimirov <[email protected]>
 * Copyright (c) 2019, ABDK Consulting
 *
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
 *
 * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
 * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
 * All advertising materials mentioning features or use of this software must display the following acknowledgement: This product includes software developed by ABDK Consulting.
 * Neither the name of ABDK Consulting nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
 * THIS SOFTWARE IS PROVIDED BY ABDK CONSULTING ''AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
 * IN NO EVENT SHALL ABDK CONSULTING BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */

pragma solidity ^0.7.0;

/**
 * Smart contract library of mathematical functions operating with signed
 * 64.64-bit fixed point numbers.  Signed 64.64-bit fixed point number is
 * basically a simple fraction whose numerator is signed 128-bit integer and
 * denominator is 2^64.  As long as denominator is always the same, there is no
 * need to store it, thus in Solidity signed 64.64-bit fixed point numbers are
 * represented by int128 type holding only the numerator.
 *
 * Commit used - 16d7e1dd8628dfa2f88d5dadab731df7ada70bdd
 * Copied from - https://github.com/abdk-consulting/abdk-libraries-solidity/tree/v2.4
 * Changes - some function visibility switched to public, solidity version set to 0.7.x
 * Changes (cont) - revert strings added
 * solidity version set to ^0.7.0
 */
library ABDKMath64x64 {
    /*
     * Minimum value signed 64.64-bit fixed point number may have.
     * Minimum value signed 64.64-bit fixed point number may have.
     * Minimum value signed 64.64-bit fixed point number may have.
     * -2^127
     */
    int128 private constant MIN_64x64 = -0x80000000000000000000000000000000;

    /*
     * Maximum value signed 64.64-bit fixed point number may have.
     * Maximum value signed 64.64-bit fixed point number may have.
     * Maximum value signed 64.64-bit fixed point number may have.
     * 2^127-1
     */
    int128 private constant MAX_64x64 = 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF;

    /**
     * Calculate x * y rounding down.  Revert on overflow.
     *
     * @param x signed 64.64-bit fixed point number
     * @param y signed 64.64-bit fixed point number
     * @return signed 64.64-bit fixed point number
     */
    function mul(int128 x, int128 y) internal pure returns (int128) {
        int256 result = (int256(x) * y) >> 64;
        require(result >= MIN_64x64 && result <= MAX_64x64, "MUL-OVUF");
        return int128(result);
    }

    /**
     * Calculate x * y rounding down, where x is signed 64.64 fixed point number
     * and y is unsigned 256-bit integer number.  Revert on overflow.
     *
     * @param x signed 64.64 fixed point number
     * @param y unsigned 256-bit integer number
     * @return unsigned 256-bit integer number
     */
    function mulu(int128 x, uint256 y) internal pure returns (uint256) {
        if (y == 0) return 0;

        require(x >= 0, "MULU-X0");

        uint256 lo = (uint256(x) * (y & 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF)) >> 64;
        uint256 hi = uint256(x) * (y >> 128);

        require(hi <= 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF, "MULU-OF1");
        hi <<= 64;

        require(hi <= 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF - lo, "MULU-OF2");
        return hi + lo;
    }

    /**
     * Calculate x / y rounding towards zero, where x and y are unsigned 256-bit
     * integer numbers.  Revert on overflow or when y is zero.
     *
     * @param x unsigned 256-bit integer number
     * @param y unsigned 256-bit integer number
     * @return signed 64.64-bit fixed point number
     */
    function divu(uint256 x, uint256 y) public pure returns (int128) {
        require(y != 0, "DIVU-INF");
        uint128 result = divuu(x, y);
        require(result <= uint128(MAX_64x64), "DIVU-OF");
        return int128(result);
    }

    /**
     * Calculate binary logarithm of x.  Revert if x <= 0.
     *
     * @param x signed 64.64-bit fixed point number
     * @return signed 64.64-bit fixed point number
     */
    function log_2(int128 x) public pure returns (int128) {
        require(x > 0, "LOG_2-X0");

        int256 msb = 0;
        int256 xc = x;
        if (xc >= 0x10000000000000000) {
            xc >>= 64;
            msb += 64;
        }
        if (xc >= 0x100000000) {
            xc >>= 32;
            msb += 32;
        }
        if (xc >= 0x10000) {
            xc >>= 16;
            msb += 16;
        }
        if (xc >= 0x100) {
            xc >>= 8;
            msb += 8;
        }
        if (xc >= 0x10) {
            xc >>= 4;
            msb += 4;
        }
        if (xc >= 0x4) {
            xc >>= 2;
            msb += 2;
        }
        if (xc >= 0x2) msb += 1; // No need to shift xc anymore

        int256 result = (msb - 64) << 64;
        uint256 ux = uint256(x) << uint256(127 - msb);
        for (int256 bit = 0x8000000000000000; bit > 0; bit >>= 1) {
            ux *= ux;
            uint256 b = ux >> 255;
            ux >>= 127 + b;
            result += bit * int256(b);
        }

        return int128(result);
    }

    /**
     * Calculate binary exponent of x.  Revert on overflow.
     *
     * @param x signed 64.64-bit fixed point number
     * @return signed 64.64-bit fixed point number
     */
    function exp_2(int128 x) public pure returns (int128) {
        require(x < 0x400000000000000000, "EXP_2-OF"); // Overflow

        if (x < -0x400000000000000000) return 0; // Underflow

        uint256 result = 0x80000000000000000000000000000000;

        if (x & 0x8000000000000000 > 0) result = (result * 0x16A09E667F3BCC908B2FB1366EA957D3E) >> 128;
        if (x & 0x4000000000000000 > 0) result = (result * 0x1306FE0A31B7152DE8D5A46305C85EDEC) >> 128;
        if (x & 0x2000000000000000 > 0) result = (result * 0x1172B83C7D517ADCDF7C8C50EB14A791F) >> 128;
        if (x & 0x1000000000000000 > 0) result = (result * 0x10B5586CF9890F6298B92B71842A98363) >> 128;
        if (x & 0x800000000000000 > 0) result = (result * 0x1059B0D31585743AE7C548EB68CA417FD) >> 128;
        if (x & 0x400000000000000 > 0) result = (result * 0x102C9A3E778060EE6F7CACA4F7A29BDE8) >> 128;
        if (x & 0x200000000000000 > 0) result = (result * 0x10163DA9FB33356D84A66AE336DCDFA3F) >> 128;
        if (x & 0x100000000000000 > 0) result = (result * 0x100B1AFA5ABCBED6129AB13EC11DC9543) >> 128;
        if (x & 0x80000000000000 > 0) result = (result * 0x10058C86DA1C09EA1FF19D294CF2F679B) >> 128;
        if (x & 0x40000000000000 > 0) result = (result * 0x1002C605E2E8CEC506D21BFC89A23A00F) >> 128;
        if (x & 0x20000000000000 > 0) result = (result * 0x100162F3904051FA128BCA9C55C31E5DF) >> 128;
        if (x & 0x10000000000000 > 0) result = (result * 0x1000B175EFFDC76BA38E31671CA939725) >> 128;
        if (x & 0x8000000000000 > 0) result = (result * 0x100058BA01FB9F96D6CACD4B180917C3D) >> 128;
        if (x & 0x4000000000000 > 0) result = (result * 0x10002C5CC37DA9491D0985C348C68E7B3) >> 128;
        if (x & 0x2000000000000 > 0) result = (result * 0x1000162E525EE054754457D5995292026) >> 128;
        if (x & 0x1000000000000 > 0) result = (result * 0x10000B17255775C040618BF4A4ADE83FC) >> 128;
        if (x & 0x800000000000 > 0) result = (result * 0x1000058B91B5BC9AE2EED81E9B7D4CFAB) >> 128;
        if (x & 0x400000000000 > 0) result = (result * 0x100002C5C89D5EC6CA4D7C8ACC017B7C9) >> 128;
        if (x & 0x200000000000 > 0) result = (result * 0x10000162E43F4F831060E02D839A9D16D) >> 128;
        if (x & 0x100000000000 > 0) result = (result * 0x100000B1721BCFC99D9F890EA06911763) >> 128;
        if (x & 0x80000000000 > 0) result = (result * 0x10000058B90CF1E6D97F9CA14DBCC1628) >> 128;
        if (x & 0x40000000000 > 0) result = (result * 0x1000002C5C863B73F016468F6BAC5CA2B) >> 128;
        if (x & 0x20000000000 > 0) result = (result * 0x100000162E430E5A18F6119E3C02282A5) >> 128;
        if (x & 0x10000000000 > 0) result = (result * 0x1000000B1721835514B86E6D96EFD1BFE) >> 128;
        if (x & 0x8000000000 > 0) result = (result * 0x100000058B90C0B48C6BE5DF846C5B2EF) >> 128;
        if (x & 0x4000000000 > 0) result = (result * 0x10000002C5C8601CC6B9E94213C72737A) >> 128;
        if (x & 0x2000000000 > 0) result = (result * 0x1000000162E42FFF037DF38AA2B219F06) >> 128;
        if (x & 0x1000000000 > 0) result = (result * 0x10000000B17217FBA9C739AA5819F44F9) >> 128;
        if (x & 0x800000000 > 0) result = (result * 0x1000000058B90BFCDEE5ACD3C1CEDC823) >> 128;
        if (x & 0x400000000 > 0) result = (result * 0x100000002C5C85FE31F35A6A30DA1BE50) >> 128;
        if (x & 0x200000000 > 0) result = (result * 0x10000000162E42FF0999CE3541B9FFFCF) >> 128;
        if (x & 0x100000000 > 0) result = (result * 0x100000000B17217F80F4EF5AADDA45554) >> 128;
        if (x & 0x80000000 > 0) result = (result * 0x10000000058B90BFBF8479BD5A81B51AD) >> 128;
        if (x & 0x40000000 > 0) result = (result * 0x1000000002C5C85FDF84BD62AE30A74CC) >> 128;
        if (x & 0x20000000 > 0) result = (result * 0x100000000162E42FEFB2FED257559BDAA) >> 128;
        if (x & 0x10000000 > 0) result = (result * 0x1000000000B17217F7D5A7716BBA4A9AE) >> 128;
        if (x & 0x8000000 > 0) result = (result * 0x100000000058B90BFBE9DDBAC5E109CCE) >> 128;
        if (x & 0x4000000 > 0) result = (result * 0x10000000002C5C85FDF4B15DE6F17EB0D) >> 128;
        if (x & 0x2000000 > 0) result = (result * 0x1000000000162E42FEFA494F1478FDE05) >> 128;
        if (x & 0x1000000 > 0) result = (result * 0x10000000000B17217F7D20CF927C8E94C) >> 128;
        if (x & 0x800000 > 0) result = (result * 0x1000000000058B90BFBE8F71CB4E4B33D) >> 128;
        if (x & 0x400000 > 0) result = (result * 0x100000000002C5C85FDF477B662B26945) >> 128;
        if (x & 0x200000 > 0) result = (result * 0x10000000000162E42FEFA3AE53369388C) >> 128;
        if (x & 0x100000 > 0) result = (result * 0x100000000000B17217F7D1D351A389D40) >> 128;
        if (x & 0x80000 > 0) result = (result * 0x10000000000058B90BFBE8E8B2D3D4EDE) >> 128;
        if (x & 0x40000 > 0) result = (result * 0x1000000000002C5C85FDF4741BEA6E77E) >> 128;
        if (x & 0x20000 > 0) result = (result * 0x100000000000162E42FEFA39FE95583C2) >> 128;
        if (x & 0x10000 > 0) result = (result * 0x1000000000000B17217F7D1CFB72B45E1) >> 128;
        if (x & 0x8000 > 0) result = (result * 0x100000000000058B90BFBE8E7CC35C3F0) >> 128;
        if (x & 0x4000 > 0) result = (result * 0x10000000000002C5C85FDF473E242EA38) >> 128;
        if (x & 0x2000 > 0) result = (result * 0x1000000000000162E42FEFA39F02B772C) >> 128;
        if (x & 0x1000 > 0) result = (result * 0x10000000000000B17217F7D1CF7D83C1A) >> 128;
        if (x & 0x800 > 0) result = (result * 0x1000000000000058B90BFBE8E7BDCBE2E) >> 128;
        if (x & 0x400 > 0) result = (result * 0x100000000000002C5C85FDF473DEA871F) >> 128;
        if (x & 0x200 > 0) result = (result * 0x10000000000000162E42FEFA39EF44D91) >> 128;
        if (x & 0x100 > 0) result = (result * 0x100000000000000B17217F7D1CF79E949) >> 128;
        if (x & 0x80 > 0) result = (result * 0x10000000000000058B90BFBE8E7BCE544) >> 128;
        if (x & 0x40 > 0) result = (result * 0x1000000000000002C5C85FDF473DE6ECA) >> 128;
        if (x & 0x20 > 0) result = (result * 0x100000000000000162E42FEFA39EF366F) >> 128;
        if (x & 0x10 > 0) result = (result * 0x1000000000000000B17217F7D1CF79AFA) >> 128;
        if (x & 0x8 > 0) result = (result * 0x100000000000000058B90BFBE8E7BCD6D) >> 128;
        if (x & 0x4 > 0) result = (result * 0x10000000000000002C5C85FDF473DE6B2) >> 128;
        if (x & 0x2 > 0) result = (result * 0x1000000000000000162E42FEFA39EF358) >> 128;
        if (x & 0x1 > 0) result = (result * 0x10000000000000000B17217F7D1CF79AB) >> 128;

        result >>= uint256(63 - (x >> 64));
        require(result <= uint256(MAX_64x64));

        return int128(result);
    }

    /**
     * Calculate x / y rounding towards zero, where x and y are unsigned 256-bit
     * integer numbers.  Revert on overflow or when y is zero.
     *
     * @param x unsigned 256-bit integer number
     * @param y unsigned 256-bit integer number
     * @return unsigned 64.64-bit fixed point number
     */
    function divuu(uint256 x, uint256 y) private pure returns (uint128) {
        require(y != 0);

        uint256 result;

        if (x <= 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF) result = (x << 64) / y;
        else {
            uint256 msb = 192;
            uint256 xc = x >> 192;
            if (xc >= 0x100000000) {
                xc >>= 32;
                msb += 32;
            }
            if (xc >= 0x10000) {
                xc >>= 16;
                msb += 16;
            }
            if (xc >= 0x100) {
                xc >>= 8;
                msb += 8;
            }
            if (xc >= 0x10) {
                xc >>= 4;
                msb += 4;
            }
            if (xc >= 0x4) {
                xc >>= 2;
                msb += 2;
            }
            if (xc >= 0x2) msb += 1; // No need to shift xc anymore

            result = (x << (255 - msb)) / (((y - 1) >> (msb - 191)) + 1);
            require(result <= 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF, "DIVUU-OF1");

            uint256 hi = result * (y >> 128);
            uint256 lo = result * (y & 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF);

            uint256 xh = x >> 192;
            uint256 xl = x << 64;

            if (xl < lo) xh -= 1;
            xl -= lo; // We rely on overflow behavior here
            lo = hi << 128;
            if (xl < lo) xh -= 1;
            xl -= lo; // We rely on overflow behavior here

            assert(xh == hi >> 128);

            result += xl / y;
        }

        require(result <= 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF, "DIVUU-OF2");
        return uint128(result);
    }
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 825
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "metadata": {
    "useLiteralContent": true
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"x","type":"uint256"},{"internalType":"uint256","name":"y","type":"uint256"}],"name":"divu","outputs":[{"internalType":"int128","name":"","type":"int128"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"int128","name":"x","type":"int128"}],"name":"exp_2","outputs":[{"internalType":"int128","name":"","type":"int128"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"int128","name":"x","type":"int128"}],"name":"log_2","outputs":[{"internalType":"int128","name":"","type":"int128"}],"stateMutability":"pure","type":"function"}]

611035610026600b82828239805160001a60731461001957fe5b30600052607381538281f3fe730000000000000000000000000000000000000000301460806040526004361061004b5760003560e01c80632cbbdee514610050578063fc193cf214610087578063fc505d37146100a7575b600080fd5b6100706004803603602081101561006657600080fd5b5035600f0b6100ca565b60408051600f9290920b8252519081900360200190f35b6100706004803603602081101561009d57600080fd5b5035600f0b6101f8565b610070600480360360408110156100bd57600080fd5b5080359060200135610d19565b60008082600f0b13610123576040805162461bcd60e51b815260206004820152600860248201527f4c4f475f322d5830000000000000000000000000000000000000000000000000604482015290519081900360640190fd5b6000600f83900b680100000000000000008112610142576040918201911d5b6401000000008112610156576020918201911d5b620100008112610168576010918201911d5b6101008112610179576008918201911d5b60108112610189576004918201911d5b60048112610199576002918201911d5b600281126101a8576001820191505b603f19820160401b600f85900b607f8490031b6780000000000000005b60008113156101eb5790800260ff81901c8281029390930192607f011c9060011d6101c5565b509093505050505b919050565b60006840000000000000000082600f0b1261025a576040805162461bcd60e51b815260206004820152600860248201527f4558505f322d4f46000000000000000000000000000000000000000000000000604482015290519081900360640190fd5b683fffffffffffffffff1982600f0b1215610277575060006101f3565b6f8000000000000000000000000000000060006780000000000000008416600f0b13156102b55770016a09e667f3bcc908b2fb1366ea957d3e0260801c5b60008367400000000000000016600f0b13156102e2577001306fe0a31b7152de8d5a46305c85edec0260801c5b60008367200000000000000016600f0b131561030f577001172b83c7d517adcdf7c8c50eb14a791f0260801c5b60008367100000000000000016600f0b131561033c5770010b5586cf9890f6298b92b71842a983630260801c5b60008367080000000000000016600f0b1315610369577001059b0d31585743ae7c548eb68ca417fd0260801c5b60008367040000000000000016600f0b131561039657700102c9a3e778060ee6f7caca4f7a29bde80260801c5b60008367020000000000000016600f0b13156103c35770010163da9fb33356d84a66ae336dcdfa3f0260801c5b60008367010000000000000016600f0b13156103f057700100b1afa5abcbed6129ab13ec11dc95430260801c5b600083668000000000000016600f0b131561041c5770010058c86da1c09ea1ff19d294cf2f679b0260801c5b600083664000000000000016600f0b1315610448577001002c605e2e8cec506d21bfc89a23a00f0260801c5b600083662000000000000016600f0b131561047457700100162f3904051fa128bca9c55c31e5df0260801c5b600083661000000000000016600f0b13156104a0577001000b175effdc76ba38e31671ca9397250260801c5b600083660800000000000016600f0b13156104cc57700100058ba01fb9f96d6cacd4b180917c3d0260801c5b600083660400000000000016600f0b13156104f85770010002c5cc37da9491d0985c348c68e7b30260801c5b600083660200000000000016600f0b1315610524577001000162e525ee054754457d59952920260260801c5b600083660100000000000016600f0b13156105505770010000b17255775c040618bf4a4ade83fc0260801c5b6000836580000000000016600f0b131561057b577001000058b91b5bc9ae2eed81e9b7d4cfab0260801c5b6000836540000000000016600f0b13156105a657700100002c5c89d5ec6ca4d7c8acc017b7c90260801c5b6000836520000000000016600f0b13156105d15770010000162e43f4f831060e02d839a9d16d0260801c5b6000836510000000000016600f0b13156105fc57700100000b1721bcfc99d9f890ea069117630260801c5b6000836508000000000016600f0b13156106275770010000058b90cf1e6d97f9ca14dbcc16280260801c5b6000836504000000000016600f0b1315610652577001000002c5c863b73f016468f6bac5ca2b0260801c5b6000836502000000000016600f0b131561067d57700100000162e430e5a18f6119e3c02282a50260801c5b6000836501000000000016600f0b13156106a8577001000000b1721835514b86e6d96efd1bfe0260801c5b60008364800000000016600f0b13156106d257700100000058b90c0b48c6be5df846c5b2ef0260801c5b60008364400000000016600f0b13156106fc5770010000002c5c8601cc6b9e94213c72737a0260801c5b60008364200000000016600f0b1315610726577001000000162e42fff037df38aa2b219f060260801c5b60008364100000000016600f0b13156107505770010000000b17217fba9c739aa5819f44f90260801c5b60008364080000000016600f0b131561077a577001000000058b90bfcdee5acd3c1cedc8230260801c5b60008364040000000016600f0b13156107a457700100000002c5c85fe31f35a6a30da1be500260801c5b60008364020000000016600f0b13156107ce5770010000000162e42ff0999ce3541b9fffcf0260801c5b60008364010000000016600f0b13156107f857700100000000b17217f80f4ef5aadda455540260801c5b600083638000000016600f0b13156108215770010000000058b90bfbf8479bd5a81b51ad0260801c5b600083634000000016600f0b131561084a577001000000002c5c85fdf84bd62ae30a74cc0260801c5b600083632000000016600f0b131561087357700100000000162e42fefb2fed257559bdaa0260801c5b600083631000000016600f0b131561089c577001000000000b17217f7d5a7716bba4a9ae0260801c5b600083630800000016600f0b13156108c557700100000000058b90bfbe9ddbac5e109cce0260801c5b600083630400000016600f0b13156108ee5770010000000002c5c85fdf4b15de6f17eb0d0260801c5b600083630200000016600f0b1315610917577001000000000162e42fefa494f1478fde050260801c5b600083630100000016600f0b13156109405770010000000000b17217f7d20cf927c8e94c0260801c5b6000836280000016600f0b1315610968577001000000000058b90bfbe8f71cb4e4b33d0260801c5b6000836240000016600f0b131561099057700100000000002c5c85fdf477b662b269450260801c5b6000836220000016600f0b13156109b85770010000000000162e42fefa3ae53369388c0260801c5b6000836210000016600f0b13156109e057700100000000000b17217f7d1d351a389d400260801c5b6000836208000016600f0b1315610a085770010000000000058b90bfbe8e8b2d3d4ede0260801c5b6000836204000016600f0b1315610a30577001000000000002c5c85fdf4741bea6e77e0260801c5b6000836202000016600f0b1315610a5857700100000000000162e42fefa39fe95583c20260801c5b6000836201000016600f0b1315610a80577001000000000000b17217f7d1cfb72b45e10260801c5b60008361800016600f0b1315610aa757700100000000000058b90bfbe8e7cc35c3f00260801c5b60008361400016600f0b1315610ace5770010000000000002c5c85fdf473e242ea380260801c5b60008361200016600f0b1315610af5577001000000000000162e42fefa39f02b772c0260801c5b60008361100016600f0b1315610b1c5770010000000000000b17217f7d1cf7d83c1a0260801c5b60008361080016600f0b1315610b43577001000000000000058b90bfbe8e7bdcbe2e0260801c5b60008361040016600f0b1315610b6a57700100000000000002c5c85fdf473dea871f0260801c5b60008361020016600f0b1315610b915770010000000000000162e42fefa39ef44d910260801c5b60008361010016600f0b1315610bb857700100000000000000b17217f7d1cf79e9490260801c5b600083608016600f0b1315610bde5770010000000000000058b90bfbe8e7bce5440260801c5b600083604016600f0b1315610c04577001000000000000002c5c85fdf473de6eca0260801c5b600083602016600f0b1315610c2a57700100000000000000162e42fefa39ef366f0260801c5b600083601016600f0b1315610c50577001000000000000000b17217f7d1cf79afa0260801c5b600083600816600f0b1315610c7657700100000000000000058b90bfbe8e7bcd6d0260801c5b600083600416600f0b1315610c9c5770010000000000000002c5c85fdf473de6b20260801c5b600083600216600f0b1315610cc2577001000000000000000162e42fefa39ef3580260801c5b600083600116600f0b1315610ce85770010000000000000000b17217f7d1cf79ab0260801c5b600f83810b60401d603f03900b1c6f7fffffffffffffffffffffffffffffff811115610d1357600080fd5b92915050565b600081610d6d576040805162461bcd60e51b815260206004820152600860248201527f444956552d494e46000000000000000000000000000000000000000000000000604482015290519081900360640190fd5b6000610d798484610df9565b90506f7fffffffffffffffffffffffffffffff6fffffffffffffffffffffffffffffffff82161115610df2576040805162461bcd60e51b815260206004820152600760248201527f444956552d4f4600000000000000000000000000000000000000000000000000604482015290519081900360640190fd5b9392505050565b600081610e0557600080fd5b600077ffffffffffffffffffffffffffffffffffffffffffffffff8411610e3b5782604085901b81610e3357fe5b049050610f9a565b60c084811c6401000000008110610e54576020918201911c5b620100008110610e66576010918201911c5b6101008110610e77576008918201911c5b60108110610e87576004918201911c5b60048110610e97576002918201911c5b60028110610ea6576001820191505b60bf820360018603901c6001018260ff0387901b81610ec157fe5b0492506fffffffffffffffffffffffffffffffff831115610f29576040805162461bcd60e51b815260206004820152600960248201527f44495655552d4f46310000000000000000000000000000000000000000000000604482015290519081900360640190fd5b608085901c83026fffffffffffffffffffffffffffffffff8616840260c088901c604089901b82811015610f5e576001820391505b608084901b92900382811015610f75576001820391505b829003608084901c8214610f8557fe5b888181610f8e57fe5b04870196505050505050505b6fffffffffffffffffffffffffffffffff811115610df2576040805162461bcd60e51b815260206004820152600960248201527f44495655552d4f46320000000000000000000000000000000000000000000000604482015290519081900360640190fdfea264697066735822122040574cb227dea1d1a5db4fb4ab0552095e5133a47a8b45993e447ebd0471743a64736f6c63430007060033

Deployed Bytecode

0x7321a8d15322c257abd2b22a56edde758398be0f32301460806040526004361061004b5760003560e01c80632cbbdee514610050578063fc193cf214610087578063fc505d37146100a7575b600080fd5b6100706004803603602081101561006657600080fd5b5035600f0b6100ca565b60408051600f9290920b8252519081900360200190f35b6100706004803603602081101561009d57600080fd5b5035600f0b6101f8565b610070600480360360408110156100bd57600080fd5b5080359060200135610d19565b60008082600f0b13610123576040805162461bcd60e51b815260206004820152600860248201527f4c4f475f322d5830000000000000000000000000000000000000000000000000604482015290519081900360640190fd5b6000600f83900b680100000000000000008112610142576040918201911d5b6401000000008112610156576020918201911d5b620100008112610168576010918201911d5b6101008112610179576008918201911d5b60108112610189576004918201911d5b60048112610199576002918201911d5b600281126101a8576001820191505b603f19820160401b600f85900b607f8490031b6780000000000000005b60008113156101eb5790800260ff81901c8281029390930192607f011c9060011d6101c5565b509093505050505b919050565b60006840000000000000000082600f0b1261025a576040805162461bcd60e51b815260206004820152600860248201527f4558505f322d4f46000000000000000000000000000000000000000000000000604482015290519081900360640190fd5b683fffffffffffffffff1982600f0b1215610277575060006101f3565b6f8000000000000000000000000000000060006780000000000000008416600f0b13156102b55770016a09e667f3bcc908b2fb1366ea957d3e0260801c5b60008367400000000000000016600f0b13156102e2577001306fe0a31b7152de8d5a46305c85edec0260801c5b60008367200000000000000016600f0b131561030f577001172b83c7d517adcdf7c8c50eb14a791f0260801c5b60008367100000000000000016600f0b131561033c5770010b5586cf9890f6298b92b71842a983630260801c5b60008367080000000000000016600f0b1315610369577001059b0d31585743ae7c548eb68ca417fd0260801c5b60008367040000000000000016600f0b131561039657700102c9a3e778060ee6f7caca4f7a29bde80260801c5b60008367020000000000000016600f0b13156103c35770010163da9fb33356d84a66ae336dcdfa3f0260801c5b60008367010000000000000016600f0b13156103f057700100b1afa5abcbed6129ab13ec11dc95430260801c5b600083668000000000000016600f0b131561041c5770010058c86da1c09ea1ff19d294cf2f679b0260801c5b600083664000000000000016600f0b1315610448577001002c605e2e8cec506d21bfc89a23a00f0260801c5b600083662000000000000016600f0b131561047457700100162f3904051fa128bca9c55c31e5df0260801c5b600083661000000000000016600f0b13156104a0577001000b175effdc76ba38e31671ca9397250260801c5b600083660800000000000016600f0b13156104cc57700100058ba01fb9f96d6cacd4b180917c3d0260801c5b600083660400000000000016600f0b13156104f85770010002c5cc37da9491d0985c348c68e7b30260801c5b600083660200000000000016600f0b1315610524577001000162e525ee054754457d59952920260260801c5b600083660100000000000016600f0b13156105505770010000b17255775c040618bf4a4ade83fc0260801c5b6000836580000000000016600f0b131561057b577001000058b91b5bc9ae2eed81e9b7d4cfab0260801c5b6000836540000000000016600f0b13156105a657700100002c5c89d5ec6ca4d7c8acc017b7c90260801c5b6000836520000000000016600f0b13156105d15770010000162e43f4f831060e02d839a9d16d0260801c5b6000836510000000000016600f0b13156105fc57700100000b1721bcfc99d9f890ea069117630260801c5b6000836508000000000016600f0b13156106275770010000058b90cf1e6d97f9ca14dbcc16280260801c5b6000836504000000000016600f0b1315610652577001000002c5c863b73f016468f6bac5ca2b0260801c5b6000836502000000000016600f0b131561067d57700100000162e430e5a18f6119e3c02282a50260801c5b6000836501000000000016600f0b13156106a8577001000000b1721835514b86e6d96efd1bfe0260801c5b60008364800000000016600f0b13156106d257700100000058b90c0b48c6be5df846c5b2ef0260801c5b60008364400000000016600f0b13156106fc5770010000002c5c8601cc6b9e94213c72737a0260801c5b60008364200000000016600f0b1315610726577001000000162e42fff037df38aa2b219f060260801c5b60008364100000000016600f0b13156107505770010000000b17217fba9c739aa5819f44f90260801c5b60008364080000000016600f0b131561077a577001000000058b90bfcdee5acd3c1cedc8230260801c5b60008364040000000016600f0b13156107a457700100000002c5c85fe31f35a6a30da1be500260801c5b60008364020000000016600f0b13156107ce5770010000000162e42ff0999ce3541b9fffcf0260801c5b60008364010000000016600f0b13156107f857700100000000b17217f80f4ef5aadda455540260801c5b600083638000000016600f0b13156108215770010000000058b90bfbf8479bd5a81b51ad0260801c5b600083634000000016600f0b131561084a577001000000002c5c85fdf84bd62ae30a74cc0260801c5b600083632000000016600f0b131561087357700100000000162e42fefb2fed257559bdaa0260801c5b600083631000000016600f0b131561089c577001000000000b17217f7d5a7716bba4a9ae0260801c5b600083630800000016600f0b13156108c557700100000000058b90bfbe9ddbac5e109cce0260801c5b600083630400000016600f0b13156108ee5770010000000002c5c85fdf4b15de6f17eb0d0260801c5b600083630200000016600f0b1315610917577001000000000162e42fefa494f1478fde050260801c5b600083630100000016600f0b13156109405770010000000000b17217f7d20cf927c8e94c0260801c5b6000836280000016600f0b1315610968577001000000000058b90bfbe8f71cb4e4b33d0260801c5b6000836240000016600f0b131561099057700100000000002c5c85fdf477b662b269450260801c5b6000836220000016600f0b13156109b85770010000000000162e42fefa3ae53369388c0260801c5b6000836210000016600f0b13156109e057700100000000000b17217f7d1d351a389d400260801c5b6000836208000016600f0b1315610a085770010000000000058b90bfbe8e8b2d3d4ede0260801c5b6000836204000016600f0b1315610a30577001000000000002c5c85fdf4741bea6e77e0260801c5b6000836202000016600f0b1315610a5857700100000000000162e42fefa39fe95583c20260801c5b6000836201000016600f0b1315610a80577001000000000000b17217f7d1cfb72b45e10260801c5b60008361800016600f0b1315610aa757700100000000000058b90bfbe8e7cc35c3f00260801c5b60008361400016600f0b1315610ace5770010000000000002c5c85fdf473e242ea380260801c5b60008361200016600f0b1315610af5577001000000000000162e42fefa39f02b772c0260801c5b60008361100016600f0b1315610b1c5770010000000000000b17217f7d1cf7d83c1a0260801c5b60008361080016600f0b1315610b43577001000000000000058b90bfbe8e7bdcbe2e0260801c5b60008361040016600f0b1315610b6a57700100000000000002c5c85fdf473dea871f0260801c5b60008361020016600f0b1315610b915770010000000000000162e42fefa39ef44d910260801c5b60008361010016600f0b1315610bb857700100000000000000b17217f7d1cf79e9490260801c5b600083608016600f0b1315610bde5770010000000000000058b90bfbe8e7bce5440260801c5b600083604016600f0b1315610c04577001000000000000002c5c85fdf473de6eca0260801c5b600083602016600f0b1315610c2a57700100000000000000162e42fefa39ef366f0260801c5b600083601016600f0b1315610c50577001000000000000000b17217f7d1cf79afa0260801c5b600083600816600f0b1315610c7657700100000000000000058b90bfbe8e7bcd6d0260801c5b600083600416600f0b1315610c9c5770010000000000000002c5c85fdf473de6b20260801c5b600083600216600f0b1315610cc2577001000000000000000162e42fefa39ef3580260801c5b600083600116600f0b1315610ce85770010000000000000000b17217f7d1cf79ab0260801c5b600f83810b60401d603f03900b1c6f7fffffffffffffffffffffffffffffff811115610d1357600080fd5b92915050565b600081610d6d576040805162461bcd60e51b815260206004820152600860248201527f444956552d494e46000000000000000000000000000000000000000000000000604482015290519081900360640190fd5b6000610d798484610df9565b90506f7fffffffffffffffffffffffffffffff6fffffffffffffffffffffffffffffffff82161115610df2576040805162461bcd60e51b815260206004820152600760248201527f444956552d4f4600000000000000000000000000000000000000000000000000604482015290519081900360640190fd5b9392505050565b600081610e0557600080fd5b600077ffffffffffffffffffffffffffffffffffffffffffffffff8411610e3b5782604085901b81610e3357fe5b049050610f9a565b60c084811c6401000000008110610e54576020918201911c5b620100008110610e66576010918201911c5b6101008110610e77576008918201911c5b60108110610e87576004918201911c5b60048110610e97576002918201911c5b60028110610ea6576001820191505b60bf820360018603901c6001018260ff0387901b81610ec157fe5b0492506fffffffffffffffffffffffffffffffff831115610f29576040805162461bcd60e51b815260206004820152600960248201527f44495655552d4f46310000000000000000000000000000000000000000000000604482015290519081900360640190fd5b608085901c83026fffffffffffffffffffffffffffffffff8616840260c088901c604089901b82811015610f5e576001820391505b608084901b92900382811015610f75576001820391505b829003608084901c8214610f8557fe5b888181610f8e57fe5b04870196505050505050505b6fffffffffffffffffffffffffffffffff811115610df2576040805162461bcd60e51b815260206004820152600960248201527f44495655552d4f46320000000000000000000000000000000000000000000000604482015290519081900360640190fdfea264697066735822122040574cb227dea1d1a5db4fb4ab0552095e5133a47a8b45993e447ebd0471743a64736f6c63430007060033

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.