ETH Price: $2,584.26 (-3.00%)

Contract

0x6B0940772516B69088904564A56d09CFe6Bb3D85
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Set Owner121919572021-04-07 9:45:531407 days ago1617788753IN
0x6B094077...Fe6Bb3D85
0 ETH0.0041447139
Set Uint Propert...121064112021-03-25 6:10:321420 days ago1616652632IN
0x6B094077...Fe6Bb3D85
0 ETH0.00805362121.5
Set Uint Propert...121064082021-03-25 6:09:531420 days ago1616652593IN
0x6B094077...Fe6Bb3D85
0 ETH0.00804487121.5
Set Address Prop...121063682021-03-25 6:03:071420 days ago1616652187IN
0x6B094077...Fe6Bb3D85
0 ETH0.00822555121.5
Set Address Prop...121063112021-03-25 5:51:341420 days ago1616651494IN
0x6B094077...Fe6Bb3D85
0 ETH0.00823138121.5
Set Address Prop...121063082021-03-25 5:51:031420 days ago1616651463IN
0x6B094077...Fe6Bb3D85
0 ETH0.00823138121.5
Set Address Prop...121062912021-03-25 5:47:531420 days ago1616651273IN
0x6B094077...Fe6Bb3D85
0 ETH0.00823284121.5
Set Address Prop...121062762021-03-25 5:44:321420 days ago1616651072IN
0x6B094077...Fe6Bb3D85
0 ETH0.00823138121.5
Set Address Prop...121062732021-03-25 5:44:081420 days ago1616651048IN
0x6B094077...Fe6Bb3D85
0 ETH0.00823138121.5
Set Address Prop...121062542021-03-25 5:39:391420 days ago1616650779IN
0x6B094077...Fe6Bb3D85
0 ETH0.0082168121.5
Set Address Prop...121061902021-03-25 5:27:021420 days ago1616650022IN
0x6B094077...Fe6Bb3D85
0 ETH0.00821388121.5
Set Address Prop...121057142021-03-25 3:42:501420 days ago1616643770IN
0x6B094077...Fe6Bb3D85
0 ETH0.00933597138
Set Owner121055872021-03-25 3:11:251420 days ago1616641885IN
0x6B094077...Fe6Bb3D85
0 ETH0.0044745150
Set Address Prop...116653422021-01-16 8:57:081488 days ago1610787428IN
0x6B094077...Fe6Bb3D85
0 ETH0.0014790743.00000156
Set Address Prop...113592852020-11-30 9:21:451535 days ago1606728105IN
0x6B094077...Fe6Bb3D85
0 ETH0.0028408842
Set Uint Propert...112280632020-11-10 5:52:151555 days ago1604987535IN
0x6B094077...Fe6Bb3D85
0 ETH0.0010868233
Set Address Prop...111456002020-10-28 14:12:531568 days ago1603894373IN
0x6B094077...Fe6Bb3D85
0 ETH0.00710346105
Set Uint Propert...111455792020-10-28 14:09:251568 days ago1603894165IN
0x6B094077...Fe6Bb3D85
0 ETH0.00794124120
Set Address Prop...72228662019-02-15 8:54:452189 days ago1550220885IN
0x6B094077...Fe6Bb3D85
0 ETH0.000473227
Set Address Prop...72221842019-02-15 4:52:332189 days ago1550206353IN
0x6B094077...Fe6Bb3D85
0 ETH0.000192125
Set Address Prop...72221242019-02-15 4:33:352189 days ago1550205215IN
0x6B094077...Fe6Bb3D85
0 ETH0.000189565
Set Address Prop...72219642019-02-15 3:44:102189 days ago1550202250IN
0x6B094077...Fe6Bb3D85
0 ETH0.000336745
Set Address Prop...72218842019-02-15 3:15:392189 days ago1550200539IN
0x6B094077...Fe6Bb3D85
0 ETH0.000270674
Set Address Prop...70750222019-01-16 8:27:562219 days ago1547627276IN
0x6B094077...Fe6Bb3D85
0 ETH0.000151654
Set Address Prop...69487812018-12-25 6:41:312241 days ago1545720091IN
0x6B094077...Fe6Bb3D85
0 ETH0.0004541812
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
SettingsRegistry

Compiler Version
v0.4.24+commit.e67f0147

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-03-25
*/

// Dependency file: contracts/interfaces/ISettingsRegistry.sol

// pragma solidity ^0.4.24;

contract ISettingsRegistry {
    enum SettingsValueTypes { NONE, UINT, STRING, ADDRESS, BYTES, BOOL, INT }

    function uintOf(bytes32 _propertyName) public view returns (uint256);

    function stringOf(bytes32 _propertyName) public view returns (string);

    function addressOf(bytes32 _propertyName) public view returns (address);

    function bytesOf(bytes32 _propertyName) public view returns (bytes);

    function boolOf(bytes32 _propertyName) public view returns (bool);

    function intOf(bytes32 _propertyName) public view returns (int);

    function setUintProperty(bytes32 _propertyName, uint _value) public;

    function setStringProperty(bytes32 _propertyName, string _value) public;

    function setAddressProperty(bytes32 _propertyName, address _value) public;

    function setBytesProperty(bytes32 _propertyName, bytes _value) public;

    function setBoolProperty(bytes32 _propertyName, bool _value) public;

    function setIntProperty(bytes32 _propertyName, int _value) public;

    function getValueTypeOf(bytes32 _propertyName) public view returns (uint /* SettingsValueTypes */ );

    event ChangeProperty(bytes32 indexed _propertyName, uint256 _type);
}

// Dependency file: contracts/interfaces/IAuthority.sol

// pragma solidity ^0.4.24;

contract IAuthority {
    function canCall(
        address src, address dst, bytes4 sig
    ) public view returns (bool);
}

