ETH Price: $3,019.39 (+4.45%)
Gas: 10 Gwei

Token

GeoDB Coin (GEO)
 

Overview

Max Total Supply

312,781,077.1061425096066927 GEO

Holders

2,473 ( -0.040%)

Total Transfers

-

Market

Price

$0.00 @ 0.000001 ETH (+21.77%)

Onchain Market Cap

$596,983.35

Circulating Supply Market Cap

$287,067.00

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

GeoDB is a decentralized peer-to-peer big data sharing ecosystem, which returns value to its creators, the users. GeoDB is using blockchain technology to eliminate intermediation in a huge industry and allow a faster growth an adoption.

Market

Volume (24H):$0.83
Market Capitalization:$287,067.00
Circulating Supply:150,404,746.00 GEO
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
GeoToken

Compiler Version
v0.5.7+commit.6da8b019

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2019-08-29
*/

pragma solidity 0.5.7;

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

        return c;
    }

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

        return c;
    }

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

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

        return c;
    }

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

        return c;
    }

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






/**
 * @dev Interface of the ERC777Token standard as defined in the EIP.
 *
 * This contract uses the
 * [ERC1820 registry standard](https://eips.ethereum.org/EIPS/eip-1820) to let
 * token holders and recipients react to token movements by using setting implementers
 * for the associated interfaces in said registry. See `IERC1820Registry` and
 * `ERC1820Implementer`.
 */
