ETH Price: $2,046.56 (-1.68%)

Contract

0x2d869aE129e308F94Cc47E66eaefb448CEe0d03e
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

More Info

Private Name Tags

TokenTracker

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve247384762026-03-26 1:33:4731 hrs ago1774488827IN
OraiDEX: ORAIX Token
0 ETH0.000005730.12158639
Transfer247383482026-03-26 1:08:1131 hrs ago1774487291IN
OraiDEX: ORAIX Token
0 ETH0.000005690.11863211
Approve246988632026-03-20 12:58:356 days ago1774011515IN
OraiDEX: ORAIX Token
0 ETH0.00000230.04875486
Approve246902112026-03-19 8:03:118 days ago1773907391IN
OraiDEX: ORAIX Token
0 ETH0.000006390.1362508
Transfer246900862026-03-19 7:38:118 days ago1773905891IN
OraiDEX: ORAIX Token
0 ETH0.000005360.15042321
Approve246900582026-03-19 7:32:358 days ago1773905555IN
OraiDEX: ORAIX Token
0 ETH0.000011170.23824299
Transfer246900262026-03-19 7:26:118 days ago1773905171IN
OraiDEX: ORAIX Token
0 ETH0.000010950.30705383
Transfer246900112026-03-19 7:23:118 days ago1773904991IN
OraiDEX: ORAIX Token
0 ETH0.000008020.22486174
Transfer246899832026-03-19 7:17:358 days ago1773904655IN
OraiDEX: ORAIX Token
0 ETH0.000008320.15769823
Approve246898932026-03-19 6:59:358 days ago1773903575IN
OraiDEX: ORAIX Token
0 ETH0.000009180.19581823
Approve246657322026-03-15 21:58:1111 days ago1773611891IN
OraiDEX: ORAIX Token
0 ETH0.000001290.05212043
Approve246237062026-03-10 1:11:3517 days ago1773105095IN
OraiDEX: ORAIX Token
0 ETH0.000001630.03479567
Approve246236862026-03-10 1:07:1117 days ago1773104831IN
OraiDEX: ORAIX Token
0 ETH0.000001510.03221404
Approve245887092026-03-05 3:54:5922 days ago1772682899IN
OraiDEX: ORAIX Token
0 ETH0.000008240.1745922
Approve245735702026-03-03 1:13:2324 days ago1772500403IN
OraiDEX: ORAIX Token
0 ETH0.000072471.53505253
Approve245735682026-03-03 1:12:5924 days ago1772500379IN
OraiDEX: ORAIX Token
0 ETH0.000005150.10926045
Approve245374372026-02-26 0:14:3529 days ago1772064875IN
OraiDEX: ORAIX Token
0 ETH0.000018670.39773567
Approve245068192026-02-21 17:45:1133 days ago1771695911IN
OraiDEX: ORAIX Token
0 ETH0.000049381.0473151
Transfer244422862026-02-12 17:48:4742 days ago1770918527IN
OraiDEX: ORAIX Token
0 ETH0.00001780.57610027
Approve243517222026-01-31 1:59:2355 days ago1769824763IN
OraiDEX: ORAIX Token
0 ETH0.000007880.16801755
Approve243019742026-01-24 3:30:1162 days ago1769225411IN
OraiDEX: ORAIX Token
0 ETH0.000050081.06073357
Approve242663382026-01-19 4:10:3567 days ago1768795835IN
OraiDEX: ORAIX Token
0 ETH0.000006790.14495349
Approve242258192026-01-13 12:33:1172 days ago1768307591IN
OraiDEX: ORAIX Token
0 ETH0.000008450.1794182
Approve242151502026-01-12 0:47:4774 days ago1768178867IN
OraiDEX: ORAIX Token
0 ETH0.000006230.13283117
Approve242151352026-01-12 0:44:4774 days ago1768178687IN
OraiDEX: ORAIX Token
0 ETH0.00000620.13235495
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
OraixToken

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2024-02-29
*/