// Dependency file: contracts/DSAuth.sol

// pragma solidity ^0.4.24;

// import 'contracts/interfaces/IAuthority.sol';

contract DSAuthEvents {
    event LogSetAuthority (address indexed authority);
    event LogSetOwner     (address indexed owner);
}

/**
 * @title DSAuth
 * @dev The DSAuth contract is reference implement of https://github.com/dapphub/ds-auth
 * But in the isAuthorized method, the src from address(this) is remove for safty concern.
 */
contract DSAuth is DSAuthEvents {
    IAuthority   public  authority;
    address      public  owner;

    constructor() public {
        owner = msg.sender;
        emit LogSetOwner(msg.sender);
    }

    function setOwner(address owner_)
        public
        auth
    {
        owner = owner_;
        emit LogSetOwner(owner);
    }

    function setAuthority(IAuthority authority_)
        public
        auth
    {
        authority = authority_;
        emit LogSetAuthority(authority);
    }

    modifier auth {
        require(isAuthorized(msg.sender, msg.sig));
        _;
    }

    modifier onlyOwner() {
        require(msg.sender == owner);
        _;
    }

    function isAuthorized(address src, bytes4 sig) internal view returns (bool) {
        if (src == owner) {
            return true;
        } else if (authority == IAuthority(0)) {
            return false;
        } else {
            return authority.canCall(src, this, sig);
        }
    }
}


// Root file: contracts/SettingsRegistry.sol

pragma solidity ^0.4.24;

// import "contracts/interfaces/ISettingsRegistry.sol";
// import "contracts/DSAuth.sol";

/**
 * @title SettingsRegistry
 * @dev This contract holds all the settings for updating and querying.
 */
contract SettingsRegistry is ISettingsRegistry, DSAuth {

    mapping(bytes32 => uint256) public uintProperties;
    mapping(bytes32 => string) public stringProperties;
    mapping(bytes32 => address) public addressProperties;
    mapping(bytes32 => bytes) public bytesProperties;
    mapping(bytes32 => bool) public boolProperties;
    mapping(bytes32 => int256) public intProperties;

    mapping(bytes32 => SettingsValueTypes) public valueTypes;

    function uintOf(bytes32 _propertyName) public view returns (uint256) {
        require(valueTypes[_propertyName] == SettingsValueTypes.UINT, "Property type does not match.");
        return uintProperties[_propertyName];
    }

    function stringOf(bytes32 _propertyName) public view returns (string) {
        require(valueTypes[_propertyName] == SettingsValueTypes.STRING, "Property type does not match.");
        return stringProperties[_propertyName];
    }

    function addressOf(bytes32 _propertyName) public view returns (address) {
        require(valueTypes[_propertyName] == SettingsValueTypes.ADDRESS, "Property type does not match.");
        return addressProperties[_propertyName];
    }

    function bytesOf(bytes32 _propertyName) public view returns (bytes) {
        require(valueTypes[_propertyName] == SettingsValueTypes.BYTES, "Property type does not match.");
        return bytesProperties[_propertyName];
    }

    function boolOf(bytes32 _propertyName) public view returns (bool) {
        require(valueTypes[_propertyName] == SettingsValueTypes.BOOL, "Property type does not match.");
        return boolProperties[_propertyName];
    }

    function intOf(bytes32 _propertyName) public view returns (int) {
        require(valueTypes[_propertyName] == SettingsValueTypes.INT, "Property type does not match.");
        return intProperties[_propertyName];
    }

    function setUintProperty(bytes32 _propertyName, uint _value) public auth {
        require(
            valueTypes[_propertyName] == SettingsValueTypes.NONE || valueTypes[_propertyName] == SettingsValueTypes.UINT, "Property type does not match.");
        uintProperties[_propertyName] = _value;
        valueTypes[_propertyName] = SettingsValueTypes.UINT;

        emit ChangeProperty(_propertyName, uint256(SettingsValueTypes.UINT));
    }

    function setStringProperty(bytes32 _propertyName, string _value) public auth {
        require(
            valueTypes[_propertyName] == SettingsValueTypes.NONE || valueTypes[_propertyName] == SettingsValueTypes.STRING, "Property type does not match.");
        stringProperties[_propertyName] = _value;
        valueTypes[_propertyName] = SettingsValueTypes.STRING;

        emit ChangeProperty(_propertyName, uint256(SettingsValueTypes.STRING));
    }

    function setAddressProperty(bytes32 _propertyName, address _value) public auth {
        require(
            valueTypes[_propertyName] == SettingsValueTypes.NONE || valueTypes[_propertyName] == SettingsValueTypes.ADDRESS, "Property type does not match.");

        addressProperties[_propertyName] = _value;
        valueTypes[_propertyName] = SettingsValueTypes.ADDRESS;

        emit ChangeProperty(_propertyName, uint256(SettingsValueTypes.ADDRESS));
    }

    function setBytesProperty(bytes32 _propertyName, bytes _value) public auth {
        require(
            valueTypes[_propertyName] == SettingsValueTypes.NONE || valueTypes[_propertyName] == SettingsValueTypes.BYTES, "Property type does not match.");

        bytesProperties[_propertyName] = _value;
        valueTypes[_propertyName] = SettingsValueTypes.BYTES;

        emit ChangeProperty(_propertyName, uint256(SettingsValueTypes.BYTES));
    }

    function setBoolProperty(bytes32 _propertyName, bool _value) public auth {
        require(
            valueTypes[_propertyName] == SettingsValueTypes.NONE || valueTypes[_propertyName] == SettingsValueTypes.BOOL, "Property type does not match.");

        boolProperties[_propertyName] = _value;
        valueTypes[_propertyName] = SettingsValueTypes.BOOL;

        emit ChangeProperty(_propertyName, uint256(SettingsValueTypes.BOOL));
    }

    function setIntProperty(bytes32 _propertyName, int _value) public auth {
        require(
            valueTypes[_propertyName] == SettingsValueTypes.NONE || valueTypes[_propertyName] == SettingsValueTypes.INT, "Property type does not match.");

        intProperties[_propertyName] = _value;
        valueTypes[_propertyName] = SettingsValueTypes.INT;

        emit ChangeProperty(_propertyName, uint256(SettingsValueTypes.INT));
    }

    function getValueTypeOf(bytes32 _propertyName) public view returns (uint256 /* SettingsValueTypes */ ) {
        return uint256(valueTypes[_propertyName]);
    }

}

