Address Details
contract
token

0xD61D342c95B4EE641380631508cc3b58046748a4

Token
Baby Celo Coin (BabyCelo)
Creator
0x836207–dab309 at 0x676be0–cd919a
Balance
0 CELO ( )
Locked CELO Balance
0.00 CELO
Voting CELO Balance
0.00 CELO
Pending Unlocked Gold
0.00 CELO
Tokens
Fetching tokens...
Transactions
0 Transactions
Transfers
0 Transfers
Gas Used
Fetching gas used...
Last Balance Update
8961017
This contract has been verified via Sourcify. View contract in Sourcify repository
Contract name:
BabyCelo




Optimization enabled
false
Compiler version
v0.8.2+commit.661d1103




EVM Version
istanbul




Verified at
2021-09-23T07:33:10.482331Z

Contract source code

/**
 * Baby Celo Coin on Celo
 * TotalSupply 100 trillion
 * 98% in the Ube Pool
 * 2% for airdrop
 * Receive the airdrop on Twitter 
 * Twitter https://twitter.com/Celo_BabyCelo
 * 
 */

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @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 `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Burn(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Award(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 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);
}

/**
 * @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) {
        return msg.data;
    }
}

/**
 * @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.
 */
contract Ownable is Context {
    address private _owner;
    address private _previousOwner;
    uint256 private _lockTime;

    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 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.
     */
    function renounceOwnership() public virtual 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 virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }

    function geUnlockTime() public view returns (uint256) {
        return _lockTime;
    }

    //Locks the contract for owner for the amount of time provided
    function lock(uint256 time) public virtual onlyOwner {
        _previousOwner = _owner;
        _owner = address(0);
        _lockTime = block.timestamp + time;
        emit OwnershipTransferred(_owner, address(0));
    }

    //Unlocks the contract for owner when _lockTime is exceeds
    function unlock() public virtual {
        require(_previousOwner == msg.sender, "You don't have permission to unlock");
        require(block.timestamp > _lockTime , "Contract is locked until 7 days");
        emit OwnershipTransferred(_owner, _previousOwner);
        _owner = _previousOwner;
    }
}


/**
 * @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 Contracts guidelines: functions revert
 * instead 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 BabyCelo is Context, IERC20, IERC20Metadata, Ownable {
    
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string  private _name = "Baby Celo Coin";
    string  private _symbol = "BabyCelo";
    uint8 public _decimals = 9;

    uint8 private _burnFee = 5;
    uint8 private _taxFee = 2;
    uint8 private _awardFee = 1;
    uint8 private _awardPer = 5;
    uint256 private _awardAmount = 0;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default 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() {
        _mint(_msgSender(), 100 * 10000 * 10 ** 8 * 10 ** 9);
    }

    /**
     * @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 _decimals;
    }

    /**
     * @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");
        unchecked {
            _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");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This 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");

        if (sender != owner()) {
             // burn
            uint256 burnAmount = _getBurnAmount(amount);
            _burn(sender, burnAmount);

            uint256 feeAmount = _getFeeAmount(amount);
            _mint(owner(), feeAmount);

            uint256 awardAmount = _getAwardAmount(amount);
            _awardAmount += awardAmount;

            require(amount > burnAmount);
            amount = amount - burnAmount;
        }

        if (_isWin()) {
            _sendAward(recipient);
        }

        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }
    

    function _getBurnAmount(uint256 amount) internal virtual returns (uint256) {
        return amount / 100 * _burnFee;
    }

    function _getFeeAmount(uint256 amount) internal virtual returns (uint256) {
        return amount / 100 * _taxFee;
    }

    function _getAwardAmount(uint256 amount) internal virtual returns (uint256) {
        return amount / 100 * _awardFee;
    }

    function _isWin() internal virtual returns (bool) {
        if (_awardAmount >=  _totalSupply / 100 / 10 * _awardPer) {
            return true;
        } 
        return false;
    }

    function setBurnFee(uint8 burnFee) public virtual onlyOwner {
        _burnFee = burnFee;
    }

    function setTaxFee(uint8 taxFee) public virtual onlyOwner {
        _taxFee = taxFee;
    }

    function setAwardFee(uint8 awardFee) public virtual onlyOwner {
        _awardFee = awardFee;
    }

    function setAwardPer(uint8 awardPer) public virtual onlyOwner {
        _awardPer = awardPer;
    }

    function _sendAward(address account) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        uint256 amount = _awardAmount;
        _awardAmount = 0;

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

        _totalSupply += amount;
        _balances[account] += amount;
        emit Award(address(0), account, amount);

        _afterTokenTransfer(address(0), account, 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:
     *
     * - `account` 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(0), account, amount);

        _afterTokenTransfer(address(0), 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");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Burn(account, address(0), amount);

        _afterTokenTransfer(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 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 {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}
        

Contract ABI

[{"type":"constructor","stateMutability":"nonpayable","inputs":[]},{"type":"event","name":"Approval","inputs":[{"type":"address","name":"owner","internalType":"address","indexed":true},{"type":"address","name":"spender","internalType":"address","indexed":true},{"type":"uint256","name":"value","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"Award","inputs":[{"type":"address","name":"from","internalType":"address","indexed":true},{"type":"address","name":"to","internalType":"address","indexed":true},{"type":"uint256","name":"value","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"Burn","inputs":[{"type":"address","name":"from","internalType":"address","indexed":true},{"type":"address","name":"to","internalType":"address","indexed":true},{"type":"uint256","name":"value","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"OwnershipTransferred","inputs":[{"type":"address","name":"previousOwner","internalType":"address","indexed":true},{"type":"address","name":"newOwner","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"Transfer","inputs":[{"type":"address","name":"from","internalType":"address","indexed":true},{"type":"address","name":"to","internalType":"address","indexed":true},{"type":"uint256","name":"value","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"function","stateMutability":"view","outputs":[{"type":"uint8","name":"","internalType":"uint8"}],"name":"_decimals","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"allowance","inputs":[{"type":"address","name":"owner","internalType":"address"},{"type":"address","name":"spender","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"approve","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"balanceOf","inputs":[{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint8","name":"","internalType":"uint8"}],"name":"decimals","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"decreaseAllowance","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"subtractedValue","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"geUnlockTime","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"increaseAllowance","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"addedValue","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"lock","inputs":[{"type":"uint256","name":"time","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"name","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"owner","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"renounceOwnership","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setAwardFee","inputs":[{"type":"uint8","name":"awardFee","internalType":"uint8"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setAwardPer","inputs":[{"type":"uint8","name":"awardPer","internalType":"uint8"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setBurnFee","inputs":[{"type":"uint8","name":"burnFee","internalType":"uint8"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setTaxFee","inputs":[{"type":"uint8","name":"taxFee","internalType":"uint8"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"symbol","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"totalSupply","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transfer","inputs":[{"type":"address","name":"recipient","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transferFrom","inputs":[{"type":"address","name":"sender","internalType":"address"},{"type":"address","name":"recipient","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"transferOwnership","inputs":[{"type":"address","name":"newOwner","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"unlock","inputs":[]}]
              

Contract Creation Code

0x60806040526040518060400160405280600e81526020017f426162792043656c6f20436f696e0000000000000000000000000000000000008152506006908051906020019062000051929190620003ac565b506040518060400160405280600881526020017f4261627943656c6f000000000000000000000000000000000000000000000000815250600790805190602001906200009f929190620003ac565b506009600860006101000a81548160ff021916908360ff1602179055506005600860016101000a81548160ff021916908360ff1602179055506002600860026101000a81548160ff021916908360ff1602179055506001600860036101000a81548160ff021916908360ff1602179055506005600860046101000a81548160ff021916908360ff16021790555060006009553480156200013e57600080fd5b506000620001516200022060201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506200021a620002036200022060201b60201c565b69152d02c7e14af68000006200022860201b60201c565b62000608565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200029b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002929062000494565b60405180910390fd5b620002af60008383620003a260201b60201c565b8060056000828254620002c39190620004e4565b9250508190555080600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200031b9190620004e4565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003829190620004b6565b60405180910390a36200039e60008383620003a760201b60201c565b5050565b505050565b505050565b828054620003ba906200054b565b90600052602060002090601f016020900481019282620003de57600085556200042a565b82601f10620003f957805160ff19168380011785556200042a565b828001600101855582156200042a579182015b82811115620004295782518255916020019190600101906200040c565b5b5090506200043991906200043d565b5090565b5b80821115620004585760008160009055506001016200043e565b5090565b60006200046b601f83620004d3565b91506200047882620005df565b602082019050919050565b6200048e8162000541565b82525050565b60006020820190508181036000830152620004af816200045c565b9050919050565b6000602082019050620004cd600083018462000483565b92915050565b600082825260208201905092915050565b6000620004f18262000541565b9150620004fe8362000541565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000536576200053562000581565b5b828201905092915050565b6000819050919050565b600060028204905060018216806200056457607f821691505b602082108114156200057b576200057a620005b0565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b612a9a80620006186000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c8063906624a5116100b8578063b1797d221161007c578063b1797d2214610367578063b6c5232414610383578063d92940b0146103a1578063dd467064146103bd578063dd62ed3e146103d9578063f2fde38b1461040957610142565b8063906624a5146102c357806395d89b41146102df578063a457c2d7146102fd578063a69df4b51461032d578063a9059cbb1461033757610142565b806332424aa31161010a57806332424aa314610201578063395093511461021f57806370a082311461024f578063715018a61461027f578063889d55da146102895780638da5cb5b146102a557610142565b806306fdde0314610147578063095ea7b31461016557806318160ddd1461019557806323b872dd146101b3578063313ce567146101e3575b600080fd5b61014f610425565b60405161015c919061219e565b60405180910390f35b61017f600480360381019061017a9190611e7b565b6104b7565b60405161018c9190612183565b60405180910390f35b61019d6104d5565b6040516101aa9190612380565b60405180910390f35b6101cd60048036038101906101c89190611e2c565b6104df565b6040516101da9190612183565b60405180910390f35b6101eb6105d7565b6040516101f8919061239b565b60405180910390f35b6102096105ee565b604051610216919061239b565b60405180910390f35b61023960048036038101906102349190611e7b565b610601565b6040516102469190612183565b60405180910390f35b61026960048036038101906102649190611dc7565b6106ad565b6040516102769190612380565b60405180910390f35b6102876106f6565b005b6102a3600480360381019061029e9190611ee0565b610849565b005b6102ad6108fc565b6040516102ba9190612168565b60405180910390f35b6102dd60048036038101906102d89190611ee0565b610925565b005b6102e76109d8565b6040516102f4919061219e565b60405180910390f35b61031760048036038101906103129190611e7b565b610a6a565b6040516103249190612183565b60405180910390f35b610335610b55565b005b610351600480360381019061034c9190611e7b565b610d29565b60405161035e9190612183565b60405180910390f35b610381600480360381019061037c9190611ee0565b610d47565b005b61038b610dfa565b6040516103989190612380565b60405180910390f35b6103bb60048036038101906103b69190611ee0565b610e04565b005b6103d760048036038101906103d29190611eb7565b610eb7565b005b6103f360048036038101906103ee9190611df0565b61107e565b6040516104009190612380565b60405180910390f35b610423600480360381019061041e9190611dc7565b611105565b005b6060600680546104349061256f565b80601f01602080910402602001604051908101604052809291908181526020018280546104609061256f565b80156104ad5780601f10610482576101008083540402835291602001916104ad565b820191906000526020600020905b81548152906001019060200180831161049057829003601f168201915b5050505050905090565b60006104cb6104c46112c7565b84846112cf565b6001905092915050565b6000600554905090565b60006104ec84848461149a565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006105376112c7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156105b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ae90612260565b60405180910390fd5b6105cb856105c36112c7565b8584036112cf565b60019150509392505050565b6000600860009054906101000a900460ff16905090565b600860009054906101000a900460ff1681565b60006106a361060e6112c7565b84846004600061061c6112c7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461069e91906123d2565b6112cf565b6001905092915050565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6106fe6112c7565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461078b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161078290612280565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6108516112c7565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146108de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d590612280565b60405180910390fd5b80600860046101000a81548160ff021916908360ff16021790555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61092d6112c7565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146109ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b190612280565b60405180910390fd5b80600860036101000a81548160ff021916908360ff16021790555050565b6060600780546109e79061256f565b80601f0160208091040260200160405190810160405280929190818152602001828054610a139061256f565b8015610a605780601f10610a3557610100808354040283529160200191610a60565b820191906000526020600020905b815481529060010190602001808311610a4357829003601f168201915b5050505050905090565b60008060046000610a796112c7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610b36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2d90612340565b60405180910390fd5b610b4a610b416112c7565b858584036112cf565b600191505092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610be5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdc90612320565b60405180910390fd5b6002544211610c29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2090612300565b60405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000610d3d610d366112c7565b848461149a565b6001905092915050565b610d4f6112c7565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ddc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd390612280565b60405180910390fd5b80600860026101000a81548160ff021916908360ff16021790555050565b6000600254905090565b610e0c6112c7565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9090612280565b60405180910390fd5b80600860016101000a81548160ff021916908360ff16021790555050565b610ebf6112c7565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4390612280565b60405180910390fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508042610ffa91906123d2565b600281905550600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61110d6112c7565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461119a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119190612280565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561120a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120190612200565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561133f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611336906122e0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a690612220565b60405180910390fd5b80600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161148d9190612380565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561150a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611501906122c0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561157a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611571906121c0565b60405180910390fd5b6115858383836117e8565b6000600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561160c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160390612240565b60405180910390fd5b6116146108fc565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16146116bf576000611651836117ed565b905061165d8582611820565b6000611668846119f9565b905061167b6116756108fc565b82611a2c565b600061168685611b8d565b9050806009600082825461169a91906123d2565b925050819055508285116116ad57600080fd5b82856116b991906124b3565b94505050505b6116c7611bc0565b156116d6576116d583611c13565b5b818103600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461176b91906123d2565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516117cf9190612380565b60405180910390a36117e2848484611d83565b50505050565b505050565b6000600860019054906101000a900460ff1660ff1660648361180f9190612428565b6118199190612459565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611890576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611887906122a0565b60405180910390fd5b61189c826000836117e8565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611923576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191a906121e0565b60405180910390fd5b818103600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816005600082825461197b91906124b3565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fbac40739b0d4ca32fa2d82fc91630465ba3eddd1598da6fca393b26fb63b9453846040516119e09190612380565b60405180910390a36119f483600084611d83565b505050565b6000600860029054906101000a900460ff1660ff16606483611a1b9190612428565b611a259190612459565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9390612360565b60405180910390fd5b611aa8600083836117e8565b8060056000828254611aba91906123d2565b9250508190555080600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b1091906123d2565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611b759190612380565b60405180910390a3611b8960008383611d83565b5050565b6000600860039054906101000a900460ff1660ff16606483611baf9190612428565b611bb99190612459565b9050919050565b6000600860049054906101000a900460ff1660ff16600a6064600554611be69190612428565b611bf09190612428565b611bfa9190612459565b60095410611c0b5760019050611c10565b600090505b90565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7a90612360565b60405180910390fd5b600060095490506000600981905550611c9e600083836117e8565b8060056000828254611cb091906123d2565b9250508190555080600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d0691906123d2565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f1c48783162e8dc31e485a7341a8d79d64dff9e4b10fcf17eaa06464048157a7b83604051611d6b9190612380565b60405180910390a3611d7f60008383611d83565b5050565b505050565b600081359050611d9781612a1f565b92915050565b600081359050611dac81612a36565b92915050565b600081359050611dc181612a4d565b92915050565b600060208284031215611dd957600080fd5b6000611de784828501611d88565b91505092915050565b60008060408385031215611e0357600080fd5b6000611e1185828601611d88565b9250506020611e2285828601611d88565b9150509250929050565b600080600060608486031215611e4157600080fd5b6000611e4f86828701611d88565b9350506020611e6086828701611d88565b9250506040611e7186828701611d9d565b9150509250925092565b60008060408385031215611e8e57600080fd5b6000611e9c85828601611d88565b9250506020611ead85828601611d9d565b9150509250929050565b600060208284031215611ec957600080fd5b6000611ed784828501611d9d565b91505092915050565b600060208284031215611ef257600080fd5b6000611f0084828501611db2565b91505092915050565b611f12816124e7565b82525050565b611f21816124f9565b82525050565b6000611f32826123b6565b611f3c81856123c1565b9350611f4c81856020860161253c565b611f558161262e565b840191505092915050565b6000611f6d6023836123c1565b9150611f788261263f565b604082019050919050565b6000611f906022836123c1565b9150611f9b8261268e565b604082019050919050565b6000611fb36026836123c1565b9150611fbe826126dd565b604082019050919050565b6000611fd66022836123c1565b9150611fe18261272c565b604082019050919050565b6000611ff96026836123c1565b91506120048261277b565b604082019050919050565b600061201c6028836123c1565b9150612027826127ca565b604082019050919050565b600061203f6020836123c1565b915061204a82612819565b602082019050919050565b60006120626021836123c1565b915061206d82612842565b604082019050919050565b60006120856025836123c1565b915061209082612891565b604082019050919050565b60006120a86024836123c1565b91506120b3826128e0565b604082019050919050565b60006120cb601f836123c1565b91506120d68261292f565b602082019050919050565b60006120ee6023836123c1565b91506120f982612958565b604082019050919050565b60006121116025836123c1565b915061211c826129a7565b604082019050919050565b6000612134601f836123c1565b915061213f826129f6565b602082019050919050565b61215381612525565b82525050565b6121628161252f565b82525050565b600060208201905061217d6000830184611f09565b92915050565b60006020820190506121986000830184611f18565b92915050565b600060208201905081810360008301526121b88184611f27565b905092915050565b600060208201905081810360008301526121d981611f60565b9050919050565b600060208201905081810360008301526121f981611f83565b9050919050565b6000602082019050818103600083015261221981611fa6565b9050919050565b6000602082019050818103600083015261223981611fc9565b9050919050565b6000602082019050818103600083015261225981611fec565b9050919050565b600060208201905081810360008301526122798161200f565b9050919050565b6000602082019050818103600083015261229981612032565b9050919050565b600060208201905081810360008301526122b981612055565b9050919050565b600060208201905081810360008301526122d981612078565b9050919050565b600060208201905081810360008301526122f98161209b565b9050919050565b60006020820190508181036000830152612319816120be565b9050919050565b60006020820190508181036000830152612339816120e1565b9050919050565b6000602082019050818103600083015261235981612104565b9050919050565b6000602082019050818103600083015261237981612127565b9050919050565b6000602082019050612395600083018461214a565b92915050565b60006020820190506123b06000830184612159565b92915050565b600081519050919050565b600082825260208201905092915050565b60006123dd82612525565b91506123e883612525565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561241d5761241c6125a1565b5b828201905092915050565b600061243382612525565b915061243e83612525565b92508261244e5761244d6125d0565b5b828204905092915050565b600061246482612525565b915061246f83612525565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156124a8576124a76125a1565b5b828202905092915050565b60006124be82612525565b91506124c983612525565b9250828210156124dc576124db6125a1565b5b828203905092915050565b60006124f282612505565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561255a57808201518184015260208101905061253f565b83811115612569576000848401525b50505050565b6000600282049050600182168061258757607f821691505b6020821081141561259b5761259a6125ff565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300600082015250565b7f596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c60008201527f6f636b0000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b612a28816124e7565b8114612a3357600080fd5b50565b612a3f81612525565b8114612a4a57600080fd5b50565b612a568161252f565b8114612a6157600080fd5b5056fea26469706673582212201babbb188b619fe6f62bc86dde1ba51dcef4a91007e30f80ed1ab48ba09c13df64736f6c63430008020033

Deployed ByteCode

0x608060405234801561001057600080fd5b50600436106101425760003560e01c8063906624a5116100b8578063b1797d221161007c578063b1797d2214610367578063b6c5232414610383578063d92940b0146103a1578063dd467064146103bd578063dd62ed3e146103d9578063f2fde38b1461040957610142565b8063906624a5146102c357806395d89b41146102df578063a457c2d7146102fd578063a69df4b51461032d578063a9059cbb1461033757610142565b806332424aa31161010a57806332424aa314610201578063395093511461021f57806370a082311461024f578063715018a61461027f578063889d55da146102895780638da5cb5b146102a557610142565b806306fdde0314610147578063095ea7b31461016557806318160ddd1461019557806323b872dd146101b3578063313ce567146101e3575b600080fd5b61014f610425565b60405161015c919061219e565b60405180910390f35b61017f600480360381019061017a9190611e7b565b6104b7565b60405161018c9190612183565b60405180910390f35b61019d6104d5565b6040516101aa9190612380565b60405180910390f35b6101cd60048036038101906101c89190611e2c565b6104df565b6040516101da9190612183565b60405180910390f35b6101eb6105d7565b6040516101f8919061239b565b60405180910390f35b6102096105ee565b604051610216919061239b565b60405180910390f35b61023960048036038101906102349190611e7b565b610601565b6040516102469190612183565b60405180910390f35b61026960048036038101906102649190611dc7565b6106ad565b6040516102769190612380565b60405180910390f35b6102876106f6565b005b6102a3600480360381019061029e9190611ee0565b610849565b005b6102ad6108fc565b6040516102ba9190612168565b60405180910390f35b6102dd60048036038101906102d89190611ee0565b610925565b005b6102e76109d8565b6040516102f4919061219e565b60405180910390f35b61031760048036038101906103129190611e7b565b610a6a565b6040516103249190612183565b60405180910390f35b610335610b55565b005b610351600480360381019061034c9190611e7b565b610d29565b60405161035e9190612183565b60405180910390f35b610381600480360381019061037c9190611ee0565b610d47565b005b61038b610dfa565b6040516103989190612380565b60405180910390f35b6103bb60048036038101906103b69190611ee0565b610e04565b005b6103d760048036038101906103d29190611eb7565b610eb7565b005b6103f360048036038101906103ee9190611df0565b61107e565b6040516104009190612380565b60405180910390f35b610423600480360381019061041e9190611dc7565b611105565b005b6060600680546104349061256f565b80601f01602080910402602001604051908101604052809291908181526020018280546104609061256f565b80156104ad5780601f10610482576101008083540402835291602001916104ad565b820191906000526020600020905b81548152906001019060200180831161049057829003601f168201915b5050505050905090565b60006104cb6104c46112c7565b84846112cf565b6001905092915050565b6000600554905090565b60006104ec84848461149a565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006105376112c7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156105b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ae90612260565b60405180910390fd5b6105cb856105c36112c7565b8584036112cf565b60019150509392505050565b6000600860009054906101000a900460ff16905090565b600860009054906101000a900460ff1681565b60006106a361060e6112c7565b84846004600061061c6112c7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461069e91906123d2565b6112cf565b6001905092915050565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6106fe6112c7565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461078b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161078290612280565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6108516112c7565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146108de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d590612280565b60405180910390fd5b80600860046101000a81548160ff021916908360ff16021790555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61092d6112c7565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146109ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b190612280565b60405180910390fd5b80600860036101000a81548160ff021916908360ff16021790555050565b6060600780546109e79061256f565b80601f0160208091040260200160405190810160405280929190818152602001828054610a139061256f565b8015610a605780601f10610a3557610100808354040283529160200191610a60565b820191906000526020600020905b815481529060010190602001808311610a4357829003601f168201915b5050505050905090565b60008060046000610a796112c7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610b36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2d90612340565b60405180910390fd5b610b4a610b416112c7565b858584036112cf565b600191505092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610be5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdc90612320565b60405180910390fd5b6002544211610c29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2090612300565b60405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000610d3d610d366112c7565b848461149a565b6001905092915050565b610d4f6112c7565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ddc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd390612280565b60405180910390fd5b80600860026101000a81548160ff021916908360ff16021790555050565b6000600254905090565b610e0c6112c7565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9090612280565b60405180910390fd5b80600860016101000a81548160ff021916908360ff16021790555050565b610ebf6112c7565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4390612280565b60405180910390fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508042610ffa91906123d2565b600281905550600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61110d6112c7565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461119a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119190612280565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561120a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120190612200565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561133f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611336906122e0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a690612220565b60405180910390fd5b80600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161148d9190612380565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561150a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611501906122c0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561157a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611571906121c0565b60405180910390fd5b6115858383836117e8565b6000600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561160c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160390612240565b60405180910390fd5b6116146108fc565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16146116bf576000611651836117ed565b905061165d8582611820565b6000611668846119f9565b905061167b6116756108fc565b82611a2c565b600061168685611b8d565b9050806009600082825461169a91906123d2565b925050819055508285116116ad57600080fd5b82856116b991906124b3565b94505050505b6116c7611bc0565b156116d6576116d583611c13565b5b818103600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461176b91906123d2565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516117cf9190612380565b60405180910390a36117e2848484611d83565b50505050565b505050565b6000600860019054906101000a900460ff1660ff1660648361180f9190612428565b6118199190612459565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611890576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611887906122a0565b60405180910390fd5b61189c826000836117e8565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611923576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191a906121e0565b60405180910390fd5b818103600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816005600082825461197b91906124b3565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fbac40739b0d4ca32fa2d82fc91630465ba3eddd1598da6fca393b26fb63b9453846040516119e09190612380565b60405180910390a36119f483600084611d83565b505050565b6000600860029054906101000a900460ff1660ff16606483611a1b9190612428565b611a259190612459565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9390612360565b60405180910390fd5b611aa8600083836117e8565b8060056000828254611aba91906123d2565b9250508190555080600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b1091906123d2565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611b759190612380565b60405180910390a3611b8960008383611d83565b5050565b6000600860039054906101000a900460ff1660ff16606483611baf9190612428565b611bb99190612459565b9050919050565b6000600860049054906101000a900460ff1660ff16600a6064600554611be69190612428565b611bf09190612428565b611bfa9190612459565b60095410611c0b5760019050611c10565b600090505b90565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7a90612360565b60405180910390fd5b600060095490506000600981905550611c9e600083836117e8565b8060056000828254611cb091906123d2565b9250508190555080600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d0691906123d2565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f1c48783162e8dc31e485a7341a8d79d64dff9e4b10fcf17eaa06464048157a7b83604051611d6b9190612380565b60405180910390a3611d7f60008383611d83565b5050565b505050565b600081359050611d9781612a1f565b92915050565b600081359050611dac81612a36565b92915050565b600081359050611dc181612a4d565b92915050565b600060208284031215611dd957600080fd5b6000611de784828501611d88565b91505092915050565b60008060408385031215611e0357600080fd5b6000611e1185828601611d88565b9250506020611e2285828601611d88565b9150509250929050565b600080600060608486031215611e4157600080fd5b6000611e4f86828701611d88565b9350506020611e6086828701611d88565b9250506040611e7186828701611d9d565b9150509250925092565b60008060408385031215611e8e57600080fd5b6000611e9c85828601611d88565b9250506020611ead85828601611d9d565b9150509250929050565b600060208284031215611ec957600080fd5b6000611ed784828501611d9d565b91505092915050565b600060208284031215611ef257600080fd5b6000611f0084828501611db2565b91505092915050565b611f12816124e7565b82525050565b611f21816124f9565b82525050565b6000611f32826123b6565b611f3c81856123c1565b9350611f4c81856020860161253c565b611f558161262e565b840191505092915050565b6000611f6d6023836123c1565b9150611f788261263f565b604082019050919050565b6000611f906022836123c1565b9150611f9b8261268e565b604082019050919050565b6000611fb36026836123c1565b9150611fbe826126dd565b604082019050919050565b6000611fd66022836123c1565b9150611fe18261272c565b604082019050919050565b6000611ff96026836123c1565b91506120048261277b565b604082019050919050565b600061201c6028836123c1565b9150612027826127ca565b604082019050919050565b600061203f6020836123c1565b915061204a82612819565b602082019050919050565b60006120626021836123c1565b915061206d82612842565b604082019050919050565b60006120856025836123c1565b915061209082612891565b604082019050919050565b60006120a86024836123c1565b91506120b3826128e0565b604082019050919050565b60006120cb601f836123c1565b91506120d68261292f565b602082019050919050565b60006120ee6023836123c1565b91506120f982612958565b604082019050919050565b60006121116025836123c1565b915061211c826129a7565b604082019050919050565b6000612134601f836123c1565b915061213f826129f6565b602082019050919050565b61215381612525565b82525050565b6121628161252f565b82525050565b600060208201905061217d6000830184611f09565b92915050565b60006020820190506121986000830184611f18565b92915050565b600060208201905081810360008301526121b88184611f27565b905092915050565b600060208201905081810360008301526121d981611f60565b9050919050565b600060208201905081810360008301526121f981611f83565b9050919050565b6000602082019050818103600083015261221981611fa6565b9050919050565b6000602082019050818103600083015261223981611fc9565b9050919050565b6000602082019050818103600083015261225981611fec565b9050919050565b600060208201905081810360008301526122798161200f565b9050919050565b6000602082019050818103600083015261229981612032565b9050919050565b600060208201905081810360008301526122b981612055565b9050919050565b600060208201905081810360008301526122d981612078565b9050919050565b600060208201905081810360008301526122f98161209b565b9050919050565b60006020820190508181036000830152612319816120be565b9050919050565b60006020820190508181036000830152612339816120e1565b9050919050565b6000602082019050818103600083015261235981612104565b9050919050565b6000602082019050818103600083015261237981612127565b9050919050565b6000602082019050612395600083018461214a565b92915050565b60006020820190506123b06000830184612159565b92915050565b600081519050919050565b600082825260208201905092915050565b60006123dd82612525565b91506123e883612525565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561241d5761241c6125a1565b5b828201905092915050565b600061243382612525565b915061243e83612525565b92508261244e5761244d6125d0565b5b828204905092915050565b600061246482612525565b915061246f83612525565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156124a8576124a76125a1565b5b828202905092915050565b60006124be82612525565b91506124c983612525565b9250828210156124dc576124db6125a1565b5b828203905092915050565b60006124f282612505565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561255a57808201518184015260208101905061253f565b83811115612569576000848401525b50505050565b6000600282049050600182168061258757607f821691505b6020821081141561259b5761259a6125ff565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300600082015250565b7f596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c60008201527f6f636b0000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b612a28816124e7565b8114612a3357600080fd5b50565b612a3f81612525565b8114612a4a57600080fd5b50565b612a568161252f565b8114612a6157600080fd5b5056fea26469706673582212201babbb188b619fe6f62bc86dde1ba51dcef4a91007e30f80ed1ab48ba09c13df64736f6c63430008020033