ETH Price: $3,385.97 (-2.73%)
Gas: 1 Gwei

Contract

0x19373EcBB4B8cC2253D70F2a246fa299303227Ba
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

More Info

Private Name Tags

TokenTracker

Orchai Token (OCH) (@$0.4229)

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Value
Approve201918292024-06-28 17:58:597 hrs ago1719597539IN
Orchai Protocol: OCH Token
0 ETH0.000259425.50150537
Approve201881042024-06-28 5:30:2319 hrs ago1719552623IN
Orchai Protocol: OCH Token
0 ETH0.000151423.20704303
Approve201823382024-06-27 10:10:2339 hrs ago1719483023IN
Orchai Protocol: OCH Token
0 ETH0.000152675.11637634
Transfer201786582024-06-26 21:51:112 days ago1719438671IN
Orchai Protocol: OCH Token
0 ETH0.000284585.92647741
Approve201759612024-06-26 12:47:472 days ago1719406067IN
Orchai Protocol: OCH Token
0 ETH0.000210534.46462291
Approve201724662024-06-26 1:05:473 days ago1719363947IN
Orchai Protocol: OCH Token
0 ETH0.000189624.01606638
Approve201717522024-06-25 22:42:353 days ago1719355355IN
Orchai Protocol: OCH Token
0 ETH0.000167843.58034208
Transfer201717452024-06-25 22:41:113 days ago1719355271IN
Orchai Protocol: OCH Token
0 ETH0.000160053.33396259
Approve201717062024-06-25 22:33:113 days ago1719354791IN
Orchai Protocol: OCH Token
0 ETH0.000178543.78623649
Approve201710822024-06-25 20:28:113 days ago1719347291IN
Orchai Protocol: OCH Token
0 ETH0.000351467.45334484
Transfer201695752024-06-25 15:24:473 days ago1719329087IN
Orchai Protocol: OCH Token
0 ETH0.0004944910.29794347
Approve201615252024-06-24 12:24:594 days ago1719231899IN
Orchai Protocol: OCH Token
0 ETH0.000342127.25512325
Approve201609192024-06-24 10:22:594 days ago1719224579IN
Orchai Protocol: OCH Token
0 ETH0.000166565.59552445
Approve201604612024-06-24 8:50:354 days ago1719219035IN
Orchai Protocol: OCH Token
0 ETH0.000165386.63349952
Approve201552452024-06-23 15:20:355 days ago1719156035IN
Orchai Protocol: OCH Token
0 ETH0.000219474.68278112
Approve201551552024-06-23 15:02:235 days ago1719154943IN
Orchai Protocol: OCH Token
0 ETH0.000320116.78834855
Approve201434662024-06-21 23:46:597 days ago1719013619IN
Orchai Protocol: OCH Token
0 ETH0.000150773.1972617
Approve201433442024-06-21 23:22:237 days ago1719012143IN
Orchai Protocol: OCH Token
0 ETH0.000206924.38803676
Approve201406212024-06-21 14:13:357 days ago1718979215IN
Orchai Protocol: OCH Token
0 ETH0.0005358711.36381652
Approve201406092024-06-21 14:11:117 days ago1718979071IN
Orchai Protocol: OCH Token
0 ETH0.00037838.06967822
Approve201393942024-06-21 10:07:237 days ago1718964443IN
Orchai Protocol: OCH Token
0 ETH0.000251075.35016982
Approve201390182024-06-21 8:51:597 days ago1718959919IN
Orchai Protocol: OCH Token
0 ETH0.000395598.37845259
Approve201352272024-06-20 20:09:238 days ago1718914163IN
Orchai Protocol: OCH Token
0 ETH0.000292396.20059906
Approve201350522024-06-20 19:34:238 days ago1718912063IN
Orchai Protocol: OCH Token
0 ETH0.000206797.66478654
Approve201350492024-06-20 19:33:478 days ago1718912027IN
Orchai Protocol: OCH Token
0 ETH0.000356067.59531123
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:
OCHToken

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-02-21
*/

// SPDX-License-Identifier: MIT
pragma solidity 0.8.10;

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

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

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

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


    /**
     * @dev Returns the erc token owner.
     */
    function getOwner() external view returns (address);

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