Contract Security Audit

Contract ABI

[{"constant":false,"inputs":[{"name":"_propertyName","type":"bytes32"},{"name":"_value","type":"uint256"}],"name":"setUintProperty","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_propertyName","type":"bytes32"}],"name":"bytesOf","outputs":[{"name":"","type":"bytes"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"owner_","type":"address"}],"name":"setOwner","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"bytes32"}],"name":"addressProperties","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"bytes32"}],"name":"valueTypes","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_propertyName","type":"bytes32"}],"name":"uintOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_propertyName","type":"bytes32"},{"name":"_value","type":"bytes"}],"name":"setBytesProperty","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_propertyName","type":"bytes32"},{"name":"_value","type":"bool"}],"name":"setBoolProperty","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"bytes32"}],"name":"boolProperties","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_propertyName","type":"bytes32"},{"name":"_value","type":"int256"}],"name":"setIntProperty","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"authority_","type":"address"}],"name":"setAuthority","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_propertyName","type":"bytes32"}],"name":"intOf","outputs":[{"name":"","type":"int256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_propertyName","type":"bytes32"},{"name":"_value","type":"address"}],"name":"setAddressProperty","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_propertyName","type":"bytes32"}],"name":"boolOf","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"bytes32"}],"name":"bytesProperties","outputs":[{"name":"","type":"bytes"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"bytes32"}],"name":"intProperties","outputs":[{"name":"","type":"int256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_propertyName","type":"bytes32"}],"name":"addressOf","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_propertyName","type":"bytes32"}],"name":"stringOf","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"authority","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_propertyName","type":"bytes32"}],"name":"getValueTypeOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_propertyName","type":"bytes32"},{"name":"_value","type":"string"}],"name":"setStringProperty","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"bytes32"}],"name":"uintProperties","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"bytes32"}],"name":"stringProperties","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"anonymous":false,"inputs":[{"indexed":true,"name":"authority","type":"address"}],"name":"LogSetAuthority","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"}],"name":"LogSetOwner","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_propertyName","type":"bytes32"},{"indexed":false,"name":"_type","type":"uint256"}],"name":"ChangeProperty","type":"event"}]