// 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 OraixToken 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 = "OraiDEX Token";
        _symbol = "ORAIX";
        _decimals = 18;
        _totalSupply = 50 * 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 contact.
    * @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

API
[{"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"}]

60806040523480156200001157600080fd5b506000620000246200024260201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506040518060400160405280600d81526020017f4f72616944455820546f6b656e00000000000000000000000000000000000000815250600690805190602001906200010f9291906200024a565b506040518060400160405280600581526020017f4f52414958000000000000000000000000000000000000000000000000000000815250600590805190602001906200015d9291906200024a565b506012600460006101000a81548160ff021916908360ff1602179055506a295be96e64066972000000600381905550600354600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503373ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60035460405162000234919062000315565b60405180910390a362000397565b600033905090565b828054620002589062000361565b90600052602060002090601f0160209004810192826200027c5760008555620002c8565b82601f106200029757805160ff1916838001178555620002c8565b82800160010185558215620002c8579182015b82811115620002c7578251825591602001919060010190620002aa565b5b509050620002d79190620002db565b5090565b5b80821115620002f6576000816000905550600101620002dc565b5090565b6000819050919050565b6200030f81620002fa565b82525050565b60006020820190506200032c600083018462000304565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200037a57607f821691505b6020821081141562000391576200039062000332565b5b50919050565b61234280620003a76000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c8063893d20e8116100a2578063a0712d6811610071578063a0712d68146102f9578063a457c2d714610329578063a9059cbb14610359578063dd62ed3e14610389578063f2fde38b146103b957610116565b8063893d20e81461026f5780638da5cb5b1461028d57806395d89b41146102ab5780639dc29fac146102c957610116565b8063313ce567116100e9578063313ce567146101b757806339509351146101d55780634000aea01461020557806370a0823114610235578063715018a61461026557610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461016957806323b872dd14610187575b600080fd5b6101236103d5565b604051610130919061178e565b60405180910390f35b610153600480360381019061014e9190611858565b610467565b60405161016091906118b3565b60405180910390f35b610171610485565b60405161017e91906118dd565b60405180910390f35b6101a1600480360381019061019c91906118f8565b61048f565b6040516101ae91906118b3565b60405180910390f35b6101bf610568565b6040516101cc9190611967565b60405180910390f35b6101ef60048036038101906101ea9190611858565b61057f565b6040516101fc91906118b3565b60405180910390f35b61021f600480360381019061021a9190611ab7565b610632565b60405161022c91906118b3565b60405180910390f35b61024f600480360381019061024a9190611b26565b6106cb565b60405161025c91906118dd565b60405180910390f35b61026d610714565b005b610277610867565b6040516102849190611b62565b60405180910390f35b610295610876565b6040516102a29190611b62565b60405180910390f35b6102b361089f565b6040516102c0919061178e565b60405180910390f35b6102e360048036038101906102de9190611858565b610931565b6040516102f091906118b3565b60405180910390f35b610313600480360381019061030e9190611b7d565b6109dc565b60405161032091906118b3565b60405180910390f35b610343600480360381019061033e9190611858565b610a8d565b60405161035091906118b3565b60405180910390f35b610373600480360381019061036e9190611858565b610b5a565b60405161038091906118b3565b60405180910390f35b6103a3600480360381019061039e9190611baa565b610b78565b6040516103b091906118dd565b60405180910390f35b6103d360048036038101906103ce9190611b26565b610bff565b005b6060600680546103e490611c19565b80601f016020809104026020016040519081016040528092919081815260200182805461041090611c19565b801561045d5780601f106104325761010080835404028352916020019161045d565b820191906000526020600020905b81548152906001019060200180831161044057829003601f168201915b5050505050905090565b600061047b610474610ca0565b8484610ca8565b6001905092915050565b6000600354905090565b600061049c848484610e73565b61055d846104a8610ca0565b610558856040518060600160405280602881526020016122c060289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061050e610ca0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111019092919063ffffffff16565b610ca8565b600190509392505050565b6000600460009054906101000a900460ff16905090565b600061062861058c610ca0565b84610623856002600061059d610ca0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461116590919063ffffffff16565b610ca8565b6001905092915050565b600061063e8484610b5a565b508373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fe19260aff97b920c7df27010903aeb9c8d2be5d310a2c67824cf3f15396e4c16858560405161069e929190611ca0565b60405180910390a36106af846111c3565b156106c0576106bf8484846111d6565b5b600190509392505050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61071c610ca0565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146107a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a090611d1c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000610871610876565b905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546108ae90611c19565b80601f01602080910402602001604051908101604052809291908181526020018280546108da90611c19565b80156109275780601f106108fc57610100808354040283529160200191610927565b820191906000526020600020905b81548152906001019060200180831161090a57829003601f168201915b5050505050905090565b600061093b610ca0565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146109c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109bf90611d1c565b60405180910390fd5b6109d28383611250565b6001905092915050565b60006109e6610ca0565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6a90611d1c565b60405180910390fd5b610a84610a7e610ca0565b836113f4565b60019050919050565b6000610b50610a9a610ca0565b84610b4b856040518060600160405280602581526020016122e86025913960026000610ac4610ca0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111019092919063ffffffff16565b610ca8565b6001905092915050565b6000610b6e610b67610ca0565b8484610e73565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610c07610ca0565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8b90611d1c565b60405180910390fd5b610c9d8161157e565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0f90611dae565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7f90611e40565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e6691906118dd565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ee3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eda90611ed2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4a90611f64565b60405180910390fd5b610fbf8160405180606001604052806026815260200161229a60269139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111019092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061105481600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461116590919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516110f491906118dd565b60405180910390a3505050565b6000838311158290611149576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611140919061178e565b60405180910390fd5b50600083856111589190611fb3565b9050809150509392505050565b60008082846111749190611fe7565b9050838110156111b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b090612089565b60405180910390fd5b8091505092915050565b600080823b905060008111915050919050565b60008390508073ffffffffffffffffffffffffffffffffffffffff1663a4c0ed363385856040518463ffffffff1660e01b8152600401611218939291906120a9565b600060405180830381600087803b15801561123257600080fd5b505af1158015611246573d6000803e3d6000fd5b5050505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b790612159565b60405180910390fd5b61132c8160405180606001604052806022815260200161227860229139600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111019092919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611384816003546116ab90919063ffffffff16565b600381905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516113e891906118dd565b60405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611464576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145b906121c5565b60405180910390fd5b6114798160035461116590919063ffffffff16565b6003819055506114d181600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461116590919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161157291906118dd565b60405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156115ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e590612257565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006116ed83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611101565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561172f578082015181840152602081019050611714565b8381111561173e576000848401525b50505050565b6000601f19601f8301169050919050565b6000611760826116f5565b61176a8185611700565b935061177a818560208601611711565b61178381611744565b840191505092915050565b600060208201905081810360008301526117a88184611755565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006117ef826117c4565b9050919050565b6117ff816117e4565b811461180a57600080fd5b50565b60008135905061181c816117f6565b92915050565b6000819050919050565b61183581611822565b811461184057600080fd5b50565b6000813590506118528161182c565b92915050565b6000806040838503121561186f5761186e6117ba565b5b600061187d8582860161180d565b925050602061188e85828601611843565b9150509250929050565b60008115159050919050565b6118ad81611898565b82525050565b60006020820190506118c860008301846118a4565b92915050565b6118d781611822565b82525050565b60006020820190506118f260008301846118ce565b92915050565b600080600060608486031215611911576119106117ba565b5b600061191f8682870161180d565b93505060206119308682870161180d565b925050604061194186828701611843565b9150509250925092565b600060ff82169050919050565b6119618161194b565b82525050565b600060208201905061197c6000830184611958565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6119c482611744565b810181811067ffffffffffffffff821117156119e3576119e261198c565b5b80604052505050565b60006119f66117b0565b9050611a0282826119bb565b919050565b600067ffffffffffffffff821115611a2257611a2161198c565b5b611a2b82611744565b9050602081019050919050565b82818337600083830152505050565b6000611a5a611a5584611a07565b6119ec565b905082815260208101848484011115611a7657611a75611987565b5b611a81848285611a38565b509392505050565b600082601f830112611a9e57611a9d611982565b5b8135611aae848260208601611a47565b91505092915050565b600080600060608486031215611ad057611acf6117ba565b5b6000611ade8682870161180d565b9350506020611aef86828701611843565b925050604084013567ffffffffffffffff811115611b1057611b0f6117bf565b5b611b1c86828701611a89565b9150509250925092565b600060208284031215611b3c57611b3b6117ba565b5b6000611b4a8482850161180d565b91505092915050565b611b5c816117e4565b82525050565b6000602082019050611b776000830184611b53565b92915050565b600060208284031215611b9357611b926117ba565b5b6000611ba184828501611843565b91505092915050565b60008060408385031215611bc157611bc06117ba565b5b6000611bcf8582860161180d565b9250506020611be08582860161180d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611c3157607f821691505b60208210811415611c4557611c44611bea565b5b50919050565b600081519050919050565b600082825260208201905092915050565b6000611c7282611c4b565b611c7c8185611c56565b9350611c8c818560208601611711565b611c9581611744565b840191505092915050565b6000604082019050611cb560008301856118ce565b8181036020830152611cc78184611c67565b90509392505050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611d06602083611700565b9150611d1182611cd0565b602082019050919050565b60006020820190508181036000830152611d3581611cf9565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611d98602483611700565b9150611da382611d3c565b604082019050919050565b60006020820190508181036000830152611dc781611d8b565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e2a602283611700565b9150611e3582611dce565b604082019050919050565b60006020820190508181036000830152611e5981611e1d565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611ebc602583611700565b9150611ec782611e60565b604082019050919050565b60006020820190508181036000830152611eeb81611eaf565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611f4e602383611700565b9150611f5982611ef2565b604082019050919050565b60006020820190508181036000830152611f7d81611f41565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611fbe82611822565b9150611fc983611822565b925082821015611fdc57611fdb611f84565b5b828203905092915050565b6000611ff282611822565b9150611ffd83611822565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561203257612031611f84565b5b828201905092915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000612073601b83611700565b915061207e8261203d565b602082019050919050565b600060208201905081810360008301526120a281612066565b9050919050565b60006060820190506120be6000830186611b53565b6120cb60208301856118ce565b81810360408301526120dd8184611c67565b9050949350505050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612143602183611700565b915061214e826120e7565b604082019050919050565b6000602082019050818103600083015261217281612136565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006121af601f83611700565b91506121ba82612179565b602082019050919050565b600060208201905081810360008301526121de816121a2565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612241602683611700565b915061224c826121e5565b604082019050919050565b6000602082019050818103600083015261227081612234565b905091905056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220aa8df4eadea8579d7b6bcfbf84f9ba4c7c8ec583d511fa2c30cffdb49480ffc164736f6c634300080a0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101165760003560e01c8063893d20e8116100a2578063a0712d6811610071578063a0712d68146102f9578063a457c2d714610329578063a9059cbb14610359578063dd62ed3e14610389578063f2fde38b146103b957610116565b8063893d20e81461026f5780638da5cb5b1461028d57806395d89b41146102ab5780639dc29fac146102c957610116565b8063313ce567116100e9578063313ce567146101b757806339509351146101d55780634000aea01461020557806370a0823114610235578063715018a61461026557610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461016957806323b872dd14610187575b600080fd5b6101236103d5565b604051610130919061178e565b60405180910390f35b610153600480360381019061014e9190611858565b610467565b60405161016091906118b3565b60405180910390f35b610171610485565b60405161017e91906118dd565b60405180910390f35b6101a1600480360381019061019c91906118f8565b61048f565b6040516101ae91906118b3565b60405180910390f35b6101bf610568565b6040516101cc9190611967565b60405180910390f35b6101ef60048036038101906101ea9190611858565b61057f565b6040516101fc91906118b3565b60405180910390f35b61021f600480360381019061021a9190611ab7565b610632565b60405161022c91906118b3565b60405180910390f35b61024f600480360381019061024a9190611b26565b6106cb565b60405161025c91906118dd565b60405180910390f35b61026d610714565b005b610277610867565b6040516102849190611b62565b60405180910390f35b610295610876565b6040516102a29190611b62565b60405180910390f35b6102b361089f565b6040516102c0919061178e565b60405180910390f35b6102e360048036038101906102de9190611858565b610931565b6040516102f091906118b3565b60405180910390f35b610313600480360381019061030e9190611b7d565b6109dc565b60405161032091906118b3565b60405180910390f35b610343600480360381019061033e9190611858565b610a8d565b60405161035091906118b3565b60405180910390f35b610373600480360381019061036e9190611858565b610b5a565b60405161038091906118b3565b60405180910390f35b6103a3600480360381019061039e9190611baa565b610b78565b6040516103b091906118dd565b60405180910390f35b6103d360048036038101906103ce9190611b26565b610bff565b005b6060600680546103e490611c19565b80601f016020809104026020016040519081016040528092919081815260200182805461041090611c19565b801561045d5780601f106104325761010080835404028352916020019161045d565b820191906000526020600020905b81548152906001019060200180831161044057829003601f168201915b5050505050905090565b600061047b610474610ca0565b8484610ca8565b6001905092915050565b6000600354905090565b600061049c848484610e73565b61055d846104a8610ca0565b610558856040518060600160405280602881526020016122c060289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061050e610ca0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111019092919063ffffffff16565b610ca8565b600190509392505050565b6000600460009054906101000a900460ff16905090565b600061062861058c610ca0565b84610623856002600061059d610ca0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461116590919063ffffffff16565b610ca8565b6001905092915050565b600061063e8484610b5a565b508373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fe19260aff97b920c7df27010903aeb9c8d2be5d310a2c67824cf3f15396e4c16858560405161069e929190611ca0565b60405180910390a36106af846111c3565b156106c0576106bf8484846111d6565b5b600190509392505050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61071c610ca0565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146107a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a090611d1c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000610871610876565b905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546108ae90611c19565b80601f01602080910402602001604051908101604052809291908181526020018280546108da90611c19565b80156109275780601f106108fc57610100808354040283529160200191610927565b820191906000526020600020905b81548152906001019060200180831161090a57829003601f168201915b5050505050905090565b600061093b610ca0565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146109c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109bf90611d1c565b60405180910390fd5b6109d28383611250565b6001905092915050565b60006109e6610ca0565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6a90611d1c565b60405180910390fd5b610a84610a7e610ca0565b836113f4565b60019050919050565b6000610b50610a9a610ca0565b84610b4b856040518060600160405280602581526020016122e86025913960026000610ac4610ca0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111019092919063ffffffff16565b610ca8565b6001905092915050565b6000610b6e610b67610ca0565b8484610e73565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610c07610ca0565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8b90611d1c565b60405180910390fd5b610c9d8161157e565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0f90611dae565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7f90611e40565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e6691906118dd565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ee3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eda90611ed2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4a90611f64565b60405180910390fd5b610fbf8160405180606001604052806026815260200161229a60269139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111019092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061105481600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461116590919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516110f491906118dd565b60405180910390a3505050565b6000838311158290611149576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611140919061178e565b60405180910390fd5b50600083856111589190611fb3565b9050809150509392505050565b60008082846111749190611fe7565b9050838110156111b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b090612089565b60405180910390fd5b8091505092915050565b600080823b905060008111915050919050565b60008390508073ffffffffffffffffffffffffffffffffffffffff1663a4c0ed363385856040518463ffffffff1660e01b8152600401611218939291906120a9565b600060405180830381600087803b15801561123257600080fd5b505af1158015611246573d6000803e3d6000fd5b5050505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b790612159565b60405180910390fd5b61132c8160405180606001604052806022815260200161227860229139600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111019092919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611384816003546116ab90919063ffffffff16565b600381905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516113e891906118dd565b60405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611464576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145b906121c5565b60405180910390fd5b6114798160035461116590919063ffffffff16565b6003819055506114d181600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461116590919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161157291906118dd565b60405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156115ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e590612257565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006116ed83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611101565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561172f578082015181840152602081019050611714565b8381111561173e576000848401525b50505050565b6000601f19601f8301169050919050565b6000611760826116f5565b61176a8185611700565b935061177a818560208601611711565b61178381611744565b840191505092915050565b600060208201905081810360008301526117a88184611755565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006117ef826117c4565b9050919050565b6117ff816117e4565b811461180a57600080fd5b50565b60008135905061181c816117f6565b92915050565b6000819050919050565b61183581611822565b811461184057600080fd5b50565b6000813590506118528161182c565b92915050565b6000806040838503121561186f5761186e6117ba565b5b600061187d8582860161180d565b925050602061188e85828601611843565b9150509250929050565b60008115159050919050565b6118ad81611898565b82525050565b60006020820190506118c860008301846118a4565b92915050565b6118d781611822565b82525050565b60006020820190506118f260008301846118ce565b92915050565b600080600060608486031215611911576119106117ba565b5b600061191f8682870161180d565b93505060206119308682870161180d565b925050604061194186828701611843565b9150509250925092565b600060ff82169050919050565b6119618161194b565b82525050565b600060208201905061197c6000830184611958565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6119c482611744565b810181811067ffffffffffffffff821117156119e3576119e261198c565b5b80604052505050565b60006119f66117b0565b9050611a0282826119bb565b919050565b600067ffffffffffffffff821115611a2257611a2161198c565b5b611a2b82611744565b9050602081019050919050565b82818337600083830152505050565b6000611a5a611a5584611a07565b6119ec565b905082815260208101848484011115611a7657611a75611987565b5b611a81848285611a38565b509392505050565b600082601f830112611a9e57611a9d611982565b5b8135611aae848260208601611a47565b91505092915050565b600080600060608486031215611ad057611acf6117ba565b5b6000611ade8682870161180d565b9350506020611aef86828701611843565b925050604084013567ffffffffffffffff811115611b1057611b0f6117bf565b5b611b1c86828701611a89565b9150509250925092565b600060208284031215611b3c57611b3b6117ba565b5b6000611b4a8482850161180d565b91505092915050565b611b5c816117e4565b82525050565b6000602082019050611b776000830184611b53565b92915050565b600060208284031215611b9357611b926117ba565b5b6000611ba184828501611843565b91505092915050565b60008060408385031215611bc157611bc06117ba565b5b6000611bcf8582860161180d565b9250506020611be08582860161180d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611c3157607f821691505b60208210811415611c4557611c44611bea565b5b50919050565b600081519050919050565b600082825260208201905092915050565b6000611c7282611c4b565b611c7c8185611c56565b9350611c8c818560208601611711565b611c9581611744565b840191505092915050565b6000604082019050611cb560008301856118ce565b8181036020830152611cc78184611c67565b90509392505050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611d06602083611700565b9150611d1182611cd0565b602082019050919050565b60006020820190508181036000830152611d3581611cf9565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611d98602483611700565b9150611da382611d3c565b604082019050919050565b60006020820190508181036000830152611dc781611d8b565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e2a602283611700565b9150611e3582611dce565b604082019050919050565b60006020820190508181036000830152611e5981611e1d565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611ebc602583611700565b9150611ec782611e60565b604082019050919050565b60006020820190508181036000830152611eeb81611eaf565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611f4e602383611700565b9150611f5982611ef2565b604082019050919050565b60006020820190508181036000830152611f7d81611f41565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611fbe82611822565b9150611fc983611822565b925082821015611fdc57611fdb611f84565b5b828203905092915050565b6000611ff282611822565b9150611ffd83611822565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561203257612031611f84565b5b828201905092915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000612073601b83611700565b915061207e8261203d565b602082019050919050565b600060208201905081810360008301526120a281612066565b9050919050565b60006060820190506120be6000830186611b53565b6120cb60208301856118ce565b81810360408301526120dd8184611c67565b9050949350505050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612143602183611700565b915061214e826120e7565b604082019050919050565b6000602082019050818103600083015261217281612136565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006121af601f83611700565b91506121ba82612179565b602082019050919050565b600060208201905081810360008301526121de816121a2565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612241602683611700565b915061224c826121e5565b604082019050919050565b6000602082019050818103600083015261227081612234565b905091905056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220aa8df4eadea8579d7b6bcfbf84f9ba4c7c8ec583d511fa2c30cffdb49480ffc164736f6c634300080a0033

