ETH Price: $3,261.80 (+2.68%)
Gas: 2 Gwei

Contract

0xD4C62eE43cf0642D82ef1Bf6b792D6fb3311a61b
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
0x60806040186807632023-11-30 0:11:47239 days ago1701303107IN
 Contract Creation
0 ETH0.0439587233.26899367

Advanced mode:
Parent Transaction Hash Block From To
View All Internal Transactions
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x12a5759c...832B33073
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
Slartibartfast

Compiler Version
v0.8.23+commit.f704f362

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2023-11-30
*/

// SPDX-License-Identifier: MIT

//
// https://groq.com/hey-elon-its-time-to-cease-de-grok/
// 

// No tax. Just a good old fashioned safu meme jobbo.

pragma solidity ^0.8.23;
contract Slartibartfast {
    mapping(address => uint256) private _balances;

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

    uint8 private _decimals = 18;
    uint256 private _totalSupply = 1000000000*10**18; //1 billion
    uint256 public _maxWallet = _totalSupply/100;
    address public pairAddress;

    string private _name;
    string private _symbol;
    bool pairAddressSet = false;

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

    constructor() {
        _name = "Slartibartfast";
        _symbol = "Slart";
        _balances[msg.sender] = _totalSupply;
    }

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

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

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

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

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

    function transfer(address to, uint256 amount) public virtual returns (bool) {

        address owner = msg.sender;
        _transfer(owner, to, amount);
        return true;
    }

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

    function approve(address spender, uint256 amount) public virtual returns (bool) {
        address owner = msg.sender;
        _approve(owner, spender, amount);
        return true;
    }
    function transferFrom(address from, address to, uint256 amount) public virtual returns (bool) {
        address spender = msg.sender;
        _spendAllowance(from, spender, amount);
        
        _transfer(from, to, amount);
        return true;
    }

    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = msg.sender;
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = msg.sender;
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    function _transfer(address from, address to, uint256 amount) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        if (to != pairAddress){
            require((_balances[to] += amount) <= _maxWallet, 'Max wallet');
        }
        uint256 fromBalance = _balances[from];

        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);
    }

    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

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

    function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    function setPairAddress(address _pairAddress) public {
        require(!pairAddressSet);
        pairAddress = _pairAddress;
        pairAddressSet = true;
    }
}

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":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pairAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_pairAddress","type":"address"}],"name":"setPairAddress","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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

Deployed Bytecode