6080604081905260018054600160a060020a03191633908117909155907fce241d7ca1f669fee44b6fc00b8eba2df3bb514eed0f6f668f8f89096e81ed9490600090a2611347806100516000396000f30060806040526004361061013d5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166303eac5058114610142578063047bba4e1461015f57806313af4035146101ec57806313b3d1501461020d5780632b8749d91461024157806332ee4faa1461027d57806333184f0f146102a757806369260fae146103055780637212886b1461032257806375bfe4731461034e5780637a9e5e4b146103695780637c2ab67a1461038a5780638140d1e4146103a25780638b61c90f146103c65780638da5cb5b146103de5780638f79f3be146103f35780639161af3e1461040b578063bb34534c14610423578063be64772c1461043b578063bf7e214f14610453578063bf8457e714610468578063d307b66714610480578063dd62d4fa146104de578063f80be67f146104f6575b600080fd5b34801561014e57600080fd5b5061015d60043560243561050e565b005b34801561016b57600080fd5b50610177600435610609565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101b1578181015183820152602001610199565b50505050905090810190601f1680156101de5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101f857600080fd5b5061015d600160a060020a036004351661070c565b34801561021957600080fd5b5061022560043561078a565b60408051600160a060020a039092168252519081900360200190f35b34801561024d57600080fd5b506102596004356107a5565b6040518082600681111561026957fe5b60ff16815260200191505060405180910390f35b34801561028957600080fd5b506102956004356107ba565b60408051918252519081900360200190f35b3480156102b357600080fd5b5060408051602060046024803582810135601f810185900485028601850190965285855261015d9583359536956044949193909101919081908401838280828437509497506108319650505050505050565b34801561031157600080fd5b5061015d600435602435151561092e565b34801561032e57600080fd5b5061033a600435610a25565b604080519115158252519081900360200190f35b34801561035a57600080fd5b5061015d600435602435610a3a565b34801561037557600080fd5b5061015d600160a060020a0360043516610b24565b34801561039657600080fd5b50610295600435610b9e565b3480156103ae57600080fd5b5061015d600435600160a060020a0360243516610c15565b3480156103d257600080fd5b5061033a600435610d26565b3480156103ea57600080fd5b50610225610da0565b3480156103ff57600080fd5b50610177600435610daf565b34801561041757600080fd5b50610295600435610e4a565b34801561042f57600080fd5b50610225600435610e5c565b34801561044757600080fd5b50610177600435610edc565b34801561045f57600080fd5b50610225610fa8565b34801561047457600080fd5b50610295600435610fb7565b34801561048c57600080fd5b5060408051602060046024803582810135601f810185900485028601850190965285855261015d958335953695604494919390910191908190840183828082843750949750610fda9650505050505050565b3480156104ea57600080fd5b506102956004356110d7565b34801561050257600080fd5b506101776004356110e9565b61052433600035600160e060020a031916611151565b151561052f57600080fd5b60008281526008602052604081205460ff16600681111561054c57fe5b14806105745750600160008381526008602052604090205460ff16600681111561057257fe5b145b15156105b8576040805160e560020a62461bcd02815260206004820152601d60248201526000805160206112dc833981519152604482015290519081900360640190fd5b600082815260026020908152604080832084905560089091529020805460ff1916600190811790915582906000805160206112fc833981519152905b60408051918252519081900360200190a25050565b6060600460008381526008602052604090205460ff16600681111561062a57fe5b1461066d576040805160e560020a62461bcd02815260206004820152601d60248201526000805160206112dc833981519152604482015290519081900360640190fd5b60008281526005602090815260409182902080548351601f6002610100600185161502600019019093169290920491820184900484028101840190945280845290918301828280156107005780601f106106d557610100808354040283529160200191610700565b820191906000526020600020905b8154815290600101906020018083116106e357829003601f168201915b50505050509050919050565b61072233600035600160e060020a031916611151565b151561072d57600080fd5b6001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383811691909117918290556040519116907fce241d7ca1f669fee44b6fc00b8eba2df3bb514eed0f6f668f8f89096e81ed9490600090a250565b600460205260009081526040902054600160a060020a031681565b60086020526000908152604090205460ff1681565b6000600160008381526008602052604090205460ff1660068111156107db57fe5b1461081e576040805160e560020a62461bcd02815260206004820152601d60248201526000805160206112dc833981519152604482015290519081900360640190fd5b5060009081526002602052604090205490565b61084733600035600160e060020a031916611151565b151561085257600080fd5b60008281526008602052604081205460ff16600681111561086f57fe5b14806108975750600460008381526008602052604090205460ff16600681111561089557fe5b145b15156108db576040805160e560020a62461bcd02815260206004820152601d60248201526000805160206112dc833981519152604482015290519081900360640190fd5b600082815260056020908152604090912082516108fa92840190611240565b506000828152600860205260409020805460ff1916600490811790915582906000805160206112fc833981519152906105f4565b61094433600035600160e060020a031916611151565b151561094f57600080fd5b60008281526008602052604081205460ff16600681111561096c57fe5b14806109945750600560008381526008602052604090205460ff16600681111561099257fe5b145b15156109d8576040805160e560020a62461bcd02815260206004820152601d60248201526000805160206112dc833981519152604482015290519081900360640190fd5b6000828152600660209081526040808320805485151560ff199182161790915560089092529091208054600592166001830217905550816000805160206112fc83398151915260056105f4565b60066020526000908152604090205460ff1681565b610a5033600035600160e060020a031916611151565b1515610a5b57600080fd5b60008281526008602052604081205460ff166006811115610a7857fe5b1480610aa05750600660008381526008602052604090205460ff166006811115610a9e57fe5b145b1515610ae4576040805160e560020a62461bcd02815260206004820152601d60248201526000805160206112dc833981519152604482015290519081900360640190fd5b600082815260076020908152604080832084905560089091529020805460ff1916600690811790915582906000805160206112fc833981519152906105f4565b610b3a33600035600160e060020a031916611151565b1515610b4557600080fd5b6000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03838116919091178083556040519116917f1abebea81bfa2637f28358c371278fb15ede7ea8dd28d2e03b112ff6d936ada491a250565b6000600660008381526008602052604090205460ff166006811115610bbf57fe5b14610c02576040805160e560020a62461bcd02815260206004820152601d60248201526000805160206112dc833981519152604482015290519081900360640190fd5b5060009081526007602052604090205490565b610c2b33600035600160e060020a031916611151565b1515610c3657600080fd5b60008281526008602052604081205460ff166006811115610c5357fe5b1480610c7b5750600360008381526008602052604090205460ff166006811115610c7957fe5b145b1515610cbf576040805160e560020a62461bcd02815260206004820152601d60248201526000805160206112dc833981519152604482015290519081900360640190fd5b6000828152600460209081526040808320805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0386161790556008909152902080546003919060ff19166001830217905550816000805160206112fc83398151915260036105f4565b6000600560008381526008602052604090205460ff166006811115610d4757fe5b14610d8a576040805160e560020a62461bcd02815260206004820152601d60248201526000805160206112dc833981519152604482015290519081900360640190fd5b5060009081526006602052604090205460ff1690565b600154600160a060020a031681565b60056020908152600091825260409182902080548351601f600260001961010060018616150201909316929092049182018490048402810184019094528084529091830182828015610e425780601f10610e1757610100808354040283529160200191610e42565b820191906000526020600020905b815481529060010190602001808311610e2557829003601f168201915b505050505081565b60076020526000908152604090205481565b6000600360008381526008602052604090205460ff166006811115610e7d57fe5b14610ec0576040805160e560020a62461bcd02815260206004820152601d60248201526000805160206112dc833981519152604482015290519081900360640190fd5b50600090815260046020526040902054600160a060020a031690565b6060600260008381526008602052604090205460ff166006811115610efd57fe5b14610f40576040805160e560020a62461bcd02815260206004820152601d60248201526000805160206112dc833981519152604482015290519081900360640190fd5b60008281526003602090815260409182902080548351601f6002610100600185161502600019019093169290920491820184900484028101840190945280845290918301828280156107005780601f106106d557610100808354040283529160200191610700565b600054600160a060020a031681565b60008181526008602052604081205460ff166006811115610fd457fe5b92915050565b610ff033600035600160e060020a031916611151565b1515610ffb57600080fd5b60008281526008602052604081205460ff16600681111561101857fe5b14806110405750600260008381526008602052604090205460ff16600681111561103e57fe5b145b1515611084576040805160e560020a62461bcd02815260206004820152601d60248201526000805160206112dc833981519152604482015290519081900360640190fd5b600082815260036020908152604090912082516110a392840190611240565b506000828152600860205260409020805460ff1916600290811790915582906000805160206112fc833981519152906105f4565b60026020526000908152604090205481565b60036020908152600091825260409182902080548351601f600260001961010060018616150201909316929092049182018490048402810184019094528084529091830182828015610e425780601f10610e1757610100808354040283529160200191610e42565b600154600090600160a060020a038481169116141561117257506001610fd4565b600054600160a060020a0316151561118c57506000610fd4565b60008054604080517fb7009613000000000000000000000000000000000000000000000000000000008152600160a060020a038781166004830152306024830152600160e060020a0319871660448301529151919092169263b700961392606480820193602093909283900390910190829087803b15801561120d57600080fd5b505af1158015611221573d6000803e3d6000fd5b505050506040513d602081101561123757600080fd5b50519392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061128157805160ff19168380011785556112ae565b828001600101855582156112ae579182015b828111156112ae578251825591602001919060010190611293565b506112ba9291506112be565b5090565b6112d891905b808211156112ba57600081556001016112c4565b90560050726f7065727479207479706520646f6573206e6f74206d617463682e0000007ac24b47be338e87607d378d7ee0d4369c3d98245b29326858aa8242e0ffe013a165627a7a723058205edae7f0a815fe178a7c3ef73aa2dc9822a1fef5bc657a20e31ec64c352b0d680029