Deployed Bytecode Sourcemap

11249:9318:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12390:85;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13501:154;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12537:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14115:306;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12090:85;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14818:210;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19795:328;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12690:112;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10410:130;;;:::i;:::-;;11938:85;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9808:73;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12240:89;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16299:136;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15989:130;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15517:261;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13007:158;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13225:136;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10685:103;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12390:85;12429:13;12462:5;12455:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12390:85;:::o;13501:154::-;13569:4;13586:39;13595:12;:10;:12::i;:::-;13609:7;13618:6;13586:8;:39::i;:::-;13643:4;13636:11;;13501:154;;;;:::o;12537:93::-;12583:7;12610:12;;12603:19;;12537:93;:::o;14115:306::-;14206:4;14223:36;14233:6;14241:9;14252:6;14223:9;:36::i;:::-;14270:121;14279:6;14287:12;:10;:12::i;:::-;14301:89;14339:6;14301:89;;;;;;;;;;;;;;;;;:11;:19;14313:6;14301:19;;;;;;;;;;;;;;;:33;14321:12;:10;:12::i;:::-;14301:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;14270:8;:121::i;:::-;14409:4;14402:11;;14115:306;;;;;:::o;12090:85::-;12133:5;12158:9;;;;;;;;;;;12151:16;;12090:85;:::o;14818:210::-;14898:4;14915:83;14924:12;:10;:12::i;:::-;14938:7;14947:50;14986:10;14947:11;:25;14959:12;:10;:12::i;:::-;14947:25;;;;;;;;;;;;;;;:34;14973:7;14947:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;14915:8;:83::i;:::-;15016:4;15009:11;;14818:210;;;;:::o;19795:328::-;19892:12;19922:21;19931:3;19936:6;19922:8;:21::i;:::-;;19980:3;19959:40;;19968:10;19959:40;;;19985:6;19993:5;19959:40;;;;;;;:::i;:::-;;;;;;;;20014:15;20025:3;20014:10;:15::i;:::-;20010:84;;;20046:36;20063:3;20068:6;20076:5;20046:16;:36::i;:::-;20010:84;20111:4;20104:11;;19795:328;;;;;:::o;12690:112::-;12749:7;12776:9;:18;12786:7;12776:18;;;;;;;;;;;;;;;;12769:25;;12690: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;11938:85::-;11981:7;12008;:5;:7::i;:::-;12001:14;;11938:85;:::o;9808:73::-;9846:7;9869:6;;;;;;;;;;;9862:13;;9808:73;:::o;12240:89::-;12281:13;12314:7;12307:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12240:89;:::o;16299:136::-;16369:4;10012:12;:10;:12::i;:::-;10002:22;;:6;;;;;;;;;;:22;;;9994:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;16386:19:::1;16392:3;16397:7;16386:5;:19::i;:::-;16423:4;16416:11;;16299:136:::0;;;;:::o;15989:130::-;16045:4;10012:12;:10;:12::i;:::-;10002:22;;:6;;;;;;;;;;:22;;;9994:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;16062:27:::1;16068:12;:10;:12::i;:::-;16082:6;16062:5;:27::i;:::-;16107:4;16100:11;;15989:130:::0;;;:::o;15517:261::-;15602:4;15619:129;15628:12;:10;:12::i;:::-;15642:7;15651:96;15690:15;15651:96;;;;;;;;;;;;;;;;;:11;:25;15663:12;:10;:12::i;:::-;15651:25;;;;;;;;;;;;;;;:34;15677:7;15651:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;15619:8;:129::i;:::-;15766:4;15759:11;;15517:261;;;;:::o;13007:158::-;13076:4;13093:42;13103:12;:10;:12::i;:::-;13117:9;13128:6;13093:9;:42::i;:::-;13153:4;13146:11;;13007:158;;;;:::o;13225:136::-;13299:7;13326:11;:18;13338:5;13326:18;;;;;;;;;;;;;;;:27;13345:7;13326:27;;;;;;;;;;;;;;;;13319:34;;13225: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;19062:338::-;19173:1;19156:19;;:5;:19;;;;19148:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19254:1;19235:21;;:7;:21;;;;19227:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19338:6;19308:11;:18;19320:5;19308:18;;;;;;;;;;;;;;;:27;19327:7;19308:27;;;;;;;;;;;;;;;:36;;;;19376:7;19360:32;;19369:5;19360:32;;;19385:6;19360:32;;;;;;:::i;:::-;;;;;;;;19062:338;;;:::o;16912:471::-;17028:1;17010:20;;:6;:20;;;;17002:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;17112:1;17091:23;;:9;:23;;;;17083:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;17187;17209:6;17187:71;;;;;;;;;;;;;;;;;:9;:17;17197:6;17187:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;17167:9;:17;17177:6;17167:17;;;;;;;;;;;;;;;:91;;;;17292:32;17317:6;17292:9;:20;17302:9;17292:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;17269:9;:20;17279:9;17269:20;;;;;;;;;;;;;;;:55;;;;17357:9;17340:35;;17349:6;17340:35;;;17368:6;17340:35;;;;;;:::i;:::-;;;;;;;;16912: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;20371:193::-;20438:12;20468:11;20522:5;20510:18;20500:28;;20555:1;20546:6;:10;20539:17;;;20371:193;;;:::o;20147:216::-;20248:23;20289:3;20248:45;;20304:8;:24;;;20329:10;20341:6;20349:5;20304:51;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20237:126;20147:216;;;:::o;18286:348::-;18381:1;18362:21;;:7;:21;;;;18354:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;18455:68;18478:6;18455:68;;;;;;;;;;;;;;;;;:9;:18;18465:7;18455:18;;;;;;;;;;;;;;;;:22;;:68;;;;;:::i;:::-;18434:9;:18;18444:7;18434:18;;;;;;;;;;;;;;;:89;;;;18549:24;18566:6;18549:12;;:16;;:24;;;;:::i;:::-;18534:12;:39;;;;18615:1;18589:37;;18598:7;18589:37;;;18619:6;18589:37;;;;;;:::i;:::-;;;;;;;;18286:348;;:::o;17656:308::-;17751:1;17732:21;;:7;:21;;;;17724:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;17817:24;17834:6;17817:12;;:16;;:24;;;;:::i;:::-;17802:12;:39;;;;17873:30;17896:6;17873:9;:18;17883:7;17873:18;;;;;;;;;;;;;;;;:22;;:30;;;;:::i;:::-;17852:9;:18;17862:7;17852:18;;;;;;;;;;;;;;;:51;;;;17940:7;17919:37;;17936:1;17919:37;;;17949:6;17919:37;;;;;;:::i;:::-;;;;;;;;17656: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://aa8df4eadea8579d7b6bcfbf84f9ba4c7c8ec583d511fa2c30cffdb49480ffc1

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

OVERVIEW

Developed by Oraichain, OraiDEX is a CosmWasm smart contract-based decentralized exchange with multi-chain interoperability, optimal speed, and multiple liquidity options.

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.