0x608060405234801561000f575f80fd5b50600436106100e8575f3560e01c806382247ec01161008a578063a457c2d711610064578063a457c2d71461025e578063a8b089821461028e578063a9059cbb146102ac578063dd62ed3e146102dc576100e8565b806382247ec01461020657806395d89b4114610224578063a22d483214610242576100e8565b806323b872dd116100c657806323b872dd14610158578063313ce5671461018857806339509351146101a657806370a08231146101d6576100e8565b806306fdde03146100ec578063095ea7b31461010a57806318160ddd1461013a575b5f80fd5b6100f461030c565b6040516101019190610cc3565b60405180910390f35b610124600480360381019061011f9190610d74565b61039c565b6040516101319190610dcc565b60405180910390f35b6101426103b7565b60405161014f9190610df4565b60405180910390f35b610172600480360381019061016d9190610e0d565b6103c0565b60405161017f9190610dcc565b60405180910390f35b6101906103e7565b60405161019d9190610e78565b60405180910390f35b6101c060048036038101906101bb9190610d74565b6103fc565b6040516101cd9190610dcc565b60405180910390f35b6101f060048036038101906101eb9190610e91565b61042b565b6040516101fd9190610df4565b60405180910390f35b61020e610470565b60405161021b9190610df4565b60405180910390f35b61022c610476565b6040516102399190610cc3565b60405180910390f35b61025c60048036038101906102579190610e91565b610506565b005b61027860048036038101906102739190610d74565b61057b565b6040516102859190610dcc565b60405180910390f35b6102966105e9565b6040516102a39190610ecb565b60405180910390f35b6102c660048036038101906102c19190610d74565b61060e565b6040516102d39190610dcc565b60405180910390f35b6102f660048036038101906102f19190610ee4565b610629565b6040516103039190610df4565b60405180910390f35b60606006805461031b90610f4f565b80601f016020809104026020016040519081016040528092919081815260200182805461034790610f4f565b80156103925780601f1061036957610100808354040283529160200191610392565b820191905f5260205f20905b81548152906001019060200180831161037557829003601f168201915b5050505050905090565b5f803390506103ac8185856106ab565b600191505092915050565b5f600354905090565b5f803390506103d085828561086e565b6103db8585856108f9565b60019150509392505050565b5f60025f9054906101000a900460ff16905090565b5f803390506104208185856104118589610629565b61041b9190610fac565b6106ab565b600191505092915050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b60045481565b60606007805461048590610f4f565b80601f01602080910402602001604051908101604052809291908181526020018280546104b190610f4f565b80156104fc5780601f106104d3576101008083540402835291602001916104fc565b820191905f5260205f20905b8154815290600101906020018083116104df57829003601f168201915b5050505050905090565b60085f9054906101000a900460ff161561051e575f80fd5b8060055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600160085f6101000a81548160ff02191690831515021790555050565b5f803390505f61058b8286610629565b9050838110156105d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105c79061104f565b60405180910390fd5b6105dd82868684036106ab565b60019250505092915050565b60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f8033905061061e8185856108f9565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610719576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610710906110dd565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610787576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077e9061116b565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516108619190610df4565b60405180910390a3505050565b5f6108798484610629565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146108f357818110156108e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108dc906111d3565b60405180910390fd5b6108f284848484036106ab565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610967576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095e90611261565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109cc906112ef565b60405180910390fd5b60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614610abf57600454815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610a779190610fac565b9250508190551115610abe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab590611357565b60405180910390fd5b5b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610b42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b39906113e5565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c2b9190610df4565b60405180910390a350505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610c70578082015181840152602081019050610c55565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610c9582610c39565b610c9f8185610c43565b9350610caf818560208601610c53565b610cb881610c7b565b840191505092915050565b5f6020820190508181035f830152610cdb8184610c8b565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610d1082610ce7565b9050919050565b610d2081610d06565b8114610d2a575f80fd5b50565b5f81359050610d3b81610d17565b92915050565b5f819050919050565b610d5381610d41565b8114610d5d575f80fd5b50565b5f81359050610d6e81610d4a565b92915050565b5f8060408385031215610d8a57610d89610ce3565b5b5f610d9785828601610d2d565b9250506020610da885828601610d60565b9150509250929050565b5f8115159050919050565b610dc681610db2565b82525050565b5f602082019050610ddf5f830184610dbd565b92915050565b610dee81610d41565b82525050565b5f602082019050610e075f830184610de5565b92915050565b5f805f60608486031215610e2457610e23610ce3565b5b5f610e3186828701610d2d565b9350506020610e4286828701610d2d565b9250506040610e5386828701610d60565b9150509250925092565b5f60ff82169050919050565b610e7281610e5d565b82525050565b5f602082019050610e8b5f830184610e69565b92915050565b5f60208284031215610ea657610ea5610ce3565b5b5f610eb384828501610d2d565b91505092915050565b610ec581610d06565b82525050565b5f602082019050610ede5f830184610ebc565b92915050565b5f8060408385031215610efa57610ef9610ce3565b5b5f610f0785828601610d2d565b9250506020610f1885828601610d2d565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680610f6657607f821691505b602082108103610f7957610f78610f22565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f610fb682610d41565b9150610fc183610d41565b9250828201905080821115610fd957610fd8610f7f565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f611039602583610c43565b915061104482610fdf565b604082019050919050565b5f6020820190508181035f8301526110668161102d565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6110c7602483610c43565b91506110d28261106d565b604082019050919050565b5f6020820190508181035f8301526110f4816110bb565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611155602283610c43565b9150611160826110fb565b604082019050919050565b5f6020820190508181035f83015261118281611149565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f6111bd601d83610c43565b91506111c882611189565b602082019050919050565b5f6020820190508181035f8301526111ea816111b1565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f61124b602583610c43565b9150611256826111f1565b604082019050919050565b5f6020820190508181035f8301526112788161123f565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6112d9602383610c43565b91506112e48261127f565b604082019050919050565b5f6020820190508181035f830152611306816112cd565b9050919050565b7f4d61782077616c6c6574000000000000000000000000000000000000000000005f82015250565b5f611341600a83610c43565b915061134c8261130d565b602082019050919050565b5f6020820190508181035f83015261136e81611335565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6113cf602683610c43565b91506113da82611375565b604082019050919050565b5f6020820190508181035f8301526113fc816113c3565b905091905056fea264697066735822122090aa83a53d9d7d0797b3496ba6bbe49e7d24065035e60312536cbf23fbf1012964736f6c63430008170033