Deployed Bytecode

0x60806040526004361061013d5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166303eac5058114610142578063047bba4e1461015f57806313af4035146101ec57806313b3d1501461020d5780632b8749d91461024157806332ee4faa1461027d57806333184f0f146102a757806369260fae146103055780637212886b1461032257806375bfe4731461034e5780637a9e5e4b146103695780637c2ab67a1461038a5780638140d1e4146103a25780638b61c90f146103c65780638da5cb5b146103de5780638f79f3be146103f35780639161af3e1461040b578063bb34534c14610423578063be64772c1461043b578063bf7e214f14610453578063bf8457e714610468578063d307b66714610480578063dd62d4fa146104de578063f80be67f146104f6575b600080fd5b34801561014e57600080fd5b5061015d60043560243561050e565b005b34801561016b57600080fd5b50610177600435610609565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101b1578181015183820152602001610199565b50505050905090810190601f1680156101de5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101f857600080fd5b5061015d600160a060020a036004351661070c565b34801561021957600080fd5b5061022560043561078a565b60408051600160a060020a039092168252519081900360200190f35b34801561024d57600080fd5b506102596004356107a5565b6040518082600681111561026957fe5b60ff16815260200191505060405180910390f35b34801561028957600080fd5b506102956004356107ba565b60408051918252519081900360200190f35b3480156102b357600080fd5b5060408051602060046024803582810135601f810185900485028601850190965285855261015d9583359536956044949193909101919081908401838280828437509497506108319650505050505050565b34801561031157600080fd5b5061015d600435602435151561092e565b34801561032e57600080fd5b5061033a600435610a25565b604080519115158252519081900360200190f35b34801561035a57600080fd5b5061015d600435602435610a3a565b34801561037557600080fd5b5061015d600160a060020a0360043516610b24565b34801561039657600080fd5b50610295600435610b9e565b3480156103ae57600080fd5b5061015d600435600160a060020a0360243516610c15565b3480156103d257600080fd5b5061033a600435610d26565b3480156103ea57600080fd5b50610225610da0565b3480156103ff57600080fd5b50610177600435610daf565b34801561041757600080fd5b50610295600435610e4a565b34801561042f57600080fd5b50610225600435610e5c565b34801561044757600080fd5b50610177600435610edc565b34801561045f57600080fd5b50610225610fa8565b34801561047457600080fd5b50610295600435610fb7565b34801561048c57600080fd5b5060408051602060046024803582810135601f810185900485028601850190965285855261015d958335953695604494919390910191908190840183828082843750949750610fda9650505050505050565b3480156104ea57600080fd5b506102956004356110d7565b34801561050257600080fd5b506101776004356110e9565b61052433600035600160e060020a031916611151565b151561052f57600080fd5b60008281526008602052604081205460ff16600681111561054c57fe5b14806105745750600160008381526008602052604090205460ff16600681111561057257fe5b145b15156105b8576040805160e560020a62461bcd02815260206004820152601d60248201526000805160206112dc833981519152604482015290519081900360640190fd5b600082815260026020908152604080832084905560089091529020805460ff1916600190811790915582906000805160206112fc833981519152905b60408051918252519081900360200190a25050565b6060600460008381526008602052604090205460ff16600681111561062a57fe5b1461066d576040805160e560020a62461bcd02815260206004820152601d60248201526000805160206112dc833981519152604482015290519081900360640190fd5b60008281526005602090815260409182902080548351601f6002610100600185161502600019019093169290920491820184900484028101840190945280845290918301828280156107005780601f106106d557610100808354040283529160200191610700565b820191906000526020600020905b8154815290600101906020018083116106e357829003601f168201915b50505050509050919050565b61072233600035600160e060020a031916611151565b151561072d57600080fd5b6001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383811691909117918290556040519116907fce241d7ca1f669fee44b6fc00b8eba2df3bb514eed0f6f668f8f89096e81ed9490600090a250565b600460205260009081526040902054600160a060020a031681565b60086020526000908152604090205460ff1681565b6000600160008381526008602052604090205460ff1660068111156107db57fe5b1461081e576040805160e560020a62461bcd02815260206004820152601d60248201526000805160206112dc833981519152604482015290519081900360640190fd5b5060009081526002602052604090205490565b61084733600035600160e060020a031916611151565b151561085257600080fd5b60008281526008602052604081205460ff16600681111561086f57fe5b14806108975750600460008381526008602052604090205460ff16600681111561089557fe5b145b15156108db576040805160e560020a62461bcd02815260206004820152601d60248201526000805160206112dc833981519152604482015290519081900360640190fd5b600082815260056020908152604090912082516108fa92840190611240565b506000828152600860205260409020805460ff1916600490811790915582906000805160206112fc833981519152906105f4565b61094433600035600160e060020a031916611151565b151561094f57600080fd5b60008281526008602052604081205460ff16600681111561096c57fe5b14806109945750600560008381526008602052604090205460ff16600681111561099257fe5b145b15156109d8576040805160e560020a62461bcd02815260206004820152601d60248201526000805160206112dc833981519152604482015290519081900360640190fd5b6000828152600660209081526040808320805485151560ff199182161790915560089092529091208054600592166001830217905550816000805160206112fc83398151915260056105f4565b60066020526000908152604090205460ff1681565b610a5033600035600160e060020a031916611151565b1515610a5b57600080fd5b60008281526008602052604081205460ff166006811115610a7857fe5b1480610aa05750600660008381526008602052604090205460ff166006811115610a9e57fe5b145b1515610ae4576040805160e560020a62461bcd02815260206004820152601d60248201526000805160206112dc833981519152604482015290519081900360640190fd5b600082815260076020908152604080832084905560089091529020805460ff1916600690811790915582906000805160206112fc833981519152906105f4565b610b3a33600035600160e060020a031916611151565b1515610b4557600080fd5b6000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03838116919091178083556040519116917f1abebea81bfa2637f28358c371278fb15ede7ea8dd28d2e03b112ff6d936ada491a250565b6000600660008381526008602052604090205460ff166006811115610bbf57fe5b14610c02576040805160e560020a62461bcd02815260206004820152601d60248201526000805160206112dc833981519152604482015290519081900360640190fd5b5060009081526007602052604090205490565b610c2b33600035600160e060020a031916611151565b1515610c3657600080fd5b60008281526008602052604081205460ff166006811115610c5357fe5b1480610c7b5750600360008381526008602052604090205460ff166006811115610c7957fe5b145b1515610cbf576040805160e560020a62461bcd02815260206004820152601d60248201526000805160206112dc833981519152604482015290519081900360640190fd5b6000828152600460209081526040808320805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0386161790556008909152902080546003919060ff19166001830217905550816000805160206112fc83398151915260036105f4565b6000600560008381526008602052604090205460ff166006811115610d4757fe5b14610d8a576040805160e560020a62461bcd02815260206004820152601d60248201526000805160206112dc833981519152604482015290519081900360640190fd5b5060009081526006602052604090205460ff1690565b600154600160a060020a031681565b60056020908152600091825260409182902080548351601f600260001961010060018616150201909316929092049182018490048402810184019094528084529091830182828015610e425780601f10610e1757610100808354040283529160200191610e42565b820191906000526020600020905b815481529060010190602001808311610e2557829003601f168201915b505050505081565b60076020526000908152604090205481565b6000600360008381526008602052604090205460ff166006811115610e7d57fe5b14610ec0576040805160e560020a62461bcd02815260206004820152601d60248201526000805160206112dc833981519152604482015290519081900360640190fd5b50600090815260046020526040902054600160a060020a031690565b6060600260008381526008602052604090205460ff166006811115610efd57fe5b14610f40576040805160e560020a62461bcd02815260206004820152601d60248201526000805160206112dc833981519152604482015290519081900360640190fd5b60008281526003602090815260409182902080548351601f6002610100600185161502600019019093169290920491820184900484028101840190945280845290918301828280156107005780601f106106d557610100808354040283529160200191610700565b600054600160a060020a031681565b60008181526008602052604081205460ff166006811115610fd457fe5b92915050565b610ff033600035600160e060020a031916611151565b1515610ffb57600080fd5b60008281526008602052604081205460ff16600681111561101857fe5b14806110405750600260008381526008602052604090205460ff16600681111561103e57fe5b145b1515611084576040805160e560020a62461bcd02815260206004820152601d60248201526000805160206112dc833981519152604482015290519081900360640190fd5b600082815260036020908152604090912082516110a392840190611240565b506000828152600860205260409020805460ff1916600290811790915582906000805160206112fc833981519152906105f4565b60026020526000908152604090205481565b60036020908152600091825260409182902080548351601f600260001961010060018616150201909316929092049182018490048402810184019094528084529091830182828015610e425780601f10610e1757610100808354040283529160200191610e42565b600154600090600160a060020a038481169116141561117257506001610fd4565b600054600160a060020a0316151561118c57506000610fd4565b60008054604080517fb7009613000000000000000000000000000000000000000000000000000000008152600160a060020a038781166004830152306024830152600160e060020a0319871660448301529151919092169263b700961392606480820193602093909283900390910190829087803b15801561120d57600080fd5b505af1158015611221573d6000803e3d6000fd5b505050506040513d602081101561123757600080fd5b50519392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061128157805160ff19168380011785556112ae565b828001600101855582156112ae579182015b828111156112ae578251825591602001919060010190611293565b506112ba9291506112be565b5090565b6112d891905b808211156112ba57600081556001016112c4565b90560050726f7065727479207479706520646f6573206e6f74206d617463682e0000007ac24b47be338e87607d378d7ee0d4369c3d98245b29326858aa8242e0ffe013a165627a7a723058205edae7f0a815fe178a7c3ef73aa2dc9822a1fef5bc657a20e31ec64c352b0d680029