contract Context {
    function _msgSender() internal view returns (address) {
        return msg.sender;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

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

        return c;
    }

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

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

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

  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 onlyOwner {
    emit OwnershipTransferred(_owner, address(0));
    _owner = address(0);
  }

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

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

abstract contract BEP677Receiver {
    function onTokenTransfer(address _sender, uint _value, bytes calldata _data) external virtual;
}

contract OCHToken is Context, IERC20, Ownable {
    using SafeMath for uint256;
    
    mapping (address => uint256) private _balances;
    
    mapping (address => mapping (address => uint256)) private _allowances;
    
    uint256 private _totalSupply;
    uint8 private _decimals;
    string private _symbol;
    string private _name;
    
    constructor() {
        _name = "Orchai Token";
        _symbol = "OCH";
        _decimals = 18;
        _totalSupply = 10 * 10e23;
        _balances[msg.sender] = _totalSupply;
    
        emit Transfer(address(0), msg.sender, _totalSupply);
    }

    /**
     * @dev Returns the erc token owner.
    */
    function getOwner() external view returns (address) {
        return owner();
    }

    /**
     * @dev Returns the token decimals.
     */
    function decimals() external view returns (uint8) {
        return _decimals;
    }

    /**
     * @dev Returns the token symbol.
     */
    function symbol() external view returns (string memory) {
        return _symbol;
    }

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

    /**
    * @dev See {ERC20-totalSupply}.
    */
    function totalSupply() external view returns (uint256) {
        return _totalSupply;
    }

    /**
    * @dev See {ERC20-balanceOf}.
    */
    function balanceOf(address account) external view returns (uint256) {
        return _balances[account];
    }

    /**
    * @dev See {ERC20-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 returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

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

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

    /**
    * @dev See {ERC20-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) external returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        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 {ERC20-approve}.
    *
    * Emits an {Approval} event indicating the updated allowance.
    *
    * Requirements:
    *
    * - `spender` cannot be the zero address.
    */
    function increaseAllowance(address spender, uint256 addedValue) public returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(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 {ERC20-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 returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    /**
    * @dev Creates `amount` tokens and assigns them to `msg.sender`, increasing
    * the total supply.
    *
    * Requirements
    *
    * - `msg.sender` must be the token owner
    */
    function mint(uint256 amount) public onlyOwner returns (bool) {
        _mint(_msgSender(), amount);
        return true;
    }
    
    /**
    * @dev Burn `amount` tokens , decreasing
    * the total supply.
    *
    * Requirements
    *
    * - `msg.sender` must be the token owner
    */
    function burn(address _to, uint256 _amount) public onlyOwner returns (bool) {
        _burn(_to, _amount);
        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 {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(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 {
        require(account != address(0), "ERC20: mint to the zero address");

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(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 {
        require(account != address(0), "ERC20: burn from the zero address");

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

    /**
    * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens.
    *
    * This is 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 {
        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);
    }
    
    event Transfer(address indexed from, address indexed to, uint value, bytes data);
    
    /**
    * @dev transfer token to a contract address with additional data if the recipient is a contract.
    * @param _to The address to transfer to.
    * @param _value The amount to be transferred.
    * @param _data The extra data to be passed to the receiving contract.
    */
    function transferAndCall(address _to, uint _value, bytes memory _data)
    public
    returns (bool success)
    {
        transfer(_to, _value);
        emit Transfer(msg.sender, _to, _value, _data);
        if (isContract(_to)) {
            contractFallback(_to, _value, _data);
        }
        return true;
    }

    // PRIVATE
    function contractFallback(address _to, uint _value, bytes memory _data)
    private
    {
        BEP677Receiver receiver = BEP677Receiver(_to);
        receiver.onTokenTransfer(msg.sender, _value, _data);
    }

    function isContract(address _addr)
    private view
    returns (bool hasCode)
    {
        uint length;
        assembly {length := extcodesize(_addr)}
        return length > 0;
    }
}

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"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"}],"name":"Transfer","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":"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":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","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":[],"name":"getOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":"_to","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"transferAndCall","outputs":[{"internalType":"bool","name":"success","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"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506000620000246200024260201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506040518060400160405280600c81526020017f4f726368616920546f6b656e0000000000000000000000000000000000000000815250600690805190602001906200010f9291906200024a565b506040518060400160405280600381526020017f4f43480000000000000000000000000000000000000000000000000000000000815250600590805190602001906200015d9291906200024a565b506012600460006101000a81548160ff021916908360ff1602179055506a084595161401484a000000600381905550600354600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503373ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60035460405162000234919062000315565b60405180910390a362000397565b600033905090565b828054620002589062000361565b90600052602060002090601f0160209004810192826200027c5760008555620002c8565b82601f106200029757805160ff1916838001178555620002c8565b82800160010185558215620002c8579182015b82811115620002c7578251825591602001919060010190620002aa565b5b509050620002d79190620002db565b5090565b5b80821115620002f6576000816000905550600101620002dc565b5090565b6000819050919050565b6200030f81620002fa565b82525050565b60006020820190506200032c600083018462000304565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200037a57607f821691505b6020821081141562000391576200039062000332565b5b50919050565b61234280620003a76000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c8063893d20e8116100a2578063a0712d6811610071578063a0712d68146102f9578063a457c2d714610329578063a9059cbb14610359578063dd62ed3e14610389578063f2fde38b146103b957610116565b8063893d20e81461026f5780638da5cb5b1461028d57806395d89b41146102ab5780639dc29fac146102c957610116565b8063313ce567116100e9578063313ce567146101b757806339509351146101d55780634000aea01461020557806370a0823114610235578063715018a61461026557610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461016957806323b872dd14610187575b600080fd5b6101236103d5565b604051610130919061178e565b60405180910390f35b610153600480360381019061014e9190611858565b610467565b60405161016091906118b3565b60405180910390f35b610171610485565b60405161017e91906118dd565b60405180910390f35b6101a1600480360381019061019c91906118f8565b61048f565b6040516101ae91906118b3565b60405180910390f35b6101bf610568565b6040516101cc9190611967565b60405180910390f35b6101ef60048036038101906101ea9190611858565b61057f565b6040516101fc91906118b3565b60405180910390f35b61021f600480360381019061021a9190611ab7565b610632565b60405161022c91906118b3565b60405180910390f35b61024f600480360381019061024a9190611b26565b6106cb565b60405161025c91906118dd565b60405180910390f35b61026d610714565b005b610277610867565b6040516102849190611b62565b60405180910390f35b610295610876565b6040516102a29190611b62565b60405180910390f35b6102b361089f565b6040516102c0919061178e565b60405180910390f35b6102e360048036038101906102de9190611858565b610931565b6040516102f091906118b3565b60405180910390f35b610313600480360381019061030e9190611b7d565b6109dc565b60405161032091906118b3565b60405180910390f35b610343600480360381019061033e9190611858565b610a8d565b60405161035091906118b3565b60405180910390f35b610373600480360381019061036e9190611858565b610b5a565b60405161038091906118b3565b60405180910390f35b6103a3600480360381019061039e9190611baa565b610b78565b6040516103b091906118dd565b60405180910390f35b6103d360048036038101906103ce9190611b26565b610bff565b005b6060600680546103e490611c19565b80601f016020809104026020016040519081016040528092919081815260200182805461041090611c19565b801561045d5780601f106104325761010080835404028352916020019161045d565b820191906000526020600020905b81548152906001019060200180831161044057829003601f168201915b5050505050905090565b600061047b610474610ca0565b8484610ca8565b6001905092915050565b6000600354905090565b600061049c848484610e73565b61055d846104a8610ca0565b610558856040518060600160405280602881526020016122c060289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061050e610ca0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111019092919063ffffffff16565b610ca8565b600190509392505050565b6000600460009054906101000a900460ff16905090565b600061062861058c610ca0565b84610623856002600061059d610ca0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461116590919063ffffffff16565b610ca8565b6001905092915050565b600061063e8484610b5a565b508373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fe19260aff97b920c7df27010903aeb9c8d2be5d310a2c67824cf3f15396e4c16858560405161069e929190611ca0565b60405180910390a36106af846111c3565b156106c0576106bf8484846111d6565b5b600190509392505050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61071c610ca0565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146107a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a090611d1c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000610871610876565b905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546108ae90611c19565b80601f01602080910402602001604051908101604052809291908181526020018280546108da90611c19565b80156109275780601f106108fc57610100808354040283529160200191610927565b820191906000526020600020905b81548152906001019060200180831161090a57829003601f168201915b5050505050905090565b600061093b610ca0565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146109c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109bf90611d1c565b60405180910390fd5b6109d28383611250565b6001905092915050565b60006109e6610ca0565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6a90611d1c565b60405180910390fd5b610a84610a7e610ca0565b836113f4565b60019050919050565b6000610b50610a9a610ca0565b84610b4b856040518060600160405280602581526020016122e86025913960026000610ac4610ca0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111019092919063ffffffff16565b610ca8565b6001905092915050565b6000610b6e610b67610ca0565b8484610e73565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610c07610ca0565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8b90611d1c565b60405180910390fd5b610c9d8161157e565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0f90611dae565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7f90611e40565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e6691906118dd565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ee3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eda90611ed2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4a90611f64565b60405180910390fd5b610fbf8160405180606001604052806026815260200161229a60269139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111019092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061105481600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461116590919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516110f491906118dd565b60405180910390a3505050565b6000838311158290611149576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611140919061178e565b60405180910390fd5b50600083856111589190611fb3565b9050809150509392505050565b60008082846111749190611fe7565b9050838110156111b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b090612089565b60405180910390fd5b8091505092915050565b600080823b905060008111915050919050565b60008390508073ffffffffffffffffffffffffffffffffffffffff1663a4c0ed363385856040518463ffffffff1660e01b8152600401611218939291906120a9565b600060405180830381600087803b15801561123257600080fd5b505af1158015611246573d6000803e3d6000fd5b5050505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b790612159565b60405180910390fd5b61132c8160405180606001604052806022815260200161227860229139600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111019092919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611384816003546116ab90919063ffffffff16565b600381905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516113e891906118dd565b60405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611464576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145b906121c5565b60405180910390fd5b6114798160035461116590919063ffffffff16565b6003819055506114d181600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461116590919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161157291906118dd565b60405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156115ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e590612257565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006116ed83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611101565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561172f578082015181840152602081019050611714565b8381111561173e576000848401525b50505050565b6000601f19601f8301169050919050565b6000611760826116f5565b61176a8185611700565b935061177a818560208601611711565b61178381611744565b840191505092915050565b600060208201905081810360008301526117a88184611755565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006117ef826117c4565b9050919050565b6117ff816117e4565b811461180a57600080fd5b50565b60008135905061181c816117f6565b92915050565b6000819050919050565b61183581611822565b811461184057600080fd5b50565b6000813590506118528161182c565b92915050565b6000806040838503121561186f5761186e6117ba565b5b600061187d8582860161180d565b925050602061188e85828601611843565b9150509250929050565b60008115159050919050565b6118ad81611898565b82525050565b60006020820190506118c860008301846118a4565b92915050565b6118d781611822565b82525050565b60006020820190506118f260008301846118ce565b92915050565b600080600060608486031215611911576119106117ba565b5b600061191f8682870161180d565b93505060206119308682870161180d565b925050604061194186828701611843565b9150509250925092565b600060ff82169050919050565b6119618161194b565b82525050565b600060208201905061197c6000830184611958565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6119c482611744565b810181811067ffffffffffffffff821117156119e3576119e261198c565b5b80604052505050565b60006119f66117b0565b9050611a0282826119bb565b919050565b600067ffffffffffffffff821115611a2257611a2161198c565b5b611a2b82611744565b9050602081019050919050565b82818337600083830152505050565b6000611a5a611a5584611a07565b6119ec565b905082815260208101848484011115611a7657611a75611987565b5b611a81848285611a38565b509392505050565b600082601f830112611a9e57611a9d611982565b5b8135611aae848260208601611a47565b91505092915050565b600080600060608486031215611ad057611acf6117ba565b5b6000611ade8682870161180d565b9350506020611aef86828701611843565b925050604084013567ffffffffffffffff811115611b1057611b0f6117bf565b5b611b1c86828701611a89565b9150509250925092565b600060208284031215611b3c57611b3b6117ba565b5b6000611b4a8482850161180d565b91505092915050565b611b5c816117e4565b82525050565b6000602082019050611b776000830184611b53565b92915050565b600060208284031215611b9357611b926117ba565b5b6000611ba184828501611843565b91505092915050565b60008060408385031215611bc157611bc06117ba565b5b6000611bcf8582860161180d565b9250506020611be08582860161180d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611c3157607f821691505b60208210811415611c4557611c44611bea565b5b50919050565b600081519050919050565b600082825260208201905092915050565b6000611c7282611c4b565b611c7c8185611c56565b9350611c8c818560208601611711565b611c9581611744565b840191505092915050565b6000604082019050611cb560008301856118ce565b8181036020830152611cc78184611c67565b90509392505050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611d06602083611700565b9150611d1182611cd0565b602082019050919050565b60006020820190508181036000830152611d3581611cf9565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611d98602483611700565b9150611da382611d3c565b604082019050919050565b60006020820190508181036000830152611dc781611d8b565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e2a602283611700565b9150611e3582611dce565b604082019050919050565b60006020820190508181036000830152611e5981611e1d565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611ebc602583611700565b9150611ec782611e60565b604082019050919050565b60006020820190508181036000830152611eeb81611eaf565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611f4e602383611700565b9150611f5982611ef2565b604082019050919050565b60006020820190508181036000830152611f7d81611f41565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611fbe82611822565b9150611fc983611822565b925082821015611fdc57611fdb611f84565b5b828203905092915050565b6000611ff282611822565b9150611ffd83611822565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561203257612031611f84565b5b828201905092915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000612073601b83611700565b915061207e8261203d565b602082019050919050565b600060208201905081810360008301526120a281612066565b9050919050565b60006060820190506120be6000830186611b53565b6120cb60208301856118ce565b81810360408301526120dd8184611c67565b9050949350505050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612143602183611700565b915061214e826120e7565b604082019050919050565b6000602082019050818103600083015261217281612136565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006121af601f83611700565b91506121ba82612179565b602082019050919050565b600060208201905081810360008301526121de816121a2565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612241602683611700565b915061224c826121e5565b604082019050919050565b6000602082019050818103600083015261227081612234565b905091905056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220f6cb221ca973e48a2d1fe42e7b8b1fae53c542c065afe52d788e6842b59ba58f64736f6c634300080a0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101165760003560e01c8063893d20e8116100a2578063a0712d6811610071578063a0712d68146102f9578063a457c2d714610329578063a9059cbb14610359578063dd62ed3e14610389578063f2fde38b146103b957610116565b8063893d20e81461026f5780638da5cb5b1461028d57806395d89b41146102ab5780639dc29fac146102c957610116565b8063313ce567116100e9578063313ce567146101b757806339509351146101d55780634000aea01461020557806370a0823114610235578063715018a61461026557610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461016957806323b872dd14610187575b600080fd5b6101236103d5565b604051610130919061178e565b60405180910390f35b610153600480360381019061014e9190611858565b610467565b60405161016091906118b3565b60405180910390f35b610171610485565b60405161017e91906118dd565b60405180910390f35b6101a1600480360381019061019c91906118f8565b61048f565b6040516101ae91906118b3565b60405180910390f35b6101bf610568565b6040516101cc9190611967565b60405180910390f35b6101ef60048036038101906101ea9190611858565b61057f565b6040516101fc91906118b3565b60405180910390f35b61021f600480360381019061021a9190611ab7565b610632565b60405161022c91906118b3565b60405180910390f35b61024f600480360381019061024a9190611b26565b6106cb565b60405161025c91906118dd565b60405180910390f35b61026d610714565b005b610277610867565b6040516102849190611b62565b60405180910390f35b610295610876565b6040516102a29190611b62565b60405180910390f35b6102b361089f565b6040516102c0919061178e565b60405180910390f35b6102e360048036038101906102de9190611858565b610931565b6040516102f091906118b3565b60405180910390f35b610313600480360381019061030e9190611b7d565b6109dc565b60405161032091906118b3565b60405180910390f35b610343600480360381019061033e9190611858565b610a8d565b60405161035091906118b3565b60405180910390f35b610373600480360381019061036e9190611858565b610b5a565b60405161038091906118b3565b60405180910390f35b6103a3600480360381019061039e9190611baa565b610b78565b6040516103b091906118dd565b60405180910390f35b6103d360048036038101906103ce9190611b26565b610bff565b005b6060600680546103e490611c19565b80601f016020809104026020016040519081016040528092919081815260200182805461041090611c19565b801561045d5780601f106104325761010080835404028352916020019161045d565b820191906000526020600020905b81548152906001019060200180831161044057829003601f168201915b5050505050905090565b600061047b610474610ca0565b8484610ca8565b6001905092915050565b6000600354905090565b600061049c848484610e73565b61055d846104a8610ca0565b610558856040518060600160405280602881526020016122c060289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061050e610ca0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111019092919063ffffffff16565b610ca8565b600190509392505050565b6000600460009054906101000a900460ff16905090565b600061062861058c610ca0565b84610623856002600061059d610ca0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461116590919063ffffffff16565b610ca8565b6001905092915050565b600061063e8484610b5a565b508373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fe19260aff97b920c7df27010903aeb9c8d2be5d310a2c67824cf3f15396e4c16858560405161069e929190611ca0565b60405180910390a36106af846111c3565b156106c0576106bf8484846111d6565b5b600190509392505050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61071c610ca0565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146107a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a090611d1c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000610871610876565b905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546108ae90611c19565b80601f01602080910402602001604051908101604052809291908181526020018280546108da90611c19565b80156109275780601f106108fc57610100808354040283529160200191610927565b820191906000526020600020905b81548152906001019060200180831161090a57829003601f168201915b5050505050905090565b600061093b610ca0565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146109c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109bf90611d1c565b60405180910390fd5b6109d28383611250565b6001905092915050565b60006109e6610ca0565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6a90611d1c565b60405180910390fd5b610a84610a7e610ca0565b836113f4565b60019050919050565b6000610b50610a9a610ca0565b84610b4b856040518060600160405280602581526020016122e86025913960026000610ac4610ca0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111019092919063ffffffff16565b610ca8565b6001905092915050565b6000610b6e610b67610ca0565b8484610e73565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610c07610ca0565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8b90611d1c565b60405180910390fd5b610c9d8161157e565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0f90611dae565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7f90611e40565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e6691906118dd565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ee3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eda90611ed2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4a90611f64565b60405180910390fd5b610fbf8160405180606001604052806026815260200161229a60269139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111019092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061105481600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461116590919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516110f491906118dd565b60405180910390a3505050565b6000838311158290611149576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611140919061178e565b60405180910390fd5b50600083856111589190611fb3565b9050809150509392505050565b60008082846111749190611fe7565b9050838110156111b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b090612089565b60405180910390fd5b8091505092915050565b600080823b905060008111915050919050565b60008390508073ffffffffffffffffffffffffffffffffffffffff1663a4c0ed363385856040518463ffffffff1660e01b8152600401611218939291906120a9565b600060405180830381600087803b15801561123257600080fd5b505af1158015611246573d6000803e3d6000fd5b5050505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b790612159565b60405180910390fd5b61132c8160405180606001604052806022815260200161227860229139600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111019092919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611384816003546116ab90919063ffffffff16565b600381905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516113e891906118dd565b60405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611464576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145b906121c5565b60405180910390fd5b6114798160035461116590919063ffffffff16565b6003819055506114d181600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461116590919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161157291906118dd565b60405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156115ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e590612257565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006116ed83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611101565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561172f578082015181840152602081019050611714565b8381111561173e576000848401525b50505050565b6000601f19601f8301169050919050565b6000611760826116f5565b61176a8185611700565b935061177a818560208601611711565b61178381611744565b840191505092915050565b600060208201905081810360008301526117a88184611755565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006117ef826117c4565b9050919050565b6117ff816117e4565b811461180a57600080fd5b50565b60008135905061181c816117f6565b92915050565b6000819050919050565b61183581611822565b811461184057600080fd5b50565b6000813590506118528161182c565b92915050565b6000806040838503121561186f5761186e6117ba565b5b600061187d8582860161180d565b925050602061188e85828601611843565b9150509250929050565b60008115159050919050565b6118ad81611898565b82525050565b60006020820190506118c860008301846118a4565b92915050565b6118d781611822565b82525050565b60006020820190506118f260008301846118ce565b92915050565b600080600060608486031215611911576119106117ba565b5b600061191f8682870161180d565b93505060206119308682870161180d565b925050604061194186828701611843565b9150509250925092565b600060ff82169050919050565b6119618161194b565b82525050565b600060208201905061197c6000830184611958565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6119c482611744565b810181811067ffffffffffffffff821117156119e3576119e261198c565b5b80604052505050565b60006119f66117b0565b9050611a0282826119bb565b919050565b600067ffffffffffffffff821115611a2257611a2161198c565b5b611a2b82611744565b9050602081019050919050565b82818337600083830152505050565b6000611a5a611a5584611a07565b6119ec565b905082815260208101848484011115611a7657611a75611987565b5b611a81848285611a38565b509392505050565b600082601f830112611a9e57611a9d611982565b5b8135611aae848260208601611a47565b91505092915050565b600080600060608486031215611ad057611acf6117ba565b5b6000611ade8682870161180d565b9350506020611aef86828701611843565b925050604084013567ffffffffffffffff811115611b1057611b0f6117bf565b5b611b1c86828701611a89565b9150509250925092565b600060208284031215611b3c57611b3b6117ba565b5b6000611b4a8482850161180d565b91505092915050565b611b5c816117e4565b82525050565b6000602082019050611b776000830184611b53565b92915050565b600060208284031215611b9357611b926117ba565b5b6000611ba184828501611843565b91505092915050565b60008060408385031215611bc157611bc06117ba565b5b6000611bcf8582860161180d565b9250506020611be08582860161180d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611c3157607f821691505b60208210811415611c4557611c44611bea565b5b50919050565b600081519050919050565b600082825260208201905092915050565b6000611c7282611c4b565b611c7c8185611c56565b9350611c8c818560208601611711565b611c9581611744565b840191505092915050565b6000604082019050611cb560008301856118ce565b8181036020830152611cc78184611c67565b90509392505050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611d06602083611700565b9150611d1182611cd0565b602082019050919050565b60006020820190508181036000830152611d3581611cf9565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611d98602483611700565b9150611da382611d3c565b604082019050919050565b60006020820190508181036000830152611dc781611d8b565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e2a602283611700565b9150611e3582611dce565b604082019050919050565b60006020820190508181036000830152611e5981611e1d565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611ebc602583611700565b9150611ec782611e60565b604082019050919050565b60006020820190508181036000830152611eeb81611eaf565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611f4e602383611700565b9150611f5982611ef2565b604082019050919050565b60006020820190508181036000830152611f7d81611f41565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611fbe82611822565b9150611fc983611822565b925082821015611fdc57611fdb611f84565b5b828203905092915050565b6000611ff282611822565b9150611ffd83611822565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561203257612031611f84565b5b828201905092915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000612073601b83611700565b915061207e8261203d565b602082019050919050565b600060208201905081810360008301526120a281612066565b9050919050565b60006060820190506120be6000830186611b53565b6120cb60208301856118ce565b81810360408301526120dd8184611c67565b9050949350505050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612143602183611700565b915061214e826120e7565b604082019050919050565b6000602082019050818103600083015261217281612136565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006121af601f83611700565b91506121ba82612179565b602082019050919050565b600060208201905081810360008301526121de816121a2565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612241602683611700565b915061224c826121e5565b604082019050919050565b6000602082019050818103600083015261227081612234565b905091905056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220f6cb221ca973e48a2d1fe42e7b8b1fae53c542c065afe52d788e6842b59ba58f64736f6c634300080a0033

Deployed Bytecode Sourcemap

11249:9314:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12385:85;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13496:154;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12532:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14110:306;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12085:85;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14813:210;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19791:328;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12685:112;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10410:130;;;:::i;:::-;;11933:85;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9808:73;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12235:89;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16294:136;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15984:130;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15512:261;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13002:158;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13220:136;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10685:103;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12385:85;12424:13;12457:5;12450:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12385:85;:::o;13496:154::-;13564:4;13581:39;13590:12;:10;:12::i;:::-;13604:7;13613:6;13581:8;:39::i;:::-;13638:4;13631:11;;13496:154;;;;:::o;12532:93::-;12578:7;12605:12;;12598:19;;12532:93;:::o;14110:306::-;14201:4;14218:36;14228:6;14236:9;14247:6;14218:9;:36::i;:::-;14265:121;14274:6;14282:12;:10;:12::i;:::-;14296:89;14334:6;14296:89;;;;;;;;;;;;;;;;;:11;:19;14308:6;14296:19;;;;;;;;;;;;;;;:33;14316:12;:10;:12::i;:::-;14296:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;14265:8;:121::i;:::-;14404:4;14397:11;;14110:306;;;;;:::o;12085:85::-;12128:5;12153:9;;;;;;;;;;;12146:16;;12085:85;:::o;14813:210::-;14893:4;14910:83;14919:12;:10;:12::i;:::-;14933:7;14942:50;14981:10;14942:11;:25;14954:12;:10;:12::i;:::-;14942:25;;;;;;;;;;;;;;;:34;14968:7;14942:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;14910:8;:83::i;:::-;15011:4;15004:11;;14813:210;;;;:::o;19791:328::-;19888:12;19918:21;19927:3;19932:6;19918:8;:21::i;:::-;;19976:3;19955:40;;19964:10;19955:40;;;19981:6;19989:5;19955:40;;;;;;;:::i;:::-;;;;;;;;20010:15;20021:3;20010:10;:15::i;:::-;20006:84;;;20042:36;20059:3;20064:6;20072:5;20042:16;:36::i;:::-;20006:84;20107:4;20100:11;;19791:328;;;;;:::o;12685:112::-;12744:7;12771:9;:18;12781:7;12771:18;;;;;;;;;;;;;;;;12764:25;;12685:112;;;:::o;10410:130::-;10012:12;:10;:12::i;:::-;10002:22;;:6;;;;;;;;;;:22;;;9994:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;10505:1:::1;10468:40;;10489:6;::::0;::::1;;;;;;;;10468:40;;;;;;;;;;;;10532:1;10515:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;10410:130::o:0;11933:85::-;11976:7;12003;:5;:7::i;:::-;11996:14;;11933:85;:::o;9808:73::-;9846:7;9869:6;;;;;;;;;;;9862:13;;9808:73;:::o;12235:89::-;12276:13;12309:7;12302:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12235:89;:::o;16294:136::-;16364:4;10012:12;:10;:12::i;:::-;10002:22;;:6;;;;;;;;;;:22;;;9994:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;16381:19:::1;16387:3;16392:7;16381:5;:19::i;:::-;16418:4;16411:11;;16294:136:::0;;;;:::o;15984:130::-;16040:4;10012:12;:10;:12::i;:::-;10002:22;;:6;;;;;;;;;;:22;;;9994:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;16057:27:::1;16063:12;:10;:12::i;:::-;16077:6;16057:5;:27::i;:::-;16102:4;16095:11;;15984:130:::0;;;:::o;15512:261::-;15597:4;15614:129;15623:12;:10;:12::i;:::-;15637:7;15646:96;15685:15;15646:96;;;;;;;;;;;;;;;;;:11;:25;15658:12;:10;:12::i;:::-;15646:25;;;;;;;;;;;;;;;:34;15672:7;15646:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;15614:8;:129::i;:::-;15761:4;15754:11;;15512:261;;;;:::o;13002:158::-;13071:4;13088:42;13098:12;:10;:12::i;:::-;13112:9;13123:6;13088:9;:42::i;:::-;13148:4;13141:11;;13002:158;;;;:::o;13220:136::-;13294:7;13321:11;:18;13333:5;13321:18;;;;;;;;;;;;;;;:27;13340:7;13321:27;;;;;;;;;;;;;;;;13314:34;;13220:136;;;;:::o;10685:103::-;10012:12;:10;:12::i;:::-;10002:22;;:6;;;;;;;;;;:22;;;9994:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;10754:28:::1;10773:8;10754:18;:28::i;:::-;10685:103:::0;:::o;3201:90::-;3246:7;3273:10;3266:17;;3201:90;:::o;19057:338::-;19168:1;19151:19;;:5;:19;;;;19143:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19249:1;19230:21;;:7;:21;;;;19222:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19333:6;19303:11;:18;19315:5;19303:18;;;;;;;;;;;;;;;:27;19322:7;19303:27;;;;;;;;;;;;;;;:36;;;;19371:7;19355:32;;19364:5;19355:32;;;19380:6;19355:32;;;;;;:::i;:::-;;;;;;;;19057:338;;;:::o;16907:471::-;17023:1;17005:20;;:6;:20;;;;16997:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;17107:1;17086:23;;:9;:23;;;;17078:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;17182;17204:6;17182:71;;;;;;;;;;;;;;;;;:9;:17;17192:6;17182:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;17162:9;:17;17172:6;17162:17;;;;;;;;;;;;;;;:91;;;;17287:32;17312:6;17287:9;:20;17297:9;17287:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;17264:9;:20;17274:9;17264:20;;;;;;;;;;;;;;;:55;;;;17352:9;17335:35;;17344:6;17335:35;;;17363:6;17335:35;;;;;;:::i;:::-;;;;;;;;16907:471;;;:::o;5259:192::-;5345:7;5378:1;5373;:6;;5381:12;5365:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;5405:9;5421:1;5417;:5;;;;:::i;:::-;5405:17;;5442:1;5435:8;;;5259:192;;;;;:::o;4372:181::-;4430:7;4450:9;4466:1;4462;:5;;;;:::i;:::-;4450:17;;4491:1;4486;:6;;4478:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;4544:1;4537:8;;;4372:181;;;;:::o;20367:193::-;20434:12;20464:11;20518:5;20506:18;20496:28;;20551:1;20542:6;:10;20535:17;;;20367:193;;;:::o;20143:216::-;20244:23;20285:3;20244:45;;20300:8;:24;;;20325:10;20337:6;20345:5;20300:51;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20233:126;20143:216;;;:::o;18281:348::-;18376:1;18357:21;;:7;:21;;;;18349:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;18450:68;18473:6;18450:68;;;;;;;;;;;;;;;;;:9;:18;18460:7;18450:18;;;;;;;;;;;;;;;;:22;;:68;;;;;:::i;:::-;18429:9;:18;18439:7;18429:18;;;;;;;;;;;;;;;:89;;;;18544:24;18561:6;18544:12;;:16;;:24;;;;:::i;:::-;18529:12;:39;;;;18610:1;18584:37;;18593:7;18584:37;;;18614:6;18584:37;;;;;;:::i;:::-;;;;;;;;18281:348;;:::o;17651:308::-;17746:1;17727:21;;:7;:21;;;;17719:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;17812:24;17829:6;17812:12;;:16;;:24;;;;:::i;:::-;17797:12;:39;;;;17868:30;17891:6;17868:9;:18;17878:7;17868:18;;;;;;;;;;;;;;;;:22;;:30;;;;:::i;:::-;17847:9;:18;17857:7;17847:18;;;;;;;;;;;;;;;:51;;;;17935:7;17914:37;;17931:1;17914:37;;;17944:6;17914:37;;;;;;:::i;:::-;;;;;;;;17651:308;;:::o;10886:215::-;10976:1;10956:22;;:8;:22;;;;10948:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;11062:8;11033:38;;11054:6;;;;;;;;;;11033:38;;;;;;;;;;;;11087:8;11078:6;;:17;;;;;;;;;;;;;;;;;;10886:215;:::o;4828:136::-;4886:7;4913:43;4917:1;4920;4913:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;4906:50;;4828:136;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1397:75::-;1430:6;1463:2;1457:9;1447:19;;1397:75;:::o;1478:117::-;1587:1;1584;1577:12;1601:117;1710:1;1707;1700:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:118::-;3581:24;3599:5;3581:24;:::i;:::-;3576:3;3569:37;3494:118;;:::o;3618:222::-;3711:4;3749:2;3738:9;3734:18;3726:26;;3762:71;3830:1;3819:9;3815:17;3806:6;3762:71;:::i;:::-;3618:222;;;;:::o;3846:619::-;3923:6;3931;3939;3988:2;3976:9;3967:7;3963:23;3959:32;3956:119;;;3994:79;;:::i;:::-;3956:119;4114:1;4139:53;4184:7;4175:6;4164:9;4160:22;4139:53;:::i;:::-;4129:63;;4085:117;4241:2;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4212:118;4369:2;4395:53;4440:7;4431:6;4420:9;4416:22;4395:53;:::i;:::-;4385:63;;4340:118;3846:619;;;;;:::o;4471:86::-;4506:7;4546:4;4539:5;4535:16;4524:27;;4471:86;;;:::o;4563:112::-;4646:22;4662:5;4646:22;:::i;:::-;4641:3;4634:35;4563:112;;:::o;4681:214::-;4770:4;4808:2;4797:9;4793:18;4785:26;;4821:67;4885:1;4874:9;4870:17;4861:6;4821:67;:::i;:::-;4681:214;;;;:::o;4901:117::-;5010:1;5007;5000:12;5024:117;5133:1;5130;5123:12;5147:180;5195:77;5192:1;5185:88;5292:4;5289:1;5282:15;5316:4;5313:1;5306:15;5333:281;5416:27;5438:4;5416:27;:::i;:::-;5408:6;5404:40;5546:6;5534:10;5531:22;5510:18;5498:10;5495:34;5492:62;5489:88;;;5557:18;;:::i;:::-;5489:88;5597:10;5593:2;5586:22;5376:238;5333:281;;:::o;5620:129::-;5654:6;5681:20;;:::i;:::-;5671:30;;5710:33;5738:4;5730:6;5710:33;:::i;:::-;5620:129;;;:::o;5755:307::-;5816:4;5906:18;5898:6;5895:30;5892:56;;;5928:18;;:::i;:::-;5892:56;5966:29;5988:6;5966:29;:::i;:::-;5958:37;;6050:4;6044;6040:15;6032:23;;5755:307;;;:::o;6068:154::-;6152:6;6147:3;6142;6129:30;6214:1;6205:6;6200:3;6196:16;6189:27;6068:154;;;:::o;6228:410::-;6305:5;6330:65;6346:48;6387:6;6346:48;:::i;:::-;6330:65;:::i;:::-;6321:74;;6418:6;6411:5;6404:21;6456:4;6449:5;6445:16;6494:3;6485:6;6480:3;6476:16;6473:25;6470:112;;;6501:79;;:::i;:::-;6470:112;6591:41;6625:6;6620:3;6615;6591:41;:::i;:::-;6311:327;6228:410;;;;;:::o;6657:338::-;6712:5;6761:3;6754:4;6746:6;6742:17;6738:27;6728:122;;6769:79;;:::i;:::-;6728:122;6886:6;6873:20;6911:78;6985:3;6977:6;6970:4;6962:6;6958:17;6911:78;:::i;:::-;6902:87;;6718:277;6657:338;;;;:::o;7001:797::-;7087:6;7095;7103;7152:2;7140:9;7131:7;7127:23;7123:32;7120:119;;;7158:79;;:::i;:::-;7120:119;7278:1;7303:53;7348:7;7339:6;7328:9;7324:22;7303:53;:::i;:::-;7293:63;;7249:117;7405:2;7431:53;7476:7;7467:6;7456:9;7452:22;7431:53;:::i;:::-;7421:63;;7376:118;7561:2;7550:9;7546:18;7533:32;7592:18;7584:6;7581:30;7578:117;;;7614:79;;:::i;:::-;7578:117;7719:62;7773:7;7764:6;7753:9;7749:22;7719:62;:::i;:::-;7709:72;;7504:287;7001:797;;;;;:::o;7804:329::-;7863:6;7912:2;7900:9;7891:7;7887:23;7883:32;7880:119;;;7918:79;;:::i;:::-;7880:119;8038:1;8063:53;8108:7;8099:6;8088:9;8084:22;8063:53;:::i;:::-;8053:63;;8009:117;7804:329;;;;:::o;8139:118::-;8226:24;8244:5;8226:24;:::i;:::-;8221:3;8214:37;8139:118;;:::o;8263:222::-;8356:4;8394:2;8383:9;8379:18;8371:26;;8407:71;8475:1;8464:9;8460:17;8451:6;8407:71;:::i;:::-;8263:222;;;;:::o;8491:329::-;8550:6;8599:2;8587:9;8578:7;8574:23;8570:32;8567:119;;;8605:79;;:::i;:::-;8567:119;8725:1;8750:53;8795:7;8786:6;8775:9;8771:22;8750:53;:::i;:::-;8740:63;;8696:117;8491:329;;;;:::o;8826:474::-;8894:6;8902;8951:2;8939:9;8930:7;8926:23;8922:32;8919:119;;;8957:79;;:::i;:::-;8919:119;9077:1;9102:53;9147:7;9138:6;9127:9;9123:22;9102:53;:::i;:::-;9092:63;;9048:117;9204:2;9230:53;9275:7;9266:6;9255:9;9251:22;9230:53;:::i;:::-;9220:63;;9175:118;8826:474;;;;;:::o;9306:180::-;9354:77;9351:1;9344:88;9451:4;9448:1;9441:15;9475:4;9472:1;9465:15;9492:320;9536:6;9573:1;9567:4;9563:12;9553:22;;9620:1;9614:4;9610:12;9641:18;9631:81;;9697:4;9689:6;9685:17;9675:27;;9631:81;9759:2;9751:6;9748:14;9728:18;9725:38;9722:84;;;9778:18;;:::i;:::-;9722:84;9543:269;9492:320;;;:::o;9818:98::-;9869:6;9903:5;9897:12;9887:22;;9818:98;;;:::o;9922:168::-;10005:11;10039:6;10034:3;10027:19;10079:4;10074:3;10070:14;10055:29;;9922:168;;;;:::o;10096:360::-;10182:3;10210:38;10242:5;10210:38;:::i;:::-;10264:70;10327:6;10322:3;10264:70;:::i;:::-;10257:77;;10343:52;10388:6;10383:3;10376:4;10369:5;10365:16;10343:52;:::i;:::-;10420:29;10442:6;10420:29;:::i;:::-;10415:3;10411:39;10404:46;;10186:270;10096:360;;;;:::o;10462:419::-;10601:4;10639:2;10628:9;10624:18;10616:26;;10652:71;10720:1;10709:9;10705:17;10696:6;10652:71;:::i;:::-;10770:9;10764:4;10760:20;10755:2;10744:9;10740:18;10733:48;10798:76;10869:4;10860:6;10798:76;:::i;:::-;10790:84;;10462:419;;;;;:::o;10887:182::-;11027:34;11023:1;11015:6;11011:14;11004:58;10887:182;:::o;11075:366::-;11217:3;11238:67;11302:2;11297:3;11238:67;:::i;:::-;11231:74;;11314:93;11403:3;11314:93;:::i;:::-;11432:2;11427:3;11423:12;11416:19;;11075:366;;;:::o;11447:419::-;11613:4;11651:2;11640:9;11636:18;11628:26;;11700:9;11694:4;11690:20;11686:1;11675:9;11671:17;11664:47;11728:131;11854:4;11728:131;:::i;:::-;11720:139;;11447:419;;;:::o;11872:223::-;12012:34;12008:1;12000:6;11996:14;11989:58;12081:6;12076:2;12068:6;12064:15;12057:31;11872:223;:::o;12101:366::-;12243:3;12264:67;12328:2;12323:3;12264:67;:::i;:::-;12257:74;;12340:93;12429:3;12340:93;:::i;:::-;12458:2;12453:3;12449:12;12442:19;;12101:366;;;:::o;12473:419::-;12639:4;12677:2;12666:9;12662:18;12654:26;;12726:9;12720:4;12716:20;12712:1;12701:9;12697:17;12690:47;12754:131;12880:4;12754:131;:::i;:::-;12746:139;;12473:419;;;:::o;12898:221::-;13038:34;13034:1;13026:6;13022:14;13015:58;13107:4;13102:2;13094:6;13090:15;13083:29;12898:221;:::o;13125:366::-;13267:3;13288:67;13352:2;13347:3;13288:67;:::i;:::-;13281:74;;13364:93;13453:3;13364:93;:::i;:::-;13482:2;13477:3;13473:12;13466:19;;13125:366;;;:::o;13497:419::-;13663:4;13701:2;13690:9;13686:18;13678:26;;13750:9;13744:4;13740:20;13736:1;13725:9;13721:17;13714:47;13778:131;13904:4;13778:131;:::i;:::-;13770:139;;13497:419;;;:::o;13922:224::-;14062:34;14058:1;14050:6;14046:14;14039:58;14131:7;14126:2;14118:6;14114:15;14107:32;13922:224;:::o;14152:366::-;14294:3;14315:67;14379:2;14374:3;14315:67;:::i;:::-;14308:74;;14391:93;14480:3;14391:93;:::i;:::-;14509:2;14504:3;14500:12;14493:19;;14152:366;;;:::o;14524:419::-;14690:4;14728:2;14717:9;14713:18;14705:26;;14777:9;14771:4;14767:20;14763:1;14752:9;14748:17;14741:47;14805:131;14931:4;14805:131;:::i;:::-;14797:139;;14524:419;;;:::o;14949:222::-;15089:34;15085:1;15077:6;15073:14;15066:58;15158:5;15153:2;15145:6;15141:15;15134:30;14949:222;:::o;15177:366::-;15319:3;15340:67;15404:2;15399:3;15340:67;:::i;:::-;15333:74;;15416:93;15505:3;15416:93;:::i;:::-;15534:2;15529:3;15525:12;15518:19;;15177:366;;;:::o;15549:419::-;15715:4;15753:2;15742:9;15738:18;15730:26;;15802:9;15796:4;15792:20;15788:1;15777:9;15773:17;15766:47;15830:131;15956:4;15830:131;:::i;:::-;15822:139;;15549:419;;;:::o;15974:180::-;16022:77;16019:1;16012:88;16119:4;16116:1;16109:15;16143:4;16140:1;16133:15;16160:191;16200:4;16220:20;16238:1;16220:20;:::i;:::-;16215:25;;16254:20;16272:1;16254:20;:::i;:::-;16249:25;;16293:1;16290;16287:8;16284:34;;;16298:18;;:::i;:::-;16284:34;16343:1;16340;16336:9;16328:17;;16160:191;;;;:::o;16357:305::-;16397:3;16416:20;16434:1;16416:20;:::i;:::-;16411:25;;16450:20;16468:1;16450:20;:::i;:::-;16445:25;;16604:1;16536:66;16532:74;16529:1;16526:81;16523:107;;;16610:18;;:::i;:::-;16523:107;16654:1;16651;16647:9;16640:16;;16357:305;;;;:::o;16668:177::-;16808:29;16804:1;16796:6;16792:14;16785:53;16668:177;:::o;16851:366::-;16993:3;17014:67;17078:2;17073:3;17014:67;:::i;:::-;17007:74;;17090:93;17179:3;17090:93;:::i;:::-;17208:2;17203:3;17199:12;17192:19;;16851:366;;;:::o;17223:419::-;17389:4;17427:2;17416:9;17412:18;17404:26;;17476:9;17470:4;17466:20;17462:1;17451:9;17447:17;17440:47;17504:131;17630:4;17504:131;:::i;:::-;17496:139;;17223:419;;;:::o;17648:529::-;17815:4;17853:2;17842:9;17838:18;17830:26;;17866:71;17934:1;17923:9;17919:17;17910:6;17866:71;:::i;:::-;17947:72;18015:2;18004:9;18000:18;17991:6;17947:72;:::i;:::-;18066:9;18060:4;18056:20;18051:2;18040:9;18036:18;18029:48;18094:76;18165:4;18156:6;18094:76;:::i;:::-;18086:84;;17648:529;;;;;;:::o;18183:220::-;18323:34;18319:1;18311:6;18307:14;18300:58;18392:3;18387:2;18379:6;18375:15;18368:28;18183:220;:::o;18409:366::-;18551:3;18572:67;18636:2;18631:3;18572:67;:::i;:::-;18565:74;;18648:93;18737:3;18648:93;:::i;:::-;18766:2;18761:3;18757:12;18750:19;;18409:366;;;:::o;18781:419::-;18947:4;18985:2;18974:9;18970:18;18962:26;;19034:9;19028:4;19024:20;19020:1;19009:9;19005:17;18998:47;19062:131;19188:4;19062:131;:::i;:::-;19054:139;;18781:419;;;:::o;19206:181::-;19346:33;19342:1;19334:6;19330:14;19323:57;19206:181;:::o;19393:366::-;19535:3;19556:67;19620:2;19615:3;19556:67;:::i;:::-;19549:74;;19632:93;19721:3;19632:93;:::i;:::-;19750:2;19745:3;19741:12;19734:19;;19393:366;;;:::o;19765:419::-;19931:4;19969:2;19958:9;19954:18;19946:26;;20018:9;20012:4;20008:20;20004:1;19993:9;19989:17;19982:47;20046:131;20172:4;20046:131;:::i;:::-;20038:139;;19765:419;;;:::o;20190:225::-;20330:34;20326:1;20318:6;20314:14;20307:58;20399:8;20394:2;20386:6;20382:15;20375:33;20190:225;:::o;20421:366::-;20563:3;20584:67;20648:2;20643:3;20584:67;:::i;:::-;20577:74;;20660:93;20749:3;20660:93;:::i;:::-;20778:2;20773:3;20769:12;20762:19;;20421:366;;;:::o;20793:419::-;20959:4;20997:2;20986:9;20982:18;20974:26;;21046:9;21040:4;21036:20;21032:1;21021:9;21017:17;21010:47;21074:131;21200:4;21074:131;:::i;:::-;21066:139;;20793:419;;;:::o

Swarm Source

ipfs://f6cb221ca973e48a2d1fe42e7b8b1fae53c542c065afe52d788e6842b59ba58f

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

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

OVERVIEW

Orchai - DeFi Orchestrator Powered by AI - provides a set of multiple protocols and features, which assist users not only in optimizing the asset flow but also in improving the management & investing strategy with 2 key features: Cross-chain & AI application.

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.