Deployed Bytecode Sourcemap

186:4554:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;931:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1807:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1232:99;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2003:260;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1133:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2271:236;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1339:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;449:44;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1030:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4572:165;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2513:434;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;500:26;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1465:184;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1657:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;931:91;976:13;1009:5;1002:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;931:91;:::o;1807:190::-;1881:4;1898:13;1914:10;1898:26;;1935:32;1944:5;1951:7;1960:6;1935:8;:32::i;:::-;1985:4;1978:11;;;1807:190;;;;:::o;1232:99::-;1284:7;1311:12;;1304:19;;1232:99;:::o;2003:260::-;2091:4;2108:15;2126:10;2108:28;;2147:38;2163:4;2169:7;2178:6;2147:15;:38::i;:::-;2206:27;2216:4;2222:2;2226:6;2206:9;:27::i;:::-;2251:4;2244:11;;;2003:260;;;;;:::o;1133:91::-;1182:5;1207:9;;;;;;;;;;;1200:16;;1133:91;:::o;2271:236::-;2359:4;2376:13;2392:10;2376:26;;2413:64;2422:5;2429:7;2466:10;2438:25;2448:5;2455:7;2438:9;:25::i;:::-;:38;;;;:::i;:::-;2413:8;:64::i;:::-;2495:4;2488:11;;;2271:236;;;;:::o;1339:118::-;1404:7;1431:9;:18;1441:7;1431:18;;;;;;;;;;;;;;;;1424:25;;1339:118;;;:::o;449:44::-;;;;:::o;1030:95::-;1077:13;1110:7;1103:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1030:95;:::o;4572:165::-;4645:14;;;;;;;;;;;4644:15;4636:24;;;;;;4685:12;4671:11;;:26;;;;;;;;;;;;;;;;;;4725:4;4708:14;;:21;;;;;;;;;;;;;;;;;;4572:165;:::o;2513:434::-;2606:4;2623:13;2639:10;2623:26;;2660:24;2687:25;2697:5;2704:7;2687:9;:25::i;:::-;2660:52;;2751:15;2731:16;:35;;2723:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;2844:60;2853:5;2860:7;2888:15;2869:16;:34;2844:8;:60::i;:::-;2935:4;2928:11;;;;2513:434;;;;:::o;500:26::-;;;;;;;;;;;;;:::o;1465:184::-;1535:4;1554:13;1570:10;1554:26;;1591:28;1601:5;1608:2;1612:6;1591:9;:28::i;:::-;1637:4;1630:11;;;1465:184;;;;:::o;1657:142::-;1737:7;1764:11;:18;1776:5;1764:18;;;;;;;;;;;;;;;:27;1783:7;1764:27;;;;;;;;;;;;;;;;1757:34;;1657:142;;;;:::o;3791:346::-;3910:1;3893:19;;:5;:19;;;3885:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3991:1;3972:21;;:7;:21;;;3964:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4075:6;4045:11;:18;4057:5;4045:18;;;;;;;;;;;;;;;:27;4064:7;4045:27;;;;;;;;;;;;;;;:36;;;;4113:7;4097:32;;4106:5;4097:32;;;4122:6;4097:32;;;;;;:::i;:::-;;;;;;;;3791:346;;;:::o;4145:419::-;4246:24;4273:25;4283:5;4290:7;4273:9;:25::i;:::-;4246:52;;4333:17;4313:16;:37;4309:248;;4395:6;4375:16;:26;;4367:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4479:51;4488:5;4495:7;4523:6;4504:16;:25;4479:8;:51::i;:::-;4309:248;4235:329;4145:419;;;:::o;2955:828::-;3068:1;3052:18;;:4;:18;;;3044:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3145:1;3131:16;;:2;:16;;;3123:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;3210:11;;;;;;;;;;;3204:17;;:2;:17;;;3200:111;;3274:10;;3263:6;3246:9;:13;3256:2;3246:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;3245:39;;3237:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;3200:111;3321:19;3343:9;:15;3353:4;3343:15;;;;;;;;;;;;;;;;3321:37;;3394:6;3379:11;:21;;3371:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;3511:6;3497:11;:20;3479:9;:15;3489:4;3479:15;;;;;;;;;;;;;;;:38;;;;3714:6;3697:9;:13;3707:2;3697:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;3764:2;3749:26;;3758:4;3749:26;;;3768:6;3749:26;;;;;;:::i;:::-;;;;;;;;3033:750;2955:828;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:118::-;5275:24;5293:5;5275:24;:::i;:::-;5270:3;5263:37;5188:118;;:::o;5312:222::-;5405:4;5443:2;5432:9;5428:18;5420:26;;5456:71;5524:1;5513:9;5509:17;5500:6;5456:71;:::i;:::-;5312:222;;;;:::o;5540:474::-;5608:6;5616;5665:2;5653:9;5644:7;5640:23;5636:32;5633:119;;;5671:79;;:::i;:::-;5633:119;5791:1;5816:53;5861:7;5852:6;5841:9;5837:22;5816:53;:::i;:::-;5806:63;;5762:117;5918:2;5944:53;5989:7;5980:6;5969:9;5965:22;5944:53;:::i;:::-;5934:63;;5889:118;5540:474;;;;;:::o;6020:180::-;6068:77;6065:1;6058:88;6165:4;6162:1;6155:15;6189:4;6186:1;6179:15;6206:320;6250:6;6287:1;6281:4;6277:12;6267:22;;6334:1;6328:4;6324:12;6355:18;6345:81;;6411:4;6403:6;6399:17;6389:27;;6345:81;6473:2;6465:6;6462:14;6442:18;6439:38;6436:84;;6492:18;;:::i;:::-;6436:84;6257:269;6206:320;;;:::o;6532:180::-;6580:77;6577:1;6570:88;6677:4;6674:1;6667:15;6701:4;6698:1;6691:15;6718:191;6758:3;6777:20;6795:1;6777:20;:::i;:::-;6772:25;;6811:20;6829:1;6811:20;:::i;:::-;6806:25;;6854:1;6851;6847:9;6840:16;;6875:3;6872:1;6869:10;6866:36;;;6882:18;;:::i;:::-;6866:36;6718:191;;;;:::o;6915:224::-;7055:34;7051:1;7043:6;7039:14;7032:58;7124:7;7119:2;7111:6;7107:15;7100:32;6915:224;:::o;7145:366::-;7287:3;7308:67;7372:2;7367:3;7308:67;:::i;:::-;7301:74;;7384:93;7473:3;7384:93;:::i;:::-;7502:2;7497:3;7493:12;7486:19;;7145:366;;;:::o;7517:419::-;7683:4;7721:2;7710:9;7706:18;7698:26;;7770:9;7764:4;7760:20;7756:1;7745:9;7741:17;7734:47;7798:131;7924:4;7798:131;:::i;:::-;7790:139;;7517:419;;;:::o;7942:223::-;8082:34;8078:1;8070:6;8066:14;8059:58;8151:6;8146:2;8138:6;8134:15;8127:31;7942:223;:::o;8171:366::-;8313:3;8334:67;8398:2;8393:3;8334:67;:::i;:::-;8327:74;;8410:93;8499:3;8410:93;:::i;:::-;8528:2;8523:3;8519:12;8512:19;;8171:366;;;:::o;8543:419::-;8709:4;8747:2;8736:9;8732:18;8724:26;;8796:9;8790:4;8786:20;8782:1;8771:9;8767:17;8760:47;8824:131;8950:4;8824:131;:::i;:::-;8816:139;;8543:419;;;:::o;8968:221::-;9108:34;9104:1;9096:6;9092:14;9085:58;9177:4;9172:2;9164:6;9160:15;9153:29;8968:221;:::o;9195:366::-;9337:3;9358:67;9422:2;9417:3;9358:67;:::i;:::-;9351:74;;9434:93;9523:3;9434:93;:::i;:::-;9552:2;9547:3;9543:12;9536:19;;9195:366;;;:::o;9567:419::-;9733:4;9771:2;9760:9;9756:18;9748:26;;9820:9;9814:4;9810:20;9806:1;9795:9;9791:17;9784:47;9848:131;9974:4;9848:131;:::i;:::-;9840:139;;9567:419;;;:::o;9992:179::-;10132:31;10128:1;10120:6;10116:14;10109:55;9992:179;:::o;10177:366::-;10319:3;10340:67;10404:2;10399:3;10340:67;:::i;:::-;10333:74;;10416:93;10505:3;10416:93;:::i;:::-;10534:2;10529:3;10525:12;10518:19;;10177:366;;;:::o;10549:419::-;10715:4;10753:2;10742:9;10738:18;10730:26;;10802:9;10796:4;10792:20;10788:1;10777:9;10773:17;10766:47;10830:131;10956:4;10830:131;:::i;:::-;10822:139;;10549:419;;;:::o;10974:224::-;11114:34;11110:1;11102:6;11098:14;11091:58;11183:7;11178:2;11170:6;11166:15;11159:32;10974:224;:::o;11204:366::-;11346:3;11367:67;11431:2;11426:3;11367:67;:::i;:::-;11360:74;;11443:93;11532:3;11443:93;:::i;:::-;11561:2;11556:3;11552:12;11545:19;;11204:366;;;:::o;11576:419::-;11742:4;11780:2;11769:9;11765:18;11757:26;;11829:9;11823:4;11819:20;11815:1;11804:9;11800:17;11793:47;11857:131;11983:4;11857:131;:::i;:::-;11849:139;;11576:419;;;:::o;12001:222::-;12141:34;12137:1;12129:6;12125:14;12118:58;12210:5;12205:2;12197:6;12193:15;12186:30;12001:222;:::o;12229:366::-;12371:3;12392:67;12456:2;12451:3;12392:67;:::i;:::-;12385:74;;12468:93;12557:3;12468:93;:::i;:::-;12586:2;12581:3;12577:12;12570:19;;12229:366;;;:::o;12601:419::-;12767:4;12805:2;12794:9;12790:18;12782:26;;12854:9;12848:4;12844:20;12840:1;12829:9;12825:17;12818:47;12882:131;13008:4;12882:131;:::i;:::-;12874:139;;12601:419;;;:::o;13026:160::-;13166:12;13162:1;13154:6;13150:14;13143:36;13026:160;:::o;13192:366::-;13334:3;13355:67;13419:2;13414:3;13355:67;:::i;:::-;13348:74;;13431:93;13520:3;13431:93;:::i;:::-;13549:2;13544:3;13540:12;13533:19;;13192:366;;;:::o;13564:419::-;13730:4;13768:2;13757:9;13753:18;13745:26;;13817:9;13811:4;13807:20;13803:1;13792:9;13788:17;13781:47;13845:131;13971:4;13845:131;:::i;:::-;13837:139;;13564:419;;;:::o;13989:225::-;14129:34;14125:1;14117:6;14113:14;14106:58;14198:8;14193:2;14185:6;14181:15;14174:33;13989:225;:::o;14220:366::-;14362:3;14383:67;14447:2;14442:3;14383:67;:::i;:::-;14376:74;;14459:93;14548:3;14459:93;:::i;:::-;14577:2;14572:3;14568:12;14561:19;;14220:366;;;:::o;14592:419::-;14758:4;14796:2;14785:9;14781:18;14773:26;;14845:9;14839:4;14835:20;14831:1;14820:9;14816:17;14809:47;14873:131;14999:4;14873:131;:::i;:::-;14865:139;;14592:419;;;:::o

Swarm Source

ipfs://90aa83a53d9d7d0797b3496ba6bbe49e7d24065035e60312536cbf23fbf10129

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.