Deployed Bytecode Sourcemap

3318:4834:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5210:448;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5210:448:0;;;;;;;;;4508:230;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;4508:230:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;4508:230:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2230:136;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;2230:136:0;-1:-1:-1;;;;;2230:136:0;;;;;3495:52;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;3495:52:0;;;;;;;;;-1:-1:-1;;;;;3495:52:0;;;;;;;;;;;;;;3718:56;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;3718:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3783:229;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;3783:229:0;;;;;;;;;;;;;;;;;;;;;6610:456;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6610:456:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6610:456:0;;-1:-1:-1;6610:456:0;;-1:-1:-1;;;;;;;6610:456:0;7074:450;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;7074:450:0;;;;;;;;;3609:46;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;3609:46:0;;;;;;;;;;;;;;;;;;;;;;;7532:444;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;7532:444:0;;;;;;;2374:163;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;2374:163:0;-1:-1:-1;;;;;2374:163:0;;;;;4980:222;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;4980:222:0;;;;;6134:468;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6134:468:0;;;-1:-1:-1;;;;;6134:468:0;;;;;4746:226;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;4746:226:0;;;;;2090:26;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2090:26:0;;;;3554:48;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;3554:48:0;;;;;3662:47;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;3662:47:0;;;;;4262:238;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;4262:238:0;;;;;4020:234;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;4020:234:0;;;;;2053:30;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2053:30:0;;;;7984:163;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;7984:163:0;;;;;5666:460;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5666:460:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5666:460:0;;-1:-1:-1;5666:460:0;;-1:-1:-1;;;;;;;5666:460:0;3382:49;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;3382:49:0;;;;;3438:50;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;3438:50:0;;;;;5210:448;2578:33;2591:10;2603:7;;-1:-1:-1;;;;;;2603:7:0;2578:12;:33::i;:::-;2570:42;;;;;;;;5345:23;5316:25;;;:10;:25;;;;;;;;:52;;;;;;;;;:108;;;-1:-1:-1;5401:23:0;5372:25;;;;:10;:25;;;;;;;;:52;;;;;;;;;5316:108;5294:164;;;;;;;-1:-1:-1;;;;;5294:164:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;5294:164:0;;;;;;;;;;;;;;;5469:29;;;;:14;:29;;;;;;;;:38;;;5518:10;:25;;;;;:51;;-1:-1:-1;;5518:51:0;5546:23;5518:51;;;;;;5469:29;;-1:-1:-1;;;;;;;;;;;5587:63:0;5617:32;5587:63;;;;;;;;;;;;;;;5210:448;;:::o;4508:230::-;4569:5;4624:24;4595:25;;;;:10;:25;;;;;;;;:53;;;;;;;;;4587:95;;;;;-1:-1:-1;;;;;4587:95:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4587:95:0;;;;;;;;;;;;;;;4700:30;;;;:15;:30;;;;;;;;;4693:37;;;;;;;;;;;;-1:-1:-1;;4693:37:0;;;;;;;;;;;;;;;;;;;;;;;;;;4700:30;;4693:37;;4700:30;4693:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4508:230;;;:::o;2230:136::-;2578:33;2591:10;2603:7;;-1:-1:-1;;;;;;2603:7:0;2578:12;:33::i;:::-;2570:42;;;;;;;;2310:5;:14;;-1:-1:-1;;2310:14:0;-1:-1:-1;;;;;2310:14:0;;;;;;;;;;;2340:18;;2352:5;;;2340:18;;-1:-1:-1;;2340:18:0;2230:136;:::o;3495:52::-;;;;;;;;;;;;-1:-1:-1;;;;;3495:52:0;;:::o;3718:56::-;;;;;;;;;;;;;;;:::o;3783:229::-;3843:7;3900:23;3871:25;;;;:10;:25;;;;;;;;:52;;;;;;;;;3863:94;;;;;-1:-1:-1;;;;;3863:94:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;3863:94:0;;;;;;;;;;;;;;;-1:-1:-1;3975:29:0;;;;:14;:29;;;;;;;3783:229::o;6610:456::-;2578:33;2591:10;2603:7;;-1:-1:-1;;;;;;2603:7:0;2578:12;:33::i;:::-;2570:42;;;;;;;;6747:23;6718:25;;;:10;:25;;;;;;;;:52;;;;;;;;;:109;;;-1:-1:-1;6803:24:0;6774:25;;;;:10;:25;;;;;;;;:53;;;;;;;;;6718:109;6696:165;;;;;;;-1:-1:-1;;;;;6696:165:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;6696:165:0;;;;;;;;;;;;;;;6874:30;;;;:15;:30;;;;;;;;:39;;;;;;;;:::i;:::-;-1:-1:-1;6924:25:0;;;;:10;:25;;;;;:52;;-1:-1:-1;;6924:52:0;6952:24;6924:52;;;;;;:25;;-1:-1:-1;;;;;;;;;;;6994:64:0;7024:33;;7074:450;2578:33;2591:10;2603:7;;-1:-1:-1;;;;;;2603:7:0;2578:12;:33::i;:::-;2570:42;;;;;;;;7209:23;7180:25;;;:10;:25;;;;;;;;:52;;;;;;;;;:108;;;-1:-1:-1;7265:23:0;7236:25;;;;:10;:25;;;;;;;;:52;;;;;;;;;7180:108;7158:164;;;;;;;-1:-1:-1;;;;;7158:164:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;7158:164:0;;;;;;;;;;;;;;;7335:29;;;;:14;:29;;;;;;;;:38;;;;;-1:-1:-1;;7335:38:0;;;;;;;7384:10;:25;;;;;;:51;;7412:23;;7384:51;7335:38;7412:23;7384:51;;;;-1:-1:-1;7468:13:0;-1:-1:-1;;;;;;;;;;;7491:23:0;7483:32;;3609:46;;;;;;;;;;;;;;;:::o;7532:444::-;2578:33;2591:10;2603:7;;-1:-1:-1;;;;;;2603:7:0;2578:12;:33::i;:::-;2570:42;;;;;;;;7665:23;7636:25;;;:10;:25;;;;;;;;:52;;;;;;;;;:107;;;-1:-1:-1;7721:22:0;7692:25;;;;:10;:25;;;;;;;;:51;;;;;;;;;7636:107;7614:163;;;;;;;-1:-1:-1;;;;;7614:163:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;7614:163:0;;;;;;;;;;;;;;;7790:28;;;;:13;:28;;;;;;;;:37;;;7838:10;:25;;;;;:50;;-1:-1:-1;;7838:50:0;7866:22;7838:50;;;;;;7790:28;;-1:-1:-1;;;;;;;;;;;7906:62:0;7936:31;;2374:163;2578:33;2591:10;2603:7;;-1:-1:-1;;;;;;2603:7:0;2578:12;:33::i;:::-;2570:42;;;;;;;;2465:9;:22;;-1:-1:-1;;2465:22:0;-1:-1:-1;;;;;2465:22:0;;;;;;;;;;2503:26;;2519:9;;;2503:26;;;2374:163;:::o;4980:222::-;5039:3;5092:22;5063:25;;;;:10;:25;;;;;;;;:51;;;;;;;;;5055:93;;;;;-1:-1:-1;;;;;5055:93:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;5055:93:0;;;;;;;;;;;;;;;-1:-1:-1;5166:28:0;;;;:13;:28;;;;;;;4980:222::o;6134:468::-;2578:33;2591:10;2603:7;;-1:-1:-1;;;;;;2603:7:0;2578:12;:33::i;:::-;2570:42;;;;;;;;6275:23;6246:25;;;:10;:25;;;;;;;;:52;;;;;;;;;:111;;;-1:-1:-1;6331:26:0;6302:25;;;;:10;:25;;;;;;;;:55;;;;;;;;;6246:111;6224:167;;;;;;;-1:-1:-1;;;;;6224:167:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;6224:167:0;;;;;;;;;;;;;;;6404:32;;;;:17;:32;;;;;;;;:41;;-1:-1:-1;;6404:41:0;-1:-1:-1;;;;;6404:41:0;;;;;6456:10;:25;;;;;:54;;6484:26;;6456:25;-1:-1:-1;;6456:54:0;-1:-1:-1;6484:26:0;6456:54;;;;-1:-1:-1;6543:13:0;-1:-1:-1;;;;;;;;;;;6566:26:0;6558:35;;4746:226;4806:4;4860:23;4831:25;;;;:10;:25;;;;;;;;:52;;;;;;;;;4823:94;;;;;-1:-1:-1;;;;;4823:94:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4823:94:0;;;;;;;;;;;;;;;-1:-1:-1;4935:29:0;;;;:14;:29;;;;;;;;;4746:226::o;2090:26::-;;;-1:-1:-1;;;;;2090:26:0;;:::o;3554:48::-;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;3554:48:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;3662:47::-;;;;;;;;;;;;;:::o;4262:238::-;4325:7;4382:26;4353:25;;;;:10;:25;;;;;;;;:55;;;;;;;;;4345:97;;;;;-1:-1:-1;;;;;4345:97:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4345:97:0;;;;;;;;;;;;;;;-1:-1:-1;4460:32:0;;;;:17;:32;;;;;;-1:-1:-1;;;;;4460:32:0;;4262:238::o;4020:234::-;4082:6;4138:25;4109;;;;:10;:25;;;;;;;;:54;;;;;;;;;4101:96;;;;;-1:-1:-1;;;;;4101:96:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4101:96:0;;;;;;;;;;;;;;;4215:31;;;;:16;:31;;;;;;;;;4208:38;;;;;;;;;;;;-1:-1:-1;;4208:38:0;;;;;;;;;;;;;;;;;;;;;;;;;;4215:31;;4208:38;;4215:31;4208:38;;;;;;;;;;;;;;;;;;;;;;;;2053:30;;;-1:-1:-1;;;;;2053:30:0;;:::o;7984:163::-;8052:7;8113:25;;;:10;:25;;;;;;;;8105:34;;;;;;;;8098:41;7984:163;-1:-1:-1;;7984:163:0:o;5666:460::-;2578:33;2591:10;2603:7;;-1:-1:-1;;;;;;2603:7:0;2578:12;:33::i;:::-;2570:42;;;;;;;;5805:23;5776:25;;;:10;:25;;;;;;;;:52;;;;;;;;;:110;;;-1:-1:-1;5861:25:0;5832;;;;:10;:25;;;;;;;;:54;;;;;;;;;5776:110;5754:166;;;;;;;-1:-1:-1;;;;;5754:166:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;5754:166:0;;;;;;;;;;;;;;;5931:31;;;;:16;:31;;;;;;;;:40;;;;;;;;:::i;:::-;-1:-1:-1;5982:25:0;;;;:10;:25;;;;;:53;;-1:-1:-1;;5982:53:0;6010:25;5982:53;;;;;;:25;;-1:-1:-1;;;;;;;;;;;6053:65:0;6083:34;;3382:49;;;;;;;;;;;;;:::o;3438:50::-;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;3438:50:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2728:300;2826:5;;2798:4;;-1:-1:-1;;;;;2819:12:0;;;2826:5;;2819:12;2815:206;;;-1:-1:-1;2855:4:0;2848:11;;2815:206;2905:1;2881:9;-1:-1:-1;;;;;2881:9:0;:26;2877:144;;;-1:-1:-1;2931:5:0;2924:12;;2877:144;2976:9;;;:33;;;;;;-1:-1:-1;;;;;2976:33:0;;;;;;;2999:4;2976:33;;;;-1:-1:-1;;;;;;2976:33:0;;;;;;;;:9;;;;;:17;;:33;;;;;;;;;;;;;;;;;;:9;:33;;;5:2:-1;;;;30:1;27;20:12;5:2;2976:33:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;2976:33:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;2976:33:0;;2728:300;-1:-1:-1;;;2728:300:0:o;3318:4834::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3318:4834:0;;;-1:-1:-1;3318:4834:0;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;:::o

Swarm Source

bzzr://5edae7f0a815fe178a7c3ef73aa2dc9822a1fef5bc657a20e31ec64c352b0d68

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.