interface IERC777 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the smallest part of the token that is not divisible. This
     * means all token operations (creation, movement and destruction) must have
     * amounts that are a multiple of this number.
     *
     * For most token contracts, this value will equal 1.
     */
    function granularity() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by an account (`owner`).
     */
    function balanceOf(address owner) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * If send or receive hooks are registered for the caller and `recipient`,
     * the corresponding functions will be called with `data` and empty
     * `operatorData`. See `IERC777Sender` and `IERC777Recipient`.
     *
     * Emits a `Sent` event.
     *
     * Requirements
     *
     * - the caller must have at least `amount` tokens.
     * - `recipient` cannot be the zero address.
     * - if `recipient` is a contract, it must implement the `tokensReceived`
     * interface.
     */
    function send(address recipient, uint256 amount, bytes calldata data) external;

    /**
     * @dev Destroys `amount` tokens from the caller's account, reducing the
     * total supply.
     *
     * If a send hook is registered for the caller, the corresponding function
     * will be called with `data` and empty `operatorData`. See `IERC777Sender`.
     *
     * Emits a `Burned` event.
     *
     * Requirements
     *
     * - the caller must have at least `amount` tokens.
     */
    function burn(uint256 amount, bytes calldata data) external;

    /**
     * @dev Returns true if an account is an operator of `tokenHolder`.
     * Operators can send and burn tokens on behalf of their owners. All
     * accounts are their own operator.
     *
     * See `operatorSend` and `operatorBurn`.
     */
    function isOperatorFor(address operator, address tokenHolder) external view returns (bool);

    /**
     * @dev Make an account an operator of the caller.
     *
     * See `isOperatorFor`.
     *
     * Emits an `AuthorizedOperator` event.
     *
     * Requirements
     *
     * - `operator` cannot be calling address.
     */
    function authorizeOperator(address operator) external;

    /**
     * @dev Make an account an operator of the caller.
     *
     * See `isOperatorFor` and `defaultOperators`.
     *
     * Emits a `RevokedOperator` event.
     *
     * Requirements
     *
     * - `operator` cannot be calling address.
     */
    function revokeOperator(address operator) external;

    /**
     * @dev Returns the list of default operators. These accounts are operators
     * for all token holders, even if `authorizeOperator` was never called on
     * them.
     *
     * This list is immutable, but individual holders may revoke these via
     * `revokeOperator`, in which case `isOperatorFor` will return false.
     */
    function defaultOperators() external view returns (address[] memory);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient`. The caller must
     * be an operator of `sender`.
     *
     * If send or receive hooks are registered for `sender` and `recipient`,
     * the corresponding functions will be called with `data` and
     * `operatorData`. See `IERC777Sender` and `IERC777Recipient`.
     *
     * Emits a `Sent` event.
     *
     * Requirements
     *
     * - `sender` cannot be the zero address.
     * - `sender` must have at least `amount` tokens.
     * - the caller must be an operator for `sender`.
     * - `recipient` cannot be the zero address.
     * - if `recipient` is a contract, it must implement the `tokensReceived`
     * interface.
     */
    function operatorSend(
        address sender,
        address recipient,
        uint256 amount,
        bytes calldata data,
        bytes calldata operatorData
    ) external;

    /**
     * @dev Destoys `amount` tokens from `account`, reducing the total supply.
     * The caller must be an operator of `account`.
     *
     * If a send hook is registered for `account`, the corresponding function
     * will be called with `data` and `operatorData`. See `IERC777Sender`.
     *
     * Emits a `Burned` event.
     *
     * Requirements
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     * - the caller must be an operator for `account`.
     */
    function operatorBurn(
        address account,
        uint256 amount,
        bytes calldata data,
        bytes calldata operatorData
    ) external;

    event Sent(
        address indexed operator,
        address indexed from,
        address indexed to,
        uint256 amount,
        bytes data,
        bytes operatorData
    );

    event Minted(address indexed operator, address indexed to, uint256 amount, bytes data, bytes operatorData);

    event Burned(address indexed operator, address indexed from, uint256 amount, bytes data, bytes operatorData);

    event AuthorizedOperator(address indexed operator, address indexed tokenHolder);

    event RevokedOperator(address indexed operator, address indexed tokenHolder);
}



/**
 * @dev Interface of the ERC777TokensRecipient standard as defined in the EIP.
 *
 * Accounts can be notified of `IERC777` tokens being sent to them by having a
 * contract implement this interface (contract holders can be their own
 * implementer) and registering it on the
 * [ERC1820 global registry](https://eips.ethereum.org/EIPS/eip-1820).
 *
 * See `IERC1820Registry` and `ERC1820Implementer`.
 */
interface IERC777Recipient {
    /**
     * @dev Called by an `IERC777` token contract whenever tokens are being
     * moved or created into a registered account (`to`). The type of operation
     * is conveyed by `from` being the zero address or not.
     *
     * This call occurs _after_ the token contract's state is updated, so
     * `IERC777.balanceOf`, etc., can be used to query the post-operation state.
     *
     * This function may revert to prevent the operation from being executed.
     */
    function tokensReceived(
        address operator,
        address from,
        address to,
        uint amount,
        bytes calldata userData,
        bytes calldata operatorData
    ) external;
}



/**
 * @dev Interface of the ERC777TokensSender standard as defined in the EIP.
 *
 * `IERC777` Token holders can be notified of operations performed on their
 * tokens by having a contract implement this interface (contract holders can be
 *  their own implementer) and registering it on the
 * [ERC1820 global registry](https://eips.ethereum.org/EIPS/eip-1820).
 *
 * See `IERC1820Registry` and `ERC1820Implementer`.
 */
interface IERC777Sender {
    /**
     * @dev Called by an `IERC777` token contract whenever a registered holder's
     * (`from`) tokens are about to be moved or destroyed. The type of operation
     * is conveyed by `to` being the zero address or not.
     *
     * This call occurs _before_ the token contract's state is updated, so
     * `IERC777.balanceOf`, etc., can be used to query the pre-operation state.
     *
     * This function may revert to prevent the operation from being executed.
     */
    function tokensToSend(
        address operator,
        address from,
        address to,
        uint amount,
        bytes calldata userData,
        bytes calldata operatorData
    ) external;
}



/**
 * @dev Interface of the ERC20 standard as defined in the EIP. Does not include
 * the optional functions; to access them see `ERC20Detailed`.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a `Transfer` event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through `transferFrom`. This is
     * zero by default.
     *
     * This value changes when `approve` or `transferFrom` are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * > Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an `Approval` event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a `Transfer` event.
     */
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to `approve`. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}




/**
 * @dev Collection of functions related to the address type,
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * This test is non-exhaustive, and there may be false-negatives: during the
     * execution of a contract's constructor, its address will be reported as
     * not containing a contract.
     *
     * > It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies in extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }
}



/**
 * @dev Interface of the global ERC1820 Registry, as defined in the
 * [EIP](https://eips.ethereum.org/EIPS/eip-1820). Accounts may register
 * implementers for interfaces in this registry, as well as query support.
 *
 * Implementers may be shared by multiple accounts, and can also implement more
 * than a single interface for each account. Contracts can implement interfaces
 * for themselves, but externally-owned accounts (EOA) must delegate this to a
 * contract.
 *
 * `IERC165` interfaces can also be queried via the registry.
 *
 * For an in-depth explanation and source code analysis, see the EIP text.
 */
interface IERC1820Registry {
    /**
     * @dev Sets `newManager` as the manager for `account`. A manager of an
     * account is able to set interface implementers for it.
     *
     * By default, each account is its own manager. Passing a value of `0x0` in
     * `newManager` will reset the manager to this initial state.
     *
     * Emits a `ManagerChanged` event.
     *
     * Requirements:
     *
     * - the caller must be the current manager for `account`.
     */
    function setManager(address account, address newManager) external;

    /**
     * @dev Returns the manager for `account`.
     *
     * See `setManager`.
     */
    function getManager(address account) external view returns (address);

    /**
     * @dev Sets the `implementer` contract as `account`'s implementer for
     * `interfaceHash`.
     *
     * `account` being the zero address is an alias for the caller's address.
     * The zero address can also be used in `implementer` to remove an old one.
     *
     * See `interfaceHash` to learn how these are created.
     *
     * Emits an `InterfaceImplementerSet` event.
     *
     * Requirements:
     *
     * - the caller must be the current manager for `account`.
     * - `interfaceHash` must not be an `IERC165` interface id (i.e. it must not
     * end in 28 zeroes).
     * - `implementer` must implement `IERC1820Implementer` and return true when
     * queried for support, unless `implementer` is the caller. See
     * `IERC1820Implementer.canImplementInterfaceForAddress`.
     */
    function setInterfaceImplementer(address account, bytes32 interfaceHash, address implementer) external;

    /**
     * @dev Returns the implementer of `interfaceHash` for `account`. If no such
     * implementer is registered, returns the zero address.
     *
     * If `interfaceHash` is an `IERC165` interface id (i.e. it ends with 28
     * zeroes), `account` will be queried for support of it.
     *
     * `account` being the zero address is an alias for the caller's address.
     */
    function getInterfaceImplementer(address account, bytes32 interfaceHash) external view returns (address);

    /**
     * @dev Returns the interface hash for an `interfaceName`, as defined in the
     * corresponding
     * [section of the EIP](https://eips.ethereum.org/EIPS/eip-1820#interface-name).
     */
    function interfaceHash(string calldata interfaceName) external pure returns (bytes32);

    /**
     *  @notice Updates the cache with whether the contract implements an ERC165 interface or not.
     *  @param account Address of the contract for which to update the cache.
     *  @param interfaceId ERC165 interface for which to update the cache.
     */
    function updateERC165Cache(address account, bytes4 interfaceId) external;

    /**
     *  @notice Checks whether a contract implements an ERC165 interface or not.
     *  If the result is not cached a direct lookup on the contract address is performed.
     *  If the result is not cached or the cached value is out-of-date, the cache MUST be updated manually by calling
     *  'updateERC165Cache' with the contract address.
     *  @param account Address of the contract to check.
     *  @param interfaceId ERC165 interface to check.
     *  @return True if `account.address()` implements `interfaceId`, false otherwise.
     */
    function implementsERC165Interface(address account, bytes4 interfaceId) external view returns (bool);

    /**
     *  @notice Checks whether a contract implements an ERC165 interface or not without using nor updating the cache.
     *  @param account Address of the contract to check.
     *  @param interfaceId ERC165 interface to check.
     *  @return True if `account.address()` implements `interfaceId`, false otherwise.
     */
    function implementsERC165InterfaceNoCache(address account, bytes4 interfaceId) external view returns (bool);

    event InterfaceImplementerSet(address indexed account, bytes32 indexed interfaceHash, address indexed implementer);

    event ManagerChanged(address indexed account, address indexed newManager);
}


/**
 * @dev Implementation of the `IERC777` interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using `_mint`.
 *
 * Support for ERC20 is included in this contract, as specified by the EIP: both
 * the ERC777 and ERC20 interfaces can be safely used when interacting with it.
 * Both `IERC777.Sent` and `IERC20.Transfer` events are emitted on token
 * movements.
 *
 * Additionally, the `granularity` value is hard-coded to `1`, meaning that there
 * are no special restrictions in the amount of tokens that created, moved, or
 * destroyed. This makes integration with ERC20 applications seamless.
 */
contract ERC777 is IERC777, IERC20 {
    using SafeMath for uint256;
    using Address for address;

    IERC1820Registry private _erc1820 = IERC1820Registry(0x1820a4B7618BdE71Dce8cdc73aAB6C95905faD24);

    mapping(address => uint256) private _balances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    // We inline the result of the following hashes because Solidity doesn't resolve them at compile time.
    // See https://github.com/ethereum/solidity/issues/4024.

    // keccak256("ERC777TokensSender")
    bytes32 constant private TOKENS_SENDER_INTERFACE_HASH =
        0x29ddb589b1fb5fc7cf394961c1adf5f8c6454761adf795e67fe149f658abe895;

    // keccak256("ERC777TokensRecipient")
    bytes32 constant private TOKENS_RECIPIENT_INTERFACE_HASH =
        0xb281fc8c12954d22544db45de3159a39272895b169a852b314f9cc762e44c53b;

    // This isn't ever read from - it's only used to respond to the defaultOperators query.
    address[] private _defaultOperatorsArray;

    // Immutable, but accounts may revoke them (tracked in __revokedDefaultOperators).
    mapping(address => bool) private _defaultOperators;

    // For each account, a mapping of its operators and revoked default operators.
    mapping(address => mapping(address => bool)) private _operators;
    mapping(address => mapping(address => bool)) private _revokedDefaultOperators;

    // ERC20-allowances
    mapping (address => mapping (address => uint256)) private _allowances;

    /**
     * @dev `defaultOperators` may be an empty array.
     */
    constructor(
        string memory name,
        string memory symbol,
        address[] memory defaultOperators
    ) public {
        _name = name;
        _symbol = symbol;

        _defaultOperatorsArray = defaultOperators;
        for (uint256 i = 0; i < _defaultOperatorsArray.length; i++) {
            _defaultOperators[_defaultOperatorsArray[i]] = true;
        }

        // register interfaces
        _erc1820.setInterfaceImplementer(address(this), keccak256("ERC777Token"), address(this));
        _erc1820.setInterfaceImplementer(address(this), keccak256("ERC20Token"), address(this));
    }

    /**
     * @dev See `IERC777.name`.
     */
    function name() public view returns (string memory) {
        return _name;
    }

    /**
     * @dev See `IERC777.symbol`.
     */
    function symbol() public view returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See `ERC20Detailed.decimals`.
     *
     * Always returns 18, as per the
     * [ERC777 EIP](https://eips.ethereum.org/EIPS/eip-777#backward-compatibility).
     */
    function decimals() public pure returns (uint8) {
        return 18;
    }

    /**
     * @dev See `IERC777.granularity`.
     *
     * This implementation always returns `1`.
     */
    function granularity() public view returns (uint256) {
        return 1;
    }

    /**
     * @dev See `IERC777.totalSupply`.
     */
    function totalSupply() public view returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev Returns the amount of tokens owned by an account (`tokenHolder`).
     */
    function balanceOf(address tokenHolder) public view returns (uint256) {
        return _balances[tokenHolder];
    }

    /**
     * @dev See `IERC777.send`.
     *
     * Also emits a `Transfer` event for ERC20 compatibility.
     */
    function send(address recipient, uint256 amount, bytes calldata data) external {
        _send(msg.sender, msg.sender, recipient, amount, data, "", true);
    }

    /**
     * @dev See `IERC20.transfer`.
     *
     * Unlike `send`, `recipient` is _not_ required to implement the `tokensReceived`
     * interface if it is a contract.
     *
     * Also emits a `Sent` event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool) {
        require(recipient != address(0), "ERC777: transfer to the zero address");

        address from = msg.sender;

        _callTokensToSend(from, from, recipient, amount, "", "");

        _move(from, from, recipient, amount, "", "");

        _callTokensReceived(from, from, recipient, amount, "", "", false);

        return true;
    }

    /**
     * @dev See `IERC777.burn`.
     *
     * Also emits a `Transfer` event for ERC20 compatibility.
     */
    function burn(uint256 amount, bytes calldata data) external {
        _burn(msg.sender, msg.sender, amount, data, "");
    }

    /**
     * @dev See `IERC777.isOperatorFor`.
     */
    function isOperatorFor(
        address operator,
        address tokenHolder
    ) public view returns (bool) {
        return operator == tokenHolder ||
            (_defaultOperators[operator] && !_revokedDefaultOperators[tokenHolder][operator]) ||
            _operators[tokenHolder][operator];
    }

    /**
     * @dev See `IERC777.authorizeOperator`.
     */
    function authorizeOperator(address operator) external {
        require(msg.sender != operator, "ERC777: authorizing self as operator");

        if (_defaultOperators[operator]) {
            delete _revokedDefaultOperators[msg.sender][operator];
        } else {
            _operators[msg.sender][operator] = true;
        }

        emit AuthorizedOperator(operator, msg.sender);
    }

    /**
     * @dev See `IERC777.revokeOperator`.
     */
    function revokeOperator(address operator) external {
        require(operator != msg.sender, "ERC777: revoking self as operator");

        if (_defaultOperators[operator]) {
            _revokedDefaultOperators[msg.sender][operator] = true;
        } else {
            delete _operators[msg.sender][operator];
        }

        emit RevokedOperator(operator, msg.sender);
    }

    /**
     * @dev See `IERC777.defaultOperators`.
     */
    function defaultOperators() public view returns (address[] memory) {
        return _defaultOperatorsArray;
    }

    /**
     * @dev See `IERC777.operatorSend`.
     *
     * Emits `Sent` and `Transfer` events.
     */
    function operatorSend(
        address sender,
        address recipient,
        uint256 amount,
        bytes calldata data,
        bytes calldata operatorData
    )
    external
    {
        require(isOperatorFor(msg.sender, sender), "ERC777: caller is not an operator for holder");
        _send(msg.sender, sender, recipient, amount, data, operatorData, true);
    }

    /**
     * @dev See `IERC777.operatorBurn`.
     *
     * Emits `Sent` and `Transfer` events.
     */
    function operatorBurn(address account, uint256 amount, bytes calldata data, bytes calldata operatorData) external {
        require(isOperatorFor(msg.sender, account), "ERC777: caller is not an operator for holder");
        _burn(msg.sender, account, amount, data, operatorData);
    }

    /**
     * @dev See `IERC20.allowance`.
     *
     * Note that operator and allowance concepts are orthogonal: operators may
     * not have allowance, and accounts with allowance may not be operators
     * themselves.
     */
    function allowance(address holder, address spender) public view returns (uint256) {
        return _allowances[holder][spender];
    }

    /**
     * @dev See `IERC20.approve`.
     *
     * Note that accounts cannot have allowance issued by their operators.
     */
    function approve(address spender, uint256 value) external returns (bool) {
        address holder = msg.sender;
        _approve(holder, spender, value);
        return true;
    }

   /**
    * @dev See `IERC20.transferFrom`.
    *
    * Note that operator and allowance concepts are orthogonal: operators cannot
    * call `transferFrom` (unless they have allowance), and accounts with
    * allowance cannot call `operatorSend` (unless they are operators).
    *
    * Emits `Sent` and `Transfer` events.
    */
    function transferFrom(address holder, address recipient, uint256 amount) external returns (bool) {
        require(recipient != address(0), "ERC777: transfer to the zero address");
        require(holder != address(0), "ERC777: transfer from the zero address");

        address spender = msg.sender;

        _callTokensToSend(spender, holder, recipient, amount, "", "");

        _move(spender, holder, recipient, amount, "", "");
        _approve(holder, spender, _allowances[holder][spender].sub(amount));

        _callTokensReceived(spender, holder, recipient, amount, "", "", false);

        return true;
    }

    /**
     * @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * If a send hook is registered for `raccount`, the corresponding function
     * will be called with `operator`, `data` and `operatorData`.
     *
     * See `IERC777Sender` and `IERC777Recipient`.
     *
     * Emits `Sent` and `Transfer` events.
     *
     * Requirements
     *
     * - `account` cannot be the zero address.
     * - if `account` is a contract, it must implement the `tokensReceived`
     * interface.
     */
    function _mint(
        address operator,
        address account,
        uint256 amount,
        bytes memory userData,
        bytes memory operatorData
    )
    internal
    {
        require(account != address(0), "ERC777: mint to the zero address");

        // Update state variables
        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);

        _callTokensReceived(operator, address(0), account, amount, userData, operatorData, true);

        emit Minted(operator, account, amount, userData, operatorData);
        emit Transfer(address(0), account, amount);
    }

    /**
     * @dev Send tokens
     * @param operator address operator requesting the transfer
     * @param from address token holder address
     * @param to address recipient address
     * @param amount uint256 amount of tokens to transfer
     * @param userData bytes extra information provided by the token holder (if any)
     * @param operatorData bytes extra information provided by the operator (if any)
     * @param requireReceptionAck if true, contract recipients are required to implement ERC777TokensRecipient
     */
    function _send(
        address operator,
        address from,
        address to,
        uint256 amount,
        bytes memory userData,
        bytes memory operatorData,
        bool requireReceptionAck
    )
        private
    {
        require(from != address(0), "ERC777: send from the zero address");
        require(to != address(0), "ERC777: send to the zero address");

        _callTokensToSend(operator, from, to, amount, userData, operatorData);

        _move(operator, from, to, amount, userData, operatorData);

        _callTokensReceived(operator, from, to, amount, userData, operatorData, requireReceptionAck);
    }

    /**
     * @dev Burn tokens
     * @param operator address operator requesting the operation
     * @param from address token holder address
     * @param amount uint256 amount of tokens to burn
     * @param data bytes extra information provided by the token holder
     * @param operatorData bytes extra information provided by the operator (if any)
     */
    function _burn(
        address operator,
        address from,
        uint256 amount,
        bytes memory data,
        bytes memory operatorData
    )
        private
    {
        require(from != address(0), "ERC777: burn from the zero address");

        _callTokensToSend(operator, from, address(0), amount, data, operatorData);

        // Update state variables
        _totalSupply = _totalSupply.sub(amount);
        _balances[from] = _balances[from].sub(amount);

        emit Burned(operator, from, amount, data, operatorData);
        emit Transfer(from, address(0), amount);
    }

    function _move(
        address operator,
        address from,
        address to,
        uint256 amount,
        bytes memory userData,
        bytes memory operatorData
    )
        private
    {
        _balances[from] = _balances[from].sub(amount);
        _balances[to] = _balances[to].add(amount);

        emit Sent(operator, from, to, amount, userData, operatorData);
        emit Transfer(from, to, amount);
    }

    function _approve(address holder, address spender, uint256 value) private {
        // TODO: restore this require statement if this function becomes internal, or is called at a new callsite. It is
        // currently unnecessary.
        //require(holder != address(0), "ERC777: approve from the zero address");
        require(spender != address(0), "ERC777: approve to the zero address");

        _allowances[holder][spender] = value;
        emit Approval(holder, spender, value);
    }

    /**
     * @dev Call from.tokensToSend() if the interface is registered
     * @param operator address operator requesting the transfer
     * @param from address token holder address
     * @param to address recipient address
     * @param amount uint256 amount of tokens to transfer
     * @param userData bytes extra information provided by the token holder (if any)
     * @param operatorData bytes extra information provided by the operator (if any)
     */
    function _callTokensToSend(
        address operator,
        address from,
        address to,
        uint256 amount,
        bytes memory userData,
        bytes memory operatorData
    )
        private
    {
        address implementer = _erc1820.getInterfaceImplementer(from, TOKENS_SENDER_INTERFACE_HASH);
        if (implementer != address(0)) {
            IERC777Sender(implementer).tokensToSend(operator, from, to, amount, userData, operatorData);
        }
    }

    /**
     * @dev Call to.tokensReceived() if the interface is registered. Reverts if the recipient is a contract but
     * tokensReceived() was not registered for the recipient
     * @param operator address operator requesting the transfer
     * @param from address token holder address
     * @param to address recipient address
     * @param amount uint256 amount of tokens to transfer
     * @param userData bytes extra information provided by the token holder (if any)
     * @param operatorData bytes extra information provided by the operator (if any)
     * @param requireReceptionAck if true, contract recipients are required to implement ERC777TokensRecipient
     */
    function _callTokensReceived(
        address operator,
        address from,
        address to,
        uint256 amount,
        bytes memory userData,
        bytes memory operatorData,
        bool requireReceptionAck
    )
        private
    {
        address implementer = _erc1820.getInterfaceImplementer(to, TOKENS_RECIPIENT_INTERFACE_HASH);
        if (implementer != address(0)) {
            IERC777Recipient(implementer).tokensReceived(operator, from, to, amount, userData, operatorData);
        } else if (requireReceptionAck) {
            require(!to.isContract(), "ERC777: token recipient contract has no implementer for ERC777TokensRecipient");
        }
    }
}





/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be aplied to your functions to restrict their use to
 * the owner.
 */
contract Ownable {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () internal {
        _owner = msg.sender;
        emit OwnershipTransferred(address(0), _owner);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(isOwner(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Returns true if the caller is the current owner.
     */
    function isOwner() public view returns (bool) {
        return msg.sender == _owner;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * > Note: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public onlyOwner {
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     */
    function _transferOwnership(address newOwner) internal {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * Based on openzeppelin Pausable contract, modified to give the pause function to the owner.
 */
contract Pausable is Ownable {
    /**
     * @dev Emitted when the pause is triggered by a pauser (`account`).
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by a pauser (`account`).
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state. Assigns the Pauser role
     * to the deployer.
     */
    constructor () internal {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     */
    modifier whenNotPaused() {
        require(!_paused);
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     */
    modifier whenPaused() {
        require(_paused);
        _;
    }

    /**
     * @dev Called by the owner, triggers stopped state.
     */
    function pause() public onlyOwner whenNotPaused {
        _paused = true;
        emit Paused(msg.sender);
    }

    /**
     * @dev Called by the owner, returns to normal state.
     */
    function unpause() public onlyOwner whenPaused {
        _paused = false;
        emit Unpaused(msg.sender);
    }
}



contract GeoToken is Pausable, ERC777 {
  using SafeMath for uint256;
  // Token constants

  // uint32 constant public decimals = 18;
  // string constant public name = "GeoDB Token";
  // string public symbol = "GEO";
  uint256 constant public maxSupply = 1000000000000000000000000000; // 1 thousand millions of tokens
  uint256 constant public preAssigned = 300000000000000000000000000; // 300 hundred millions of tokens

  event LogReward(
    address indexed sender,
    address indexed origin,
    address indexed to,
    uint256 amount
  );

  constructor(
    string memory name,
    string memory symbol,
    address[] memory defaultOperators
  ) ERC777(name, symbol, defaultOperators)
    public {
      _mint(msg.sender, msg.sender, preAssigned, "", "");
  }


  function releaseReward(address to, uint256 reward) public onlyOwner whenNotPaused returns (bool) {
    require(totalSupply().add(reward) <= maxSupply);

    emit LogReward(msg.sender, tx.origin, to, reward);
    _mint(msg.sender, to, reward, "", "");
    return true;
  }

}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"defaultOperators","outputs":[{"name":"","type":"address[]"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"holder","type":"address"},{"name":"recipient","type":"address"},{"name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":true,"inputs":[],"name":"preAssigned","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"granularity","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"sender","type":"address"},{"name":"recipient","type":"address"},{"name":"amount","type":"uint256"},{"name":"data","type":"bytes"},{"name":"operatorData","type":"bytes"}],"name":"operatorSend","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"tokenHolder","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"operator","type":"address"}],"name":"authorizeOperator","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"recipient","type":"address"},{"name":"amount","type":"uint256"},{"name":"data","type":"bytes"}],"name":"send","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"recipient","type":"address"},{"name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"maxSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"operator","type":"address"},{"name":"tokenHolder","type":"address"}],"name":"isOperatorFor","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"holder","type":"address"},{"name":"spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"reward","type":"uint256"}],"name":"releaseReward","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"operator","type":"address"}],"name":"revokeOperator","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"account","type":"address"},{"name":"amount","type":"uint256"},{"name":"data","type":"bytes"},{"name":"operatorData","type":"bytes"}],"name":"operatorBurn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"},{"name":"data","type":"bytes"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"name","type":"string"},{"name":"symbol","type":"string"},{"name":"defaultOperators","type":"address[]"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"sender","type":"address"},{"indexed":true,"name":"origin","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"LogReward","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"operator","type":"address"},{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"amount","type":"uint256"},{"indexed":false,"name":"data","type":"bytes"},{"indexed":false,"name":"operatorData","type":"bytes"}],"name":"Sent","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"operator","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"amount","type":"uint256"},{"indexed":false,"name":"data","type":"bytes"},{"indexed":false,"name":"operatorData","type":"bytes"}],"name":"Minted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"operator","type":"address"},{"indexed":true,"name":"from","type":"address"},{"indexed":false,"name":"amount","type":"uint256"},{"indexed":false,"name":"data","type":"bytes"},{"indexed":false,"name":"operatorData","type":"bytes"}],"name":"Burned","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"operator","type":"address"},{"indexed":true,"name":"tokenHolder","type":"address"}],"name":"AuthorizedOperator","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"operator","type":"address"},{"indexed":true,"name":"tokenHolder","type":"address"}],"name":"RevokedOperator","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"}]

6080604052600180546001600160a01b031916731820a4b7618bde71dce8cdc73aab6c95905fad241790553480156200003757600080fd5b5060405162002f8538038062002f85833981018060405260608110156200005d57600080fd5b8101908080516401000000008111156200007657600080fd5b820160208101848111156200008a57600080fd5b8151640100000000811182820187101715620000a557600080fd5b50509291906020018051640100000000811115620000c257600080fd5b82016020810184811115620000d657600080fd5b8151640100000000811182820187101715620000f157600080fd5b505092919060200180516401000000008111156200010e57600080fd5b820160208101848111156200012257600080fd5b81518560208202830111640100000000821117156200014057600080fd5b5050600080546001600160a01b031916331780825560405192955087945086935085926001600160a01b039190911691907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a360008054600160a01b60ff02191690558251620001bb906004906020860190620009e2565b508151620001d1906005906020850190620009e2565b508051620001e790600690602084019062000a67565b5060005b6006548110156200024757600160076000600684815481106200020a57fe5b6000918252602080832091909101546001600160a01b031683528201929092526040019020805460ff1916911515919091179055600101620001eb565b50600154604080517f455243373737546f6b656e0000000000000000000000000000000000000000008152815190819003600b0181207f29965a1d00000000000000000000000000000000000000000000000000000000825230600483018190526024830191909152604482015290516001600160a01b03909216916329965a1d9160648082019260009290919082900301818387803b158015620002eb57600080fd5b505af115801562000300573d6000803e3d6000fd5b5050600154604080517f4552433230546f6b656e000000000000000000000000000000000000000000008152815190819003600a0181207f29965a1d00000000000000000000000000000000000000000000000000000000825230600483018190526024830191909152604482015290516001600160a01b0390921693506329965a1d925060648082019260009290919082900301818387803b158015620003a757600080fd5b505af1158015620003bc573d6000803e3d6000fd5b505050505050506200040133336af8277896582678ac00000060405180602001604052806000815250604051806020016040528060008152506200040a60201b60201c565b50505062000b14565b6001600160a01b0384166200048057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4552433737373a206d696e7420746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b6200049c836003546200067d60201b62001d7f1790919060201c565b6003556001600160a01b038416600090815260026020908152604090912054620004d191859062001d7f6200067d821b17901c565b60026000866001600160a01b03166001600160a01b031681526020019081526020016000208190555062000513856000868686866001620006f960201b60201c565b836001600160a01b0316856001600160a01b03167f2fe5be0146f74c5bce36c0b80911af6c7d86ff27e89d5cfa61fc681327954e5d858585604051808481526020018060200180602001838103835285818151815260200191508051906020019080838360005b83811015620005945781810151838201526020016200057a565b50505050905090810190601f168015620005c25780820380516001836020036101000a031916815260200191505b50838103825284518152845160209182019186019080838360005b83811015620005f7578181015183820152602001620005dd565b50505050905090810190601f168015620006255780820380516001836020036101000a031916815260200191505b509550505050505060405180910390a36040805184815290516001600160a01b038616916000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050505050565b600082820183811015620006f257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b600154604080517faabbb8ca0000000000000000000000000000000000000000000000000000000081526001600160a01b0388811660048301527fb281fc8c12954d22544db45de3159a39272895b169a852b314f9cc762e44c53b60248301529151600093929092169163aabbb8ca91604480820192602092909190829003018186803b1580156200078a57600080fd5b505afa1580156200079f573d6000803e3d6000fd5b505050506040513d6020811015620007b657600080fd5b505190506001600160a01b038116156200095457806001600160a01b03166223de298989898989896040518763ffffffff1660e01b815260040180876001600160a01b03166001600160a01b03168152602001866001600160a01b03166001600160a01b03168152602001856001600160a01b03166001600160a01b031681526020018481526020018060200180602001838103835285818151815260200191508051906020019080838360005b838110156200087e57818101518382015260200162000864565b50505050905090810190601f168015620008ac5780820380516001836020036101000a031916815260200191505b50838103825284518152845160209182019186019080838360005b83811015620008e1578181015183820152602001620008c7565b50505050905090810190601f1680156200090f5780820380516001836020036101000a031916815260200191505b5098505050505050505050600060405180830381600087803b1580156200093557600080fd5b505af11580156200094a573d6000803e3d6000fd5b50505050620009d2565b8115620009d2576200097a866001600160a01b0316620009dc60201b6200222d1760201c565b15620009d2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252604d81526020018062002f38604d913960600191505060405180910390fd5b5050505050505050565b3b151590565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1062000a2557805160ff191683800117855562000a55565b8280016001018555821562000a55579182015b8281111562000a5557825182559160200191906001019062000a38565b5062000a6392915062000acd565b5090565b82805482825590600052602060002090810192821562000abf579160200282015b8281111562000abf57825182546001600160a01b0319166001600160a01b0390911617825560209092019160019091019062000a88565b5062000a6392915062000aed565b62000aea91905b8082111562000a63576000815560010162000ad4565b90565b62000aea91905b8082111562000a635780546001600160a01b031916815560010162000af4565b6124148062000b246000396000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c80638da5cb5b116100f9578063d95b637111610097578063f541c81211610071578063f541c81214610615578063fad8b32a14610641578063fc673c4f14610667578063fe9d93031461073a576101c4565b8063d95b637114610593578063dd62ed3e146105c1578063f2fde38b146105ef576101c4565b806395d89b41116100d357806395d89b41146104d45780639bd9bbc6146104dc578063a9059cbb1461055f578063d5abeb011461058b576101c4565b80638da5cb5b146104825780638f32d59b146104a6578063959b8c3f146104ae576101c4565b80633f4ba83a1161016657806362ad1b831161014057806362ad1b831461036e57806370a082311461044c578063715018a6146104725780638456cb591461047a576101c4565b80633f4ba83a14610354578063556f0dc71461035e5780635c975abb14610366576101c4565b806318160ddd116101a257806318160ddd146102de57806323b872dd146102f8578063313ce5671461032e5780633e276bd11461034c576101c4565b806306e48538146101c957806306fdde0314610221578063095ea7b31461029e575b600080fd5b6101d16107af565b60408051602080825283518183015283519192839290830191858101910280838360005b8381101561020d5781810151838201526020016101f5565b505050509050019250505060405180910390f35b610229610811565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561026357818101518382015260200161024b565b50505050905090810190601f1680156102905780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102ca600480360360408110156102b457600080fd5b506001600160a01b03813516906020013561089e565b604080519115158252519081900360200190f35b6102e66108b6565b60408051918252519081900360200190f35b6102ca6004803603606081101561030e57600080fd5b506001600160a01b038135811691602081013590911690604001356108bc565b610336610a27565b6040805160ff9092168252519081900360200190f35b6102e6610a2c565b61035c610a3b565b005b6102e6610ae0565b6102ca610ae5565b61035c600480360360a081101561038457600080fd5b6001600160a01b03823581169260208101359091169160408201359190810190608081016060820135600160201b8111156103be57600080fd5b8201836020820111156103d057600080fd5b803590602001918460018302840111600160201b831117156103f157600080fd5b919390929091602081019035600160201b81111561040e57600080fd5b82018360208201111561042057600080fd5b803590602001918460018302840111600160201b8311171561044157600080fd5b509092509050610af5565b6102e66004803603602081101561046257600080fd5b50356001600160a01b0316610bc0565b61035c610bdb565b61035c610c6f565b61048a610d1b565b604080516001600160a01b039092168252519081900360200190f35b6102ca610d2a565b61035c600480360360208110156104c457600080fd5b50356001600160a01b0316610d3b565b610229610e3f565b61035c600480360360608110156104f257600080fd5b6001600160a01b0382351691602081013591810190606081016040820135600160201b81111561052157600080fd5b82018360208201111561053357600080fd5b803590602001918460018302840111600160201b8311171561055457600080fd5b509092509050610ea0565b6102ca6004803603604081101561057557600080fd5b506001600160a01b038135169060200135610efa565b6102e6610fcf565b6102ca600480360360408110156105a957600080fd5b506001600160a01b0381358116916020013516610fdf565b6102e6600480360360408110156105d757600080fd5b506001600160a01b0381358116916020013516611081565b61035c6004803603602081101561060557600080fd5b50356001600160a01b03166110ac565b6102ca6004803603604081101561062b57600080fd5b506001600160a01b038135169060200135611102565b61035c6004803603602081101561065757600080fd5b50356001600160a01b031661120c565b61035c6004803603608081101561067d57600080fd5b6001600160a01b0382351691602081013591810190606081016040820135600160201b8111156106ac57600080fd5b8201836020820111156106be57600080fd5b803590602001918460018302840111600160201b831117156106df57600080fd5b919390929091602081019035600160201b8111156106fc57600080fd5b82018360208201111561070e57600080fd5b803590602001918460018302840111600160201b8311171561072f57600080fd5b509092509050611310565b61035c6004803603604081101561075057600080fd5b81359190810190604081016020820135600160201b81111561077157600080fd5b82018360208201111561078357600080fd5b803590602001918460018302840111600160201b831117156107a457600080fd5b5090925090506113d6565b6060600680548060200260200160405190810160405280929190818152602001828054801561080757602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116107e9575b5050505050905090565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108075780601f1061087257610100808354040283529160200191610807565b820191906000526020600020905b81548152906001019060200180831161088057509395945050505050565b6000336108ac81858561142b565b5060019392505050565b60035490565b60006001600160a01b03831661090657604051600160e51b62461bcd0281526004018080602001828103825260248152602001806123506024913960400191505060405180910390fd5b6001600160a01b03841661094e57604051600160e51b62461bcd0281526004018080602001828103825260268152602001806123a06026913960400191505060405180910390fd5b600033905061097f8186868660405180602001604052806000815250604051806020016040528060008152506114d5565b6109ab818686866040518060200160405280600081525060405180602001604052806000815250611712565b6001600160a01b038086166000908152600a60209081526040808320938516835292905220546109ee90869083906109e9908763ffffffff61191216565b61142b565b610a1c8186868660405180602001604052806000815250604051806020016040528060008152506000611972565b506001949350505050565b601290565b6af8277896582678ac00000081565b610a43610d2a565b610a855760408051600160e51b62461bcd02815260206004820181905260248201526000805160206122e3833981519152604482015290519081900360640190fd5b600054600160a01b900460ff16610a9b57600080fd5b60008054600160a01b60ff02191690556040805133815290517f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa9181900360200190a1565b600190565b600054600160a01b900460ff1690565b610aff3388610fdf565b610b3d57604051600160e51b62461bcd02815260040180806020018281038252602c815260200180612374602c913960400191505060405180910390fd5b610bb73388888888888080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050604080516020601f8c018190048102820181019092528a815292508a915089908190840183828082843760009201919091525060019250611c0b915050565b50505050505050565b6001600160a01b031660009081526002602052604090205490565b610be3610d2a565b610c255760408051600160e51b62461bcd02815260206004820181905260248201526000805160206122e3833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b610c77610d2a565b610cb95760408051600160e51b62461bcd02815260206004820181905260248201526000805160206122e3833981519152604482015290519081900360640190fd5b600054600160a01b900460ff1615610cd057600080fd5b60008054600160a01b60ff021916600160a01b1790556040805133815290517f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2589181900360200190a1565b6000546001600160a01b031690565b6000546001600160a01b0316331490565b336001600160a01b0382161415610d8657604051600160e51b62461bcd02815260040180806020018281038252602481526020018061229e6024913960400191505060405180910390fd5b6001600160a01b03811660009081526007602052604090205460ff1615610dd7573360009081526009602090815260408083206001600160a01b03851684529091529020805460ff19169055610e06565b3360009081526008602090815260408083206001600160a01b03851684529091529020805460ff191660011790555b60405133906001600160a01b038316907ff4caeb2d6ca8932a215a353d0703c326ec2d81fc68170f320eb2ab49e9df61f990600090a350565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108075780601f1061087257610100808354040283529160200191610807565b610ef43333868686868080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201829052506040805160208101909152908152925060019150611c0b9050565b50505050565b60006001600160a01b038316610f4457604051600160e51b62461bcd0281526004018080602001828103825260248152602001806123506024913960400191505060405180910390fd5b6000339050610f758182868660405180602001604052806000815250604051806020016040528060008152506114d5565b610fa1818286866040518060200160405280600081525060405180602001604052806000815250611712565b6108ac8182868660405180602001604052806000815250604051806020016040528060008152506000611972565b6b033b2e3c9fd0803ce800000081565b6000816001600160a01b0316836001600160a01b0316148061104a57506001600160a01b03831660009081526007602052604090205460ff16801561104a57506001600160a01b0380831660009081526009602090815260408083209387168352929052205460ff16155b8061107a57506001600160a01b0380831660009081526008602090815260408083209387168352929052205460ff165b9392505050565b6001600160a01b039182166000908152600a6020908152604080832093909416825291909152205490565b6110b4610d2a565b6110f65760408051600160e51b62461bcd02815260206004820181905260248201526000805160206122e3833981519152604482015290519081900360640190fd5b6110ff81611cdc565b50565b600061110c610d2a565b61114e5760408051600160e51b62461bcd02815260206004820181905260248201526000805160206122e3833981519152604482015290519081900360640190fd5b600054600160a01b900460ff161561116557600080fd5b6b033b2e3c9fd0803ce800000061118a8361117e6108b6565b9063ffffffff611d7f16565b111561119557600080fd5b6040805183815290516001600160a01b03851691329133917f2dd58df3300671c920de4b21f1064e0f3670dc6ad9c7eb767765993e10b74ea2919081900360200190a46112033384846040518060200160405280600081525060405180602001604052806000815250611ddc565b50600192915050565b6001600160a01b03811633141561125757604051600160e51b62461bcd0281526004018080602001828103825260218152602001806122c26021913960400191505060405180910390fd5b6001600160a01b03811660009081526007602052604090205460ff16156112ab573360009081526009602090815260408083206001600160a01b03851684529091529020805460ff191660011790556112d7565b3360009081526008602090815260408083206001600160a01b03851684529091529020805460ff191690555b60405133906001600160a01b038316907f50546e66e5f44d728365dc3908c63bc5cfeeab470722c1677e3073a6ac294aa190600090a350565b61131a3387610fdf565b61135857604051600160e51b62461bcd02815260040180806020018281038252602c815260200180612374602c913960400191505060405180910390fd5b6113ce33878787878080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050604080516020601f8b01819004810282018101909252898152925089915088908190840183828082843760009201919091525061200a92505050565b505050505050565b61142633338585858080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201829052506040805160208101909152908152925061200a915050565b505050565b6001600160a01b03821661147357604051600160e51b62461bcd0281526004018080602001828103825260238152602001806123c66023913960400191505060405180910390fd5b6001600160a01b038084166000818152600a6020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b60015460408051600160e11b63555ddc650281526001600160a01b0388811660048301527f29ddb589b1fb5fc7cf394961c1adf5f8c6454761adf795e67fe149f658abe89560248301529151600093929092169163aabbb8ca91604480820192602092909190829003018186803b15801561154f57600080fd5b505afa158015611563573d6000803e3d6000fd5b505050506040513d602081101561157957600080fd5b505190506001600160a01b03811615610bb757806001600160a01b03166375ab97828888888888886040518763ffffffff1660e01b815260040180876001600160a01b03166001600160a01b03168152602001866001600160a01b03166001600160a01b03168152602001856001600160a01b03166001600160a01b031681526020018481526020018060200180602001838103835285818151815260200191508051906020019080838360005b8381101561163f578181015183820152602001611627565b50505050905090810190601f16801561166c5780820380516001836020036101000a031916815260200191505b50838103825284518152845160209182019186019080838360005b8381101561169f578181015183820152602001611687565b50505050905090810190601f1680156116cc5780820380516001836020036101000a031916815260200191505b5098505050505050505050600060405180830381600087803b1580156116f157600080fd5b505af1158015611705573d6000803e3d6000fd5b5050505050505050505050565b6001600160a01b03851660009081526002602052604090205461173b908463ffffffff61191216565b6001600160a01b038087166000908152600260205260408082209390935590861681522054611770908463ffffffff611d7f16565b60026000866001600160a01b03166001600160a01b0316815260200190815260200160002081905550836001600160a01b0316856001600160a01b0316876001600160a01b03167f06b541ddaa720db2b10a4d0cdac39b8d360425fc073085fac19bc82614677987868686604051808481526020018060200180602001838103835285818151815260200191508051906020019080838360005b8381101561182257818101518382015260200161180a565b50505050905090810190601f16801561184f5780820380516001836020036101000a031916815260200191505b50838103825284518152845160209182019186019080838360005b8381101561188257818101518382015260200161186a565b50505050905090810190601f1680156118af5780820380516001836020036101000a031916815260200191505b509550505050505060405180910390a4836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050565b60008282111561196c5760408051600160e51b62461bcd02815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b60015460408051600160e11b63555ddc650281526001600160a01b0388811660048301527fb281fc8c12954d22544db45de3159a39272895b169a852b314f9cc762e44c53b60248301529151600093929092169163aabbb8ca91604480820192602092909190829003018186803b1580156119ec57600080fd5b505afa158015611a00573d6000803e3d6000fd5b505050506040513d6020811015611a1657600080fd5b505190506001600160a01b03811615611baa57806001600160a01b03166223de298989898989896040518763ffffffff1660e01b815260040180876001600160a01b03166001600160a01b03168152602001866001600160a01b03166001600160a01b03168152602001856001600160a01b03166001600160a01b031681526020018481526020018060200180602001838103835285818151815260200191508051906020019080838360005b83811015611adb578181015183820152602001611ac3565b50505050905090810190601f168015611b085780820380516001836020036101000a031916815260200191505b50838103825284518152845160209182019186019080838360005b83811015611b3b578181015183820152602001611b23565b50505050905090810190601f168015611b685780820380516001836020036101000a031916815260200191505b5098505050505050505050600060405180830381600087803b158015611b8d57600080fd5b505af1158015611ba1573d6000803e3d6000fd5b50505050611c01565b8115611c0157611bc2866001600160a01b031661222d565b15611c0157604051600160e51b62461bcd02815260040180806020018281038252604d815260200180612303604d913960600191505060405180910390fd5b5050505050505050565b6001600160a01b038616611c5357604051600160e51b62461bcd0281526004018080602001828103825260228152602001806122346022913960400191505060405180910390fd5b6001600160a01b038516611cb15760408051600160e51b62461bcd02815260206004820181905260248201527f4552433737373a2073656e6420746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b611cbf8787878787876114d5565b611ccd878787878787611712565b610bb787878787878787611972565b6001600160a01b038116611d2457604051600160e51b62461bcd0281526004018080602001828103825260268152602001806122566026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b60008282018381101561107a5760408051600160e51b62461bcd02815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b038416611e3a5760408051600160e51b62461bcd02815260206004820181905260248201527f4552433737373a206d696e7420746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b600354611e4d908463ffffffff611d7f16565b6003556001600160a01b038416600090815260026020526040902054611e79908463ffffffff611d7f16565b6001600160a01b038516600090815260026020526040812091909155611ea6908690868686866001611972565b836001600160a01b0316856001600160a01b03167f2fe5be0146f74c5bce36c0b80911af6c7d86ff27e89d5cfa61fc681327954e5d858585604051808481526020018060200180602001838103835285818151815260200191508051906020019080838360005b83811015611f25578181015183820152602001611f0d565b50505050905090810190601f168015611f525780820380516001836020036101000a031916815260200191505b50838103825284518152845160209182019186019080838360005b83811015611f85578181015183820152602001611f6d565b50505050905090810190601f168015611fb25780820380516001836020036101000a031916815260200191505b509550505050505060405180910390a36040805184815290516001600160a01b038616916000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050505050565b6001600160a01b03841661205257604051600160e51b62461bcd02815260040180806020018281038252602281526020018061227c6022913960400191505060405180910390fd5b612061858560008686866114d5565b600354612074908463ffffffff61191216565b6003556001600160a01b0384166000908152600260205260409020546120a0908463ffffffff61191216565b60026000866001600160a01b03166001600160a01b0316815260200190815260200160002081905550836001600160a01b0316856001600160a01b03167fa78a9be3a7b862d26933ad85fb11d80ef66b8f972d7cbba06621d583943a4098858585604051808481526020018060200180602001838103835285818151815260200191508051906020019080838360005b83811015612148578181015183820152602001612130565b50505050905090810190601f1680156121755780820380516001836020036101000a031916815260200191505b50838103825284518152845160209182019186019080838360005b838110156121a8578181015183820152602001612190565b50505050905090810190601f1680156121d55780820380516001836020036101000a031916815260200191505b509550505050505060405180910390a36040805184815290516000916001600160a01b038716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050505050565b3b15159056fe4552433737373a2073656e642066726f6d20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433737373a206275726e2066726f6d20746865207a65726f20616464726573734552433737373a20617574686f72697a696e672073656c66206173206f70657261746f724552433737373a207265766f6b696e672073656c66206173206f70657261746f724f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65724552433737373a20746f6b656e20726563697069656e7420636f6e747261637420686173206e6f20696d706c656d656e74657220666f7220455243373737546f6b656e73526563697069656e744552433737373a207472616e7366657220746f20746865207a65726f20616464726573734552433737373a2063616c6c6572206973206e6f7420616e206f70657261746f7220666f7220686f6c6465724552433737373a207472616e736665722066726f6d20746865207a65726f20616464726573734552433737373a20617070726f766520746f20746865207a65726f2061646472657373a165627a7a72305820aad63becb1d443f25c1acf9ac63b3e7a0548d2352c1d2e78daf53747cc83110600294552433737373a20746f6b656e20726563697069656e7420636f6e747261637420686173206e6f20696d706c656d656e74657220666f7220455243373737546f6b656e73526563697069656e74000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000a47656f444220436f696e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000347454f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101c45760003560e01c80638da5cb5b116100f9578063d95b637111610097578063f541c81211610071578063f541c81214610615578063fad8b32a14610641578063fc673c4f14610667578063fe9d93031461073a576101c4565b8063d95b637114610593578063dd62ed3e146105c1578063f2fde38b146105ef576101c4565b806395d89b41116100d357806395d89b41146104d45780639bd9bbc6146104dc578063a9059cbb1461055f578063d5abeb011461058b576101c4565b80638da5cb5b146104825780638f32d59b146104a6578063959b8c3f146104ae576101c4565b80633f4ba83a1161016657806362ad1b831161014057806362ad1b831461036e57806370a082311461044c578063715018a6146104725780638456cb591461047a576101c4565b80633f4ba83a14610354578063556f0dc71461035e5780635c975abb14610366576101c4565b806318160ddd116101a257806318160ddd146102de57806323b872dd146102f8578063313ce5671461032e5780633e276bd11461034c576101c4565b806306e48538146101c957806306fdde0314610221578063095ea7b31461029e575b600080fd5b6101d16107af565b60408051602080825283518183015283519192839290830191858101910280838360005b8381101561020d5781810151838201526020016101f5565b505050509050019250505060405180910390f35b610229610811565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561026357818101518382015260200161024b565b50505050905090810190601f1680156102905780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102ca600480360360408110156102b457600080fd5b506001600160a01b03813516906020013561089e565b604080519115158252519081900360200190f35b6102e66108b6565b60408051918252519081900360200190f35b6102ca6004803603606081101561030e57600080fd5b506001600160a01b038135811691602081013590911690604001356108bc565b610336610a27565b6040805160ff9092168252519081900360200190f35b6102e6610a2c565b61035c610a3b565b005b6102e6610ae0565b6102ca610ae5565b61035c600480360360a081101561038457600080fd5b6001600160a01b03823581169260208101359091169160408201359190810190608081016060820135600160201b8111156103be57600080fd5b8201836020820111156103d057600080fd5b803590602001918460018302840111600160201b831117156103f157600080fd5b919390929091602081019035600160201b81111561040e57600080fd5b82018360208201111561042057600080fd5b803590602001918460018302840111600160201b8311171561044157600080fd5b509092509050610af5565b6102e66004803603602081101561046257600080fd5b50356001600160a01b0316610bc0565b61035c610bdb565b61035c610c6f565b61048a610d1b565b604080516001600160a01b039092168252519081900360200190f35b6102ca610d2a565b61035c600480360360208110156104c457600080fd5b50356001600160a01b0316610d3b565b610229610e3f565b61035c600480360360608110156104f257600080fd5b6001600160a01b0382351691602081013591810190606081016040820135600160201b81111561052157600080fd5b82018360208201111561053357600080fd5b803590602001918460018302840111600160201b8311171561055457600080fd5b509092509050610ea0565b6102ca6004803603604081101561057557600080fd5b506001600160a01b038135169060200135610efa565b6102e6610fcf565b6102ca600480360360408110156105a957600080fd5b506001600160a01b0381358116916020013516610fdf565b6102e6600480360360408110156105d757600080fd5b506001600160a01b0381358116916020013516611081565b61035c6004803603602081101561060557600080fd5b50356001600160a01b03166110ac565b6102ca6004803603604081101561062b57600080fd5b506001600160a01b038135169060200135611102565b61035c6004803603602081101561065757600080fd5b50356001600160a01b031661120c565b61035c6004803603608081101561067d57600080fd5b6001600160a01b0382351691602081013591810190606081016040820135600160201b8111156106ac57600080fd5b8201836020820111156106be57600080fd5b803590602001918460018302840111600160201b831117156106df57600080fd5b919390929091602081019035600160201b8111156106fc57600080fd5b82018360208201111561070e57600080fd5b803590602001918460018302840111600160201b8311171561072f57600080fd5b509092509050611310565b61035c6004803603604081101561075057600080fd5b81359190810190604081016020820135600160201b81111561077157600080fd5b82018360208201111561078357600080fd5b803590602001918460018302840111600160201b831117156107a457600080fd5b5090925090506113d6565b6060600680548060200260200160405190810160405280929190818152602001828054801561080757602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116107e9575b5050505050905090565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108075780601f1061087257610100808354040283529160200191610807565b820191906000526020600020905b81548152906001019060200180831161088057509395945050505050565b6000336108ac81858561142b565b5060019392505050565b60035490565b60006001600160a01b03831661090657604051600160e51b62461bcd0281526004018080602001828103825260248152602001806123506024913960400191505060405180910390fd5b6001600160a01b03841661094e57604051600160e51b62461bcd0281526004018080602001828103825260268152602001806123a06026913960400191505060405180910390fd5b600033905061097f8186868660405180602001604052806000815250604051806020016040528060008152506114d5565b6109ab818686866040518060200160405280600081525060405180602001604052806000815250611712565b6001600160a01b038086166000908152600a60209081526040808320938516835292905220546109ee90869083906109e9908763ffffffff61191216565b61142b565b610a1c8186868660405180602001604052806000815250604051806020016040528060008152506000611972565b506001949350505050565b601290565b6af8277896582678ac00000081565b610a43610d2a565b610a855760408051600160e51b62461bcd02815260206004820181905260248201526000805160206122e3833981519152604482015290519081900360640190fd5b600054600160a01b900460ff16610a9b57600080fd5b60008054600160a01b60ff02191690556040805133815290517f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa9181900360200190a1565b600190565b600054600160a01b900460ff1690565b610aff3388610fdf565b610b3d57604051600160e51b62461bcd02815260040180806020018281038252602c815260200180612374602c913960400191505060405180910390fd5b610bb73388888888888080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050604080516020601f8c018190048102820181019092528a815292508a915089908190840183828082843760009201919091525060019250611c0b915050565b50505050505050565b6001600160a01b031660009081526002602052604090205490565b610be3610d2a565b610c255760408051600160e51b62461bcd02815260206004820181905260248201526000805160206122e3833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b610c77610d2a565b610cb95760408051600160e51b62461bcd02815260206004820181905260248201526000805160206122e3833981519152604482015290519081900360640190fd5b600054600160a01b900460ff1615610cd057600080fd5b60008054600160a01b60ff021916600160a01b1790556040805133815290517f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2589181900360200190a1565b6000546001600160a01b031690565b6000546001600160a01b0316331490565b336001600160a01b0382161415610d8657604051600160e51b62461bcd02815260040180806020018281038252602481526020018061229e6024913960400191505060405180910390fd5b6001600160a01b03811660009081526007602052604090205460ff1615610dd7573360009081526009602090815260408083206001600160a01b03851684529091529020805460ff19169055610e06565b3360009081526008602090815260408083206001600160a01b03851684529091529020805460ff191660011790555b60405133906001600160a01b038316907ff4caeb2d6ca8932a215a353d0703c326ec2d81fc68170f320eb2ab49e9df61f990600090a350565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108075780601f1061087257610100808354040283529160200191610807565b610ef43333868686868080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201829052506040805160208101909152908152925060019150611c0b9050565b50505050565b60006001600160a01b038316610f4457604051600160e51b62461bcd0281526004018080602001828103825260248152602001806123506024913960400191505060405180910390fd5b6000339050610f758182868660405180602001604052806000815250604051806020016040528060008152506114d5565b610fa1818286866040518060200160405280600081525060405180602001604052806000815250611712565b6108ac8182868660405180602001604052806000815250604051806020016040528060008152506000611972565b6b033b2e3c9fd0803ce800000081565b6000816001600160a01b0316836001600160a01b0316148061104a57506001600160a01b03831660009081526007602052604090205460ff16801561104a57506001600160a01b0380831660009081526009602090815260408083209387168352929052205460ff16155b8061107a57506001600160a01b0380831660009081526008602090815260408083209387168352929052205460ff165b9392505050565b6001600160a01b039182166000908152600a6020908152604080832093909416825291909152205490565b6110b4610d2a565b6110f65760408051600160e51b62461bcd02815260206004820181905260248201526000805160206122e3833981519152604482015290519081900360640190fd5b6110ff81611cdc565b50565b600061110c610d2a565b61114e5760408051600160e51b62461bcd02815260206004820181905260248201526000805160206122e3833981519152604482015290519081900360640190fd5b600054600160a01b900460ff161561116557600080fd5b6b033b2e3c9fd0803ce800000061118a8361117e6108b6565b9063ffffffff611d7f16565b111561119557600080fd5b6040805183815290516001600160a01b03851691329133917f2dd58df3300671c920de4b21f1064e0f3670dc6ad9c7eb767765993e10b74ea2919081900360200190a46112033384846040518060200160405280600081525060405180602001604052806000815250611ddc565b50600192915050565b6001600160a01b03811633141561125757604051600160e51b62461bcd0281526004018080602001828103825260218152602001806122c26021913960400191505060405180910390fd5b6001600160a01b03811660009081526007602052604090205460ff16156112ab573360009081526009602090815260408083206001600160a01b03851684529091529020805460ff191660011790556112d7565b3360009081526008602090815260408083206001600160a01b03851684529091529020805460ff191690555b60405133906001600160a01b038316907f50546e66e5f44d728365dc3908c63bc5cfeeab470722c1677e3073a6ac294aa190600090a350565b61131a3387610fdf565b61135857604051600160e51b62461bcd02815260040180806020018281038252602c815260200180612374602c913960400191505060405180910390fd5b6113ce33878787878080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050604080516020601f8b01819004810282018101909252898152925089915088908190840183828082843760009201919091525061200a92505050565b505050505050565b61142633338585858080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201829052506040805160208101909152908152925061200a915050565b505050565b6001600160a01b03821661147357604051600160e51b62461bcd0281526004018080602001828103825260238152602001806123c66023913960400191505060405180910390fd5b6001600160a01b038084166000818152600a6020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b60015460408051600160e11b63555ddc650281526001600160a01b0388811660048301527f29ddb589b1fb5fc7cf394961c1adf5f8c6454761adf795e67fe149f658abe89560248301529151600093929092169163aabbb8ca91604480820192602092909190829003018186803b15801561154f57600080fd5b505afa158015611563573d6000803e3d6000fd5b505050506040513d602081101561157957600080fd5b505190506001600160a01b03811615610bb757806001600160a01b03166375ab97828888888888886040518763ffffffff1660e01b815260040180876001600160a01b03166001600160a01b03168152602001866001600160a01b03166001600160a01b03168152602001856001600160a01b03166001600160a01b031681526020018481526020018060200180602001838103835285818151815260200191508051906020019080838360005b8381101561163f578181015183820152602001611627565b50505050905090810190601f16801561166c5780820380516001836020036101000a031916815260200191505b50838103825284518152845160209182019186019080838360005b8381101561169f578181015183820152602001611687565b50505050905090810190601f1680156116cc5780820380516001836020036101000a031916815260200191505b5098505050505050505050600060405180830381600087803b1580156116f157600080fd5b505af1158015611705573d6000803e3d6000fd5b5050505050505050505050565b6001600160a01b03851660009081526002602052604090205461173b908463ffffffff61191216565b6001600160a01b038087166000908152600260205260408082209390935590861681522054611770908463ffffffff611d7f16565b60026000866001600160a01b03166001600160a01b0316815260200190815260200160002081905550836001600160a01b0316856001600160a01b0316876001600160a01b03167f06b541ddaa720db2b10a4d0cdac39b8d360425fc073085fac19bc82614677987868686604051808481526020018060200180602001838103835285818151815260200191508051906020019080838360005b8381101561182257818101518382015260200161180a565b50505050905090810190601f16801561184f5780820380516001836020036101000a031916815260200191505b50838103825284518152845160209182019186019080838360005b8381101561188257818101518382015260200161186a565b50505050905090810190601f1680156118af5780820380516001836020036101000a031916815260200191505b509550505050505060405180910390a4836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050565b60008282111561196c5760408051600160e51b62461bcd02815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b60015460408051600160e11b63555ddc650281526001600160a01b0388811660048301527fb281fc8c12954d22544db45de3159a39272895b169a852b314f9cc762e44c53b60248301529151600093929092169163aabbb8ca91604480820192602092909190829003018186803b1580156119ec57600080fd5b505afa158015611a00573d6000803e3d6000fd5b505050506040513d6020811015611a1657600080fd5b505190506001600160a01b03811615611baa57806001600160a01b03166223de298989898989896040518763ffffffff1660e01b815260040180876001600160a01b03166001600160a01b03168152602001866001600160a01b03166001600160a01b03168152602001856001600160a01b03166001600160a01b031681526020018481526020018060200180602001838103835285818151815260200191508051906020019080838360005b83811015611adb578181015183820152602001611ac3565b50505050905090810190601f168015611b085780820380516001836020036101000a031916815260200191505b50838103825284518152845160209182019186019080838360005b83811015611b3b578181015183820152602001611b23565b50505050905090810190601f168015611b685780820380516001836020036101000a031916815260200191505b5098505050505050505050600060405180830381600087803b158015611b8d57600080fd5b505af1158015611ba1573d6000803e3d6000fd5b50505050611c01565b8115611c0157611bc2866001600160a01b031661222d565b15611c0157604051600160e51b62461bcd02815260040180806020018281038252604d815260200180612303604d913960600191505060405180910390fd5b5050505050505050565b6001600160a01b038616611c5357604051600160e51b62461bcd0281526004018080602001828103825260228152602001806122346022913960400191505060405180910390fd5b6001600160a01b038516611cb15760408051600160e51b62461bcd02815260206004820181905260248201527f4552433737373a2073656e6420746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b611cbf8787878787876114d5565b611ccd878787878787611712565b610bb787878787878787611972565b6001600160a01b038116611d2457604051600160e51b62461bcd0281526004018080602001828103825260268152602001806122566026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b60008282018381101561107a5760408051600160e51b62461bcd02815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b038416611e3a5760408051600160e51b62461bcd02815260206004820181905260248201527f4552433737373a206d696e7420746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b600354611e4d908463ffffffff611d7f16565b6003556001600160a01b038416600090815260026020526040902054611e79908463ffffffff611d7f16565b6001600160a01b038516600090815260026020526040812091909155611ea6908690868686866001611972565b836001600160a01b0316856001600160a01b03167f2fe5be0146f74c5bce36c0b80911af6c7d86ff27e89d5cfa61fc681327954e5d858585604051808481526020018060200180602001838103835285818151815260200191508051906020019080838360005b83811015611f25578181015183820152602001611f0d565b50505050905090810190601f168015611f525780820380516001836020036101000a031916815260200191505b50838103825284518152845160209182019186019080838360005b83811015611f85578181015183820152602001611f6d565b50505050905090810190601f168015611fb25780820380516001836020036101000a031916815260200191505b509550505050505060405180910390a36040805184815290516001600160a01b038616916000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050505050565b6001600160a01b03841661205257604051600160e51b62461bcd02815260040180806020018281038252602281526020018061227c6022913960400191505060405180910390fd5b612061858560008686866114d5565b600354612074908463ffffffff61191216565b6003556001600160a01b0384166000908152600260205260409020546120a0908463ffffffff61191216565b60026000866001600160a01b03166001600160a01b0316815260200190815260200160002081905550836001600160a01b0316856001600160a01b03167fa78a9be3a7b862d26933ad85fb11d80ef66b8f972d7cbba06621d583943a4098858585604051808481526020018060200180602001838103835285818151815260200191508051906020019080838360005b83811015612148578181015183820152602001612130565b50505050905090810190601f1680156121755780820380516001836020036101000a031916815260200191505b50838103825284518152845160209182019186019080838360005b838110156121a8578181015183820152602001612190565b50505050905090810190601f1680156121d55780820380516001836020036101000a031916815260200191505b509550505050505060405180910390a36040805184815290516000916001600160a01b038716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050505050565b3b15159056fe4552433737373a2073656e642066726f6d20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433737373a206275726e2066726f6d20746865207a65726f20616464726573734552433737373a20617574686f72697a696e672073656c66206173206f70657261746f724552433737373a207265766f6b696e672073656c66206173206f70657261746f724f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65724552433737373a20746f6b656e20726563697069656e7420636f6e747261637420686173206e6f20696d706c656d656e74657220666f7220455243373737546f6b656e73526563697069656e744552433737373a207472616e7366657220746f20746865207a65726f20616464726573734552433737373a2063616c6c6572206973206e6f7420616e206f70657261746f7220666f7220686f6c6465724552433737373a207472616e736665722066726f6d20746865207a65726f20616464726573734552433737373a20617070726f766520746f20746865207a65726f2061646472657373a165627a7a72305820aad63becb1d443f25c1acf9ac63b3e7a0548d2352c1d2e78daf53747cc8311060029

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000a47656f444220436f696e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000347454f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): GeoDB Coin
Arg [1] : symbol (string): GEO

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [4] : 47656f444220436f696e00000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 47454f0000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

41063:1083:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;41063:1083:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27488:115;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;27488:115:0;;;;;;;;;;;;;;;;;23798:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;23798:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29043:184;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;29043:184:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;24573:91;;;:::i;:::-;;;;;;;;;;;;;;;;29577:632;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;29577:632:0;;;;;;;;;;;;;;;;;:::i;24229:76::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;41394:65;;;:::i;40935:117::-;;;:::i;:::-;;24427:80;;;:::i;40207:78::-;;;:::i;27722:384::-;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;27722:384:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;27722:384:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;27722:384:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;27722:384:0;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;27722:384:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;27722:384:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;-1:-1;27722:384:0;;-1:-1:-1;27722:384:0;-1:-1:-1;27722:384:0;:::i;24769:118::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;24769:118:0;-1:-1:-1;;;;;24769:118:0;;:::i;38604:140::-;;;:::i;40735:115::-;;;:::i;37793:79::-;;;:::i;:::-;;;;-1:-1:-1;;;;;37793:79:0;;;;;;;;;;;;;;38159:92;;;:::i;26559:399::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;26559:399:0;-1:-1:-1;;;;;26559:399:0;;:::i;23942:87::-;;;:::i;25017:162::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;25017:162:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;25017:162:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;25017:162:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;-1:-1;25017:162:0;;-1:-1:-1;25017:162:0;-1:-1:-1;25017:162:0;:::i;25418:434::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;25418:434:0;;;;;;;;:::i;41292:64::-;;;:::i;26176:311::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;26176:311:0;;;;;;;;;;:::i;28762:136::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;28762:136:0;;;;;;;;;;:::i;38899:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;38899:109:0;-1:-1:-1;;;;;38899:109:0;;:::i;41864:277::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;41864:277:0;;;;;;;;:::i;27027:390::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;27027:390:0;-1:-1:-1;;;;;27027:390:0;;:::i;28225:289::-;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;28225:289:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;28225:289:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;28225:289:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;28225:289:0;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;28225:289:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;28225:289:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;-1:-1;28225:289:0;;-1:-1:-1;28225:289:0;-1:-1:-1;28225:289:0;:::i;25982:126::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;25982:126:0;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;25982:126:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;25982:126:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;-1:-1;25982:126:0;;-1:-1:-1;25982:126:0;-1:-1:-1;25982:126:0;:::i;27488:115::-;27537:16;27573:22;27566:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27566:29:0;;;;;;;;;;;;;;;;;;;;;;;27488:115;:::o;23798:83::-;23868:5;23861:12;;;;;;;;-1:-1:-1;;23861:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23835:13;;23861:12;;23868:5;;23861:12;;23868:5;23861:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23861:12:0;;23798:83;-1:-1:-1;;;;;23798:83:0:o;29043:184::-;29110:4;29144:10;29165:32;29144:10;29182:7;29191:5;29165:8;:32::i;:::-;-1:-1:-1;29215:4:0;;29043:184;-1:-1:-1;;;29043:184:0:o;24573:91::-;24644:12;;24573:91;:::o;29577:632::-;29668:4;-1:-1:-1;;;;;29693:23:0;;29685:72;;;;-1:-1:-1;;;;;29685:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29776:20:0;;29768:71;;;;-1:-1:-1;;;;;29768:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29852:15;29870:10;29852:28;;29893:61;29911:7;29920:6;29928:9;29939:6;29893:61;;;;;;;;;;;;;;;;;;;;;;;;:17;:61::i;:::-;29967:49;29973:7;29982:6;29990:9;30001:6;29967:49;;;;;;;;;;;;;;;;;;;;;;;;:5;:49::i;:::-;-1:-1:-1;;;;;30053:19:0;;;;;;;:11;:19;;;;;;;;:28;;;;;;;;;;30027:67;;30036:6;;30044:7;;30053:40;;30086:6;30053:40;:32;:40;:::i;:::-;30027:8;:67::i;:::-;30107:70;30127:7;30136:6;30144:9;30155:6;30107:70;;;;;;;;;;;;;;;;;;;;;;;;30171:5;30107:19;:70::i;:::-;-1:-1:-1;30197:4:0;;29577:632;-1:-1:-1;;;;29577:632:0:o;24229:76::-;24295:2;24229:76;:::o;41394:65::-;41432:27;41394:65;:::o;40935:117::-;38005:9;:7;:9::i;:::-;37997:54;;;;;-1:-1:-1;;;;;37997:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;37997:54:0;;;;;;;;;;;;;;;40623:7;;-1:-1:-1;;;40623:7:0;;;;40615:16;;;;;;41003:5;40993:15;;-1:-1:-1;;;;;;40993:15:0;;;41024:20;;;41033:10;41024:20;;;;;;;;;;;;;40935:117::o;24427:80::-;24498:1;24427:80;:::o;40207:78::-;40246:4;40270:7;-1:-1:-1;;;40270:7:0;;;;;40207:78::o;27722:384::-;27935:33;27949:10;27961:6;27935:13;:33::i;:::-;27927:90;;;;-1:-1:-1;;;;;27927:90:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28028:70;28034:10;28046:6;28054:9;28065:6;28073:4;;28028:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;;28028:70:0;;;;137:4:-1;28028:70:0;;;;;;;;;;;;;;;;;;-1:-1:-1;28079:12:0;;-1:-1:-1;28079:12:0;;;;28028:70;;28079:12;;;;28028:70;1:33:-1;99:1;81:16;;74:27;;;;-1:-1;28093:4:0;;-1:-1:-1;28028:5:0;;-1:-1:-1;;28028:70:0:i;:::-;27722:384;;;;;;;:::o;24769:118::-;-1:-1:-1;;;;;24857:22:0;24830:7;24857:22;;;:9;:22;;;;;;;24769:118::o;38604:140::-;38005:9;:7;:9::i;:::-;37997:54;;;;;-1:-1:-1;;;;;37997:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;37997:54:0;;;;;;;;;;;;;;;38703:1;38687:6;;38666:40;;-1:-1:-1;;;;;38687:6:0;;;;38666:40;;38703:1;;38666:40;38734:1;38717:19;;-1:-1:-1;;;;;;38717:19:0;;;38604:140::o;40735:115::-;38005:9;:7;:9::i;:::-;37997:54;;;;;-1:-1:-1;;;;;37997:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;37997:54:0;;;;;;;;;;;;;;;40444:7;;-1:-1:-1;;;40444:7:0;;;;40443:8;40435:17;;;;;;40794:7;:14;;-1:-1:-1;;;;;;40794:14:0;-1:-1:-1;;;40794:14:0;;;40824:18;;;40831:10;40824:18;;;;;;;;;;;;;40735:115::o;37793:79::-;37831:7;37858:6;-1:-1:-1;;;;;37858:6:0;37793:79;:::o;38159:92::-;38199:4;38237:6;-1:-1:-1;;;;;38237:6:0;38223:10;:20;;38159:92::o;26559:399::-;26632:10;-1:-1:-1;;;;;26632:22:0;;;;26624:71;;;;-1:-1:-1;;;;;26624:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;26712:27:0;;;;;;:17;:27;;;;;;;;26708:185;;;26788:10;26763:36;;;;:24;:36;;;;;;;;-1:-1:-1;;;;;26763:46:0;;;;;;;;;26756:53;;-1:-1:-1;;26756:53:0;;;26708:185;;;26853:10;26842:22;;;;:10;:22;;;;;;;;-1:-1:-1;;;;;26842:32:0;;;;;;;;;:39;;-1:-1:-1;;26842:39:0;26877:4;26842:39;;;26708:185;26910:40;;26939:10;;-1:-1:-1;;;;;26910:40:0;;;;;;;;26559:399;:::o;23942:87::-;24014:7;24007:14;;;;;;;;-1:-1:-1;;24007:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23981:13;;24007:14;;24014:7;;24007:14;;24014:7;24007:14;;;;;;;;;;;;;;;;;;;;;;;;25017:162;25107:64;25113:10;25125;25137:9;25148:6;25156:4;;25107:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;-1:-1;25107:64:0;;;;;;;;;;;;;-1:-1:-1;25166:4:0;;-1:-1:-1;25107:5:0;;-1:-1:-1;25107:64:0:i;:::-;25017:162;;;;:::o;25418:434::-;25489:4;-1:-1:-1;;;;;25514:23:0;;25506:72;;;;-1:-1:-1;;;;;25506:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25591:12;25606:10;25591:25;;25629:56;25647:4;25653;25659:9;25670:6;25629:56;;;;;;;;;;;;;;;;;;;;;;;;:17;:56::i;:::-;25698:44;25704:4;25710;25716:9;25727:6;25698:44;;;;;;;;;;;;;;;;;;;;;;;;:5;:44::i;:::-;25755:65;25775:4;25781;25787:9;25798:6;25755:65;;;;;;;;;;;;;;;;;;;;;;;;25814:5;25755:19;:65::i;41292:64::-;41328:28;41292:64;:::o;26176:311::-;26284:4;26320:11;-1:-1:-1;;;;;26308:23:0;:8;-1:-1:-1;;;;;26308:23:0;;:121;;;-1:-1:-1;;;;;;26349:27:0;;;;;;:17;:27;;;;;;;;:79;;;;-1:-1:-1;;;;;;26381:37:0;;;;;;;:24;:37;;;;;;;;:47;;;;;;;;;;;;26380:48;26349:79;26308:171;;;-1:-1:-1;;;;;;26446:23:0;;;;;;;:10;:23;;;;;;;;:33;;;;;;;;;;;;26308:171;26301:178;26176:311;-1:-1:-1;;;26176:311:0:o;28762:136::-;-1:-1:-1;;;;;28862:19:0;;;28835:7;28862:19;;;:11;:19;;;;;;;;:28;;;;;;;;;;;;;28762:136::o;38899:109::-;38005:9;:7;:9::i;:::-;37997:54;;;;;-1:-1:-1;;;;;37997:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;37997:54:0;;;;;;;;;;;;;;;38972:28;38991:8;38972:18;:28::i;:::-;38899:109;:::o;41864:277::-;41955:4;38005:9;:7;:9::i;:::-;37997:54;;;;;-1:-1:-1;;;;;37997:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;37997:54:0;;;;;;;;;;;;;;;40444:7;;-1:-1:-1;;;40444:7:0;;;;40443:8;40435:17;;;;;;41328:28;41976:25;41994:6;41976:13;:11;:13::i;:::-;:17;:25;:17;:25;:::i;:::-;:38;;41968:47;;;;;;42029:44;;;;;;;;-1:-1:-1;;;;;42029:44:0;;;42051:9;;42039:10;;42029:44;;;;;;;;;;42080:37;42086:10;42098:2;42102:6;42080:37;;;;;;;;;;;;;;;;;;;;;;;;:5;:37::i;:::-;-1:-1:-1;42131:4:0;41864:277;;;;:::o;27027:390::-;-1:-1:-1;;;;;27097:22:0;;27109:10;27097:22;;27089:68;;;;-1:-1:-1;;;;;27089:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27174:27:0;;;;;;:17;:27;;;;;;;;27170:185;;;27243:10;27218:36;;;;:24;:36;;;;;;;;-1:-1:-1;;;;;27218:46:0;;;;;;;;;:53;;-1:-1:-1;;27218:53:0;27267:4;27218:53;;;27170:185;;;27322:10;27311:22;;;;:10;:22;;;;;;;;-1:-1:-1;;;;;27311:32:0;;;;;;;;;27304:39;;-1:-1:-1;;27304:39:0;;;27170:185;27372:37;;27398:10;;-1:-1:-1;;;;;27372:37:0;;;;;;;;27027:390;:::o;28225:289::-;28358:34;28372:10;28384:7;28358:13;:34::i;:::-;28350:91;;;;-1:-1:-1;;;;;28350:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28452:54;28458:10;28470:7;28479:6;28487:4;;28452:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;;28452:54:0;;;;137:4:-1;28452:54:0;;;;;;;;;;;;;;;;;;-1:-1:-1;28493:12:0;;-1:-1:-1;28493:12:0;;;;28452:54;;28493:12;;;;28452:54;1:33:-1;99:1;81:16;;74:27;;;;-1:-1;28452:5:0;;-1:-1:-1;;;28452:54:0:i;:::-;28225:289;;;;;;:::o;25982:126::-;26053:47;26059:10;26071;26083:6;26091:4;;26053:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;-1:-1;26053:47:0;;;;;;;;;;;;;-1:-1:-1;26053:5:0;;-1:-1:-1;;26053:47:0:i;:::-;25982:126;;;:::o;34096:499::-;-1:-1:-1;;;;;34429:21:0;;34421:69;;;;-1:-1:-1;;;;;34421:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;34503:19:0;;;;;;;:11;:19;;;;;;;;:28;;;;;;;;;;;;;:36;;;34555:32;;;;;;;;;;;;;;;;;34096:499;;;:::o;35079:488::-;35332:8;;:68;;;-1:-1:-1;;;;;35332:68:0;;-1:-1:-1;;;;;35332:68:0;;;;;;;22152:66;35332:68;;;;;;35310:19;;35332:8;;;;;:32;;:68;;;;;;;;;;;;;;;:8;:68;;;5:2:-1;;;;30:1;27;20:12;5:2;35332:68:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;35332:68:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;35332:68:0;;-1:-1:-1;;;;;;35415:25:0;;;35411:149;;35471:11;-1:-1:-1;;;;;35457:39:0;;35497:8;35507:4;35513:2;35517:6;35525:8;35535:12;35457:91;;;;;;;;;;;;;-1:-1:-1;;;;;35457:91:0;-1:-1:-1;;;;;35457:91:0;;;;;;-1:-1:-1;;;;;35457:91:0;-1:-1:-1;;;;;35457:91:0;;;;;;-1:-1:-1;;;;;35457:91:0;-1:-1:-1;;;;;35457:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;35457:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35457:91:0;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;35457:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;35457:91:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;35457:91:0;;;;35079:488;;;;;;;:::o;33648:440::-;-1:-1:-1;;;;;33885:15:0;;;;;;:9;:15;;;;;;:27;;33905:6;33885:27;:19;:27;:::i;:::-;-1:-1:-1;;;;;33867:15:0;;;;;;;:9;:15;;;;;;:45;;;;33939:13;;;;;;;:25;;33957:6;33939:25;:17;:25;:::i;:::-;33923:9;:13;33933:2;-1:-1:-1;;;;;33923:13:0;-1:-1:-1;;;;;33923:13:0;;;;;;;;;;;;:41;;;;34003:2;-1:-1:-1;;;;;33982:56:0;33997:4;-1:-1:-1;;;;;33982:56:0;33987:8;-1:-1:-1;;;;;33982:56:0;;34007:6;34015:8;34025:12;33982:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;33982:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33982:56:0;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;33982:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34069:2;-1:-1:-1;;;;;34054:26:0;34063:4;-1:-1:-1;;;;;34054:26:0;;34073:6;34054:26;;;;;;;;;;;;;;;;;;33648:440;;;;;;:::o;1314:184::-;1372:7;1405:1;1400;:6;;1392:49;;;;;-1:-1:-1;;;;;1392:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1464:5:0;;;1314:184::o;36269:695::-;36559:8;;:69;;;-1:-1:-1;;;;;36559:69:0;;-1:-1:-1;;;;;36559:69:0;;;;;;;22338:66;36559:69;;;;;;36537:19;;36559:8;;;;;:32;;:69;;;;;;;;;;;;;;;:8;:69;;;5:2:-1;;;;30:1;27;20:12;5:2;36559:69:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;36559:69:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;36559:69:0;;-1:-1:-1;;;;;;36643:25:0;;;36639:318;;36702:11;-1:-1:-1;;;;;36685:44:0;;36730:8;36740:4;36746:2;36750:6;36758:8;36768:12;36685:96;;;;;;;;;;;;;-1:-1:-1;;;;;36685:96:0;-1:-1:-1;;;;;36685:96:0;;;;;;-1:-1:-1;;;;;36685:96:0;-1:-1:-1;;;;;36685:96:0;;;;;;-1:-1:-1;;;;;36685:96:0;-1:-1:-1;;;;;36685:96:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;36685:96:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36685:96:0;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;36685:96:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;36685:96:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;36685:96:0;;;;36639:318;;;36803:19;36799:158;;;36848:15;:2;-1:-1:-1;;;;;36848:13:0;;:15::i;:::-;36847:16;36839:106;;;;-1:-1:-1;;;;;36839:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36269:695;;;;;;;;:::o;31990:656::-;-1:-1:-1;;;;;32252:18:0;;32244:65;;;;-1:-1:-1;;;;;32244:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;32328:16:0;;32320:61;;;;;-1:-1:-1;;;;;32320:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32394:69;32412:8;32422:4;32428:2;32432:6;32440:8;32450:12;32394:17;:69::i;:::-;32476:57;32482:8;32492:4;32498:2;32502:6;32510:8;32520:12;32476:5;:57::i;:::-;32546:92;32566:8;32576:4;32582:2;32586:6;32594:8;32604:12;32618:19;32546;:92::i;39114:229::-;-1:-1:-1;;;;;39188:22:0;;39180:73;;;;-1:-1:-1;;;;;39180:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39290:6;;;39269:38;;-1:-1:-1;;;;;39269:38:0;;;;39290:6;;;39269:38;;;39318:6;:17;;-1:-1:-1;;;;;;39318:17:0;-1:-1:-1;;;;;39318:17:0;;;;;;;;;;39114:229::o;858:181::-;916:7;948:5;;;972:6;;;;964:46;;;;;-1:-1:-1;;;;;964:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;30788:650;-1:-1:-1;;;;;30994:21:0;;30986:66;;;;;-1:-1:-1;;;;;30986:66:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31115:12;;:24;;31132:6;31115:24;:16;:24;:::i;:::-;31100:12;:39;-1:-1:-1;;;;;31171:18:0;;;;;;:9;:18;;;;;;:30;;31194:6;31171:30;:22;:30;:::i;:::-;-1:-1:-1;;;;;31150:18:0;;;;;;:9;:18;;;;;:51;;;;31214:88;;31234:8;;31160:7;31265:6;31273:8;31283:12;31297:4;31214:19;:88::i;:::-;31337:7;-1:-1:-1;;;;;31320:57:0;31327:8;-1:-1:-1;;;;;31320:57:0;;31346:6;31354:8;31364:12;31320:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;31320:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31320:57:0;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;31320:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31393:37;;;;;;;;-1:-1:-1;;;;;31393:37:0;;;31410:1;;31393:37;;;;;;;;;30788:650;;;;;:::o;33026:614::-;-1:-1:-1;;;;;33228:18:0;;33220:65;;;;-1:-1:-1;;;;;33220:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33298:73;33316:8;33326:4;33340:1;33344:6;33352:4;33358:12;33298:17;:73::i;:::-;33434:12;;:24;;33451:6;33434:24;:16;:24;:::i;:::-;33419:12;:39;-1:-1:-1;;;;;33487:15:0;;;;;;:9;:15;;;;;;:27;;33507:6;33487:27;:19;:27;:::i;:::-;33469:9;:15;33479:4;-1:-1:-1;;;;;33469:15:0;-1:-1:-1;;;;;33469:15:0;;;;;;;;;;;;:45;;;;33549:4;-1:-1:-1;;;;;33532:50:0;33539:8;-1:-1:-1;;;;;33532:50:0;;33555:6;33563:4;33569:12;33532:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;33532:50:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33532:50:0;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;33532:50:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33598:34;;;;;;;;33621:1;;-1:-1:-1;;;;;33598:34:0;;;;;;;;;;;;33026:614;;;;;:::o;15525:422::-;15892:20;15931:8;;;15525:422::o

Swarm Source

bzzr://aad63becb1d443f25c1acf9ac63b3e7a0548d2352c1d2e78daf53747cc831106
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.