ETH Price: $3,469.92 (+3.01%)

Contract

0x15c303B84045f67156AcF6963954e4247B526717
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve214156712024-12-16 14:27:118 days ago1734359231IN
0x15c303B8...47B526717
0 ETH0.0004010216.48600815
Approve206112962024-08-26 7:32:35120 days ago1724657555IN
0x15c303B8...47B526717
0 ETH0.000044061.81139255
Approve204093732024-07-29 2:55:47148 days ago1722221747IN
0x15c303B8...47B526717
0 ETH0.000039361.61840284
Approve194853302024-03-21 20:12:59278 days ago1711051979IN
0x15c303B8...47B526717
0 ETH0.0008886236.5312984
Approve185133552023-11-06 13:51:47414 days ago1699278707IN
0x15c303B8...47B526717
0 ETH0.00085435.10815842
Approve184487102023-10-28 12:30:59423 days ago1698496259IN
0x15c303B8...47B526717
0 ETH0.0003982916.37403324
Transfer158129302022-10-23 19:34:23793 days ago1666553663IN
0x15c303B8...47B526717
0 ETH0.0012233413.85353039
Approve152040852022-07-24 7:51:38884 days ago1658649098IN
0x15c303B8...47B526717
0 ETH0.000159566.5599036
Transfer147905262022-05-17 4:51:46952 days ago1652763106IN
0x15c303B8...47B526717
0 ETH0.0013490319
Approve142401022022-02-20 1:56:531039 days ago1645322213IN
0x15c303B8...47B526717
0 ETH0.00255482105.02875473
Transfer139139212021-12-31 15:28:321089 days ago1640964512IN
0x15c303B8...47B526717
0 ETH0.0061540886.70412988
Transfer139107892021-12-31 3:45:371089 days ago1640922337IN
0x15c303B8...47B526717
0 ETH0.00948511107.67526264
Approve135612452021-11-06 5:44:351144 days ago1636177475IN
0x15c303B8...47B526717
0 ETH0.0021376487.87856665
Approve130809762021-08-23 10:21:041219 days ago1629714064IN
0x15c303B8...47B526717
0 ETH0.0017375637.27960924
Approve128768842021-07-22 14:57:431251 days ago1626965863IN
0x15c303B8...47B526717
0 ETH0.0009321820
Approve128281932021-07-14 23:55:581259 days ago1626306958IN
0x15c303B8...47B526717
0 ETH0.0010766623.1
Approve127210592021-06-28 6:57:361275 days ago1624863456IN
0x15c303B8...47B526717
0 ETH0.0004660910
Approve127194262021-06-28 0:52:141276 days ago1624841534IN
0x15c303B8...47B526717
0 ETH0.000559312
Approve127163292021-06-27 13:31:411276 days ago1624800701IN
0x15c303B8...47B526717
0 ETH0.0001456310
Approve127162962021-06-27 13:23:431276 days ago1624800223IN
0x15c303B8...47B526717
0 ETH0.0001456310
Transfer127147292021-06-27 7:18:051276 days ago1624778285IN
0x15c303B8...47B526717
0 ETH0.0008641912
Transfer127145892021-06-27 6:44:531276 days ago1624776293IN
0x15c303B8...47B526717
0 ETH0.0007199210
Transfer127145882021-06-27 6:44:451276 days ago1624776285IN
0x15c303B8...47B526717
0 ETH0.0007201610
Approve126954002021-06-24 6:53:521279 days ago1624517632IN
0x15c303B8...47B526717
0 ETH0.0004660910
Approve126936462021-06-24 0:20:241280 days ago1624494024IN
0x15c303B8...47B526717
0 ETH0.0004660910
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:
GCBN

Compiler Version
v0.6.2+commit.bacdbe57

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: GCB

pragma solidity ^0.6.2;

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

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

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

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

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

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

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

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

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

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}
 
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b > a) return (false, 0);
        return (true, a - b);
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, 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 (true, 0);
        uint256 c = a * b;
        if (c / a != b) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a / b);
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a % b);
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
        return c;
    }

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

    /**
     * @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) {
        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, reverting 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) {
        require(b > 0, "SafeMath: division by zero");
        return a / b;
    }

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

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * 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);
        return a - b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryDiv}.
     *
     * 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) {
        require(b > 0, errorMessage);
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * 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;
    }
}

library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

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

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
      return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: value }(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.3._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.3._
     */
    function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}


abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

contract GCBN is Context, IERC20, Ownable {
    using SafeMath for uint256;
    using Address for address;

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

    mapping (address => bool) private _isExcluded;
    address[] private _excluded;
   
    uint256 private constant MAX = ~uint256(0);
    uint256 private constant _gcbtTotal = 10e21;
    uint256 private _gcbTotal = (MAX - (MAX % _gcbtTotal));
    uint256 private _tFeeTotal;

    string private _name = 'GCBN';
    string private _symbol = 'GCBN';
    uint8 private _decimals = 18;

    constructor () public {
        _gcbOwned[_msgSender()] = _gcbTotal;
        emit Transfer(address(0), _msgSender(), _gcbtTotal);
    }

    function name() public view returns (string memory) {
        return _name;
    }

    function symbol() public view returns (string memory) {
        return _symbol;
    }

    function decimals() public view returns (uint8) {
        return _decimals;
    }

    function totalSupply() public view override returns (uint256) {
        return _gcbtTotal;
    }

    function balanceOf(address account) public view override returns (uint256) {
        if (_isExcluded[account]) return _gcbtOwned[account];
        return tokenFromGCB(_gcbOwned[account]);
    }

    function transfer(address recipient, uint256 amount) public override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    function allowance(address owner, address spender) public view override returns (uint256) {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount) public override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }

    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    function isExcluded(address account) public view returns (bool) {
        return _isExcluded[account];
    }

    function totalFees() public view returns (uint256) {
        return _tFeeTotal;
    }

    function gcb(uint256 tAmount) public {
        address sender = _msgSender();
        require(!_isExcluded[sender], "Excluded addresses cannot call this function");
        (uint256 _gcbAmount,,,,) = _getValues(tAmount);
        _gcbOwned[sender] = _gcbOwned[sender].sub(_gcbAmount);
        _gcbTotal = _gcbTotal.sub(_gcbAmount);
        _tFeeTotal = _tFeeTotal.add(tAmount);
    }

    function gcbFromToken(uint256 tAmount, bool deductTransferFee) public view returns(uint256) {
        require(tAmount <= _gcbtTotal, "Amount must be less than supply");
        if (!deductTransferFee) {
            (uint256 _gcbAmount,,,,) = _getValues(tAmount);
            return _gcbAmount;
        } else {
            (,uint256 rTransfe_gcbAmount,,,) = _getValues(tAmount);
            return rTransfe_gcbAmount;
        }
    }

    function tokenFromGCB(uint256 _gcbAmount) public view returns(uint256) {
        require(_gcbAmount <= _gcbTotal, "Amount must be less than total tokens");
        uint256 currentRate =  _getRate();
        return _gcbAmount.div(currentRate);
    }

    function excludeAccount(address account) external onlyOwner() {
        require(!_isExcluded[account], "Account is already excluded");
        if(_gcbOwned[account] > 0) {
            _gcbtOwned[account] = tokenFromGCB(_gcbOwned[account]);
        }
        _isExcluded[account] = true;
        _excluded.push(account);
    }

    function includeAccount(address account) external onlyOwner() {
        require(_isExcluded[account], "Account is already excluded");
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (_excluded[i] == account) {
                _excluded[i] = _excluded[_excluded.length - 1];
                _gcbtOwned[account] = 0;
                _isExcluded[account] = false;
                _excluded.pop();
                break;
            }
        }
    }

    function _approve(address owner, address spender, uint256 amount) private {
        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);
    }

    function _transfer(address sender, address recipient, uint256 amount) private {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
        if (_isExcluded[sender] && !_isExcluded[recipient]) {
            _transferFromExcluded(sender, recipient, amount);
        } else if (!_isExcluded[sender] && _isExcluded[recipient]) {
            _transferToExcluded(sender, recipient, amount);
        } else if (!_isExcluded[sender] && !_isExcluded[recipient]) {
            _transferStandard(sender, recipient, amount);
        } else if (_isExcluded[sender] && _isExcluded[recipient]) {
            _transferBothExcluded(sender, recipient, amount);
        } else {
            _transferStandard(sender, recipient, amount);
        }
    }

    function _transferStandard(address sender, address recipient, uint256 tAmount) private {
        (uint256 _gcbAmount, uint256 rTransfe_gcbAmount, uint256 rFee, uint256 tTransfe_gcbAmount, uint256 tFee) = _getValues(tAmount);
        _gcbOwned[sender] = _gcbOwned[sender].sub(_gcbAmount);
        _gcbOwned[recipient] = _gcbOwned[recipient].add(rTransfe_gcbAmount);       
        _gcbFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransfe_gcbAmount);
    }

    function _transferToExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 _gcbAmount, uint256 rTransfe_gcbAmount, uint256 rFee, uint256 tTransfe_gcbAmount, uint256 tFee) = _getValues(tAmount);
        _gcbOwned[sender] = _gcbOwned[sender].sub(_gcbAmount);
        _gcbtOwned[recipient] = _gcbtOwned[recipient].add(tTransfe_gcbAmount);
        _gcbOwned[recipient] = _gcbOwned[recipient].add(rTransfe_gcbAmount);           
        _gcbFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransfe_gcbAmount);
    }

    function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 _gcbAmount, uint256 rTransfe_gcbAmount, uint256 rFee, uint256 tTransfe_gcbAmount, uint256 tFee) = _getValues(tAmount);
        _gcbtOwned[sender] = _gcbtOwned[sender].sub(tAmount);
        _gcbOwned[sender] = _gcbOwned[sender].sub(_gcbAmount);
        _gcbOwned[recipient] = _gcbOwned[recipient].add(rTransfe_gcbAmount);   
        _gcbFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransfe_gcbAmount);
    }

    function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 _gcbAmount, uint256 rTransfe_gcbAmount, uint256 rFee, uint256 tTransfe_gcbAmount, uint256 tFee) = _getValues(tAmount);
        _gcbtOwned[sender] = _gcbtOwned[sender].sub(tAmount);
        _gcbOwned[sender] = _gcbOwned[sender].sub(_gcbAmount);
        _gcbtOwned[recipient] = _gcbtOwned[recipient].add(tTransfe_gcbAmount);
        _gcbOwned[recipient] = _gcbOwned[recipient].add(rTransfe_gcbAmount);        
        _gcbFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransfe_gcbAmount);
    }

    function _gcbFee(uint256 rFee, uint256 tFee) private {
        _gcbTotal = _gcbTotal.sub(rFee);
        _tFeeTotal = _tFeeTotal.add(tFee);
    }

    function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256) {
        (uint256 tTransfe_gcbAmount, uint256 tFee) = _getTValues(tAmount);
        uint256 currentRate =  _getRate();
        (uint256 _gcbAmount, uint256 rTransfe_gcbAmount, uint256 rFee) = _getRValues(tAmount, tFee, currentRate);
        return (_gcbAmount, rTransfe_gcbAmount, rFee, tTransfe_gcbAmount, tFee);
    }

    function _getTValues(uint256 tAmount) private pure returns (uint256, uint256) {
        uint256 tFee = tAmount.div(100).mul(3500).div(1e3);
        uint256 tTransfe_gcbAmount = tAmount.sub(tFee);
        return (tTransfe_gcbAmount, tFee);
    }

    function _getRValues(uint256 tAmount, uint256 tFee, uint256 currentRate) private pure returns (uint256, uint256, uint256) {
        uint256 _gcbAmount = tAmount.mul(currentRate);
        uint256 rFee = tFee.mul(currentRate);
        uint256 rTransfe_gcbAmount = _gcbAmount.sub(rFee);
        return (_gcbAmount, rTransfe_gcbAmount, rFee);
    }

    function _getRate() private view returns(uint256) {
        (uint256 rSupply, uint256 tSupply) = _getCurrentSupply();
        return rSupply.div(tSupply);
    }

    function _getCurrentSupply() private view returns(uint256, uint256) {
        uint256 rSupply = _gcbTotal;
        uint256 tSupply = _gcbtTotal;      
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (_gcbOwned[_excluded[i]] > rSupply || _gcbtOwned[_excluded[i]] > tSupply) return (_gcbTotal, _gcbtTotal);
            rSupply = rSupply.sub(_gcbOwned[_excluded[i]]);
            tSupply = tSupply.sub(_gcbtOwned[_excluded[i]]);
        }
        if (rSupply < _gcbTotal.div(_gcbtTotal)) return (_gcbTotal, _gcbtTotal);
        return (rSupply, tSupply);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"gcb","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"gcbFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcluded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[{"internalType":"uint256","name":"_gcbAmount","type":"uint256"}],"name":"tokenFromGCB","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405269021e19e0c9bab2400000600019816200001a57fe5b06600019036006556040518060400160405280600481526020017f4743424e00000000000000000000000000000000000000000000000000000000815250600890805190602001906200006f9291906200027a565b506040518060400160405280600481526020017f4743424e0000000000000000000000000000000000000000000000000000000081525060099080519060200190620000bd9291906200027a565b506012600a60006101000a81548160ff021916908360ff160217905550348015620000e757600080fd5b506000620000fa6200027260201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35060065460016000620001af6200027260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550620001fd6200027260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef69021e19e0c9bab24000006040518082815260200191505060405180910390a362000329565b600033905090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620002bd57805160ff1916838001178555620002ee565b82800160010185558215620002ee579182015b82811115620002ed578251825591602001919060010190620002d0565b5b509050620002fd919062000301565b5090565b6200032691905b808211156200032257600081600090555060010162000308565b5090565b90565b61335680620003396000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c80638da5cb5b116100b8578063dd62ed3e1161007c578063dd62ed3e1461060a578063edaf98d814610682578063f2cc0c18146106b0578063f2fde38b146106f4578063f84354f114610738578063fed59cb31461077c57610137565b80638da5cb5b1461041557806395d89b411461045f578063a457c2d7146104e2578063a9059cbb14610548578063cba0e996146105ae57610137565b8063313ce567116100ff578063313ce567146102e7578063395093511461030b5780634d5f9d111461037157806370a08231146103b3578063715018a61461040b57610137565b806306fdde031461013c578063095ea7b3146101bf57806313114a9d1461022557806318160ddd1461024357806323b872dd14610261575b600080fd5b6101446107ca565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610184578082015181840152602081019050610169565b50505050905090810190601f1680156101b15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61020b600480360360408110156101d557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061086c565b604051808215151515815260200191505060405180910390f35b61022d61088a565b6040518082815260200191505060405180910390f35b61024b610894565b6040518082815260200191505060405180910390f35b6102cd6004803603606081101561027757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506108a6565b604051808215151515815260200191505060405180910390f35b6102ef61097f565b604051808260ff1660ff16815260200191505060405180910390f35b6103576004803603604081101561032157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610996565b604051808215151515815260200191505060405180910390f35b61039d6004803603602081101561038757600080fd5b8101908080359060200190929190505050610a49565b6040518082815260200191505060405180910390f35b6103f5600480360360208110156103c957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610acd565b6040518082815260200191505060405180910390f35b610413610bb8565b005b61041d610d40565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610467610d69565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156104a757808201518184015260208101905061048c565b50505050905090810190601f1680156104d45780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61052e600480360360408110156104f857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610e0b565b604051808215151515815260200191505060405180910390f35b6105946004803603604081101561055e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ed8565b604051808215151515815260200191505060405180910390f35b6105f0600480360360208110156105c457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610ef6565b604051808215151515815260200191505060405180910390f35b61066c6004803603604081101561062057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610f4c565b6040518082815260200191505060405180910390f35b6106ae6004803603602081101561069857600080fd5b8101908080359060200190929190505050610fd3565b005b6106f2600480360360208110156106c657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611163565b005b6107366004803603602081101561070a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061147e565b005b61077a6004803603602081101561074e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061168b565b005b6107b46004803603604081101561079257600080fd5b8101908080359060200190929190803515159060200190929190505050611a19565b6040518082815260200191505060405180910390f35b606060088054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156108625780601f1061083757610100808354040283529160200191610862565b820191906000526020600020905b81548152906001019060200180831161084557829003601f168201915b5050505050905090565b6000610880610879611ad6565b8484611ade565b6001905092915050565b6000600754905090565b600069021e19e0c9bab2400000905090565b60006108b3848484611cd5565b610974846108bf611ad6565b61096f8560405180606001604052806028815260200161323660289139600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610925611ad6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461212e9092919063ffffffff16565b611ade565b600190509392505050565b6000600a60009054906101000a900460ff16905090565b6000610a3f6109a3611ad6565b84610a3a85600360006109b4611ad6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546121e890919063ffffffff16565b611ade565b6001905092915050565b6000600654821115610aa6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806131a86025913960400191505060405180910390fd5b6000610ab0612270565b9050610ac5818461229b90919063ffffffff16565b915050919050565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610b6857600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050610bb3565b610bb0600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610a49565b90505b919050565b610bc0611ad6565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c81576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060098054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610e015780601f10610dd657610100808354040283529160200191610e01565b820191906000526020600020905b815481529060010190602001808311610de457829003601f168201915b5050505050905090565b6000610ece610e18611ad6565b84610ec9856040518060600160405280602581526020016132fc6025913960036000610e42611ad6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461212e9092919063ffffffff16565b611ade565b6001905092915050565b6000610eec610ee5611ad6565b8484611cd5565b6001905092915050565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000610fdd611ad6565b9050600460008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611082576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c8152602001806132d0602c913960400191505060405180910390fd5b600061108d83612324565b5050505090506110e581600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461237c90919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061113d8160065461237c90919063ffffffff16565b600681905550611158836007546121e890919063ffffffff16565b600781905550505050565b61116b611ad6565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461122c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600460008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156112ec576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411156113c05761137c600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610a49565b600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506005819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611486611ad6565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611547576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156115cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806131cd6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611693611ad6565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611754576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600460008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611813576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b60008090505b600580549050811015611a15578173ffffffffffffffffffffffffffffffffffffffff166005828154811061184a57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611a08576005600160058054905003815481106118a657fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600582815481106118de57fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060058054806119ce57fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690559055611a15565b8080600101915050611819565b5050565b600069021e19e0c9bab2400000831115611a9b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b81611aba576000611aab84612324565b50505050905080915050611ad0565b6000611ac584612324565b505050915050809150505b92915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611b64576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806132ac6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806131f36022913960400191505060405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611d5b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806132876025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611de1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806131856023913960400191505060405180910390fd5b60008111611e3a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602981526020018061325e6029913960400191505060405180910390fd5b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611edd5750600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611ef257611eed8383836123ff565b612129565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611f955750600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15611faa57611fa5838383612652565b612128565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561204e5750600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156120635761205e8383836128a5565b612127565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156121055750600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561211a57612115838383612a63565b612126565b6121258383836128a5565b5b5b5b5b505050565b60008383111582906121db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156121a0578082015181840152602081019050612185565b50505050905090810190601f1680156121cd5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5082840390509392505050565b600080828401905083811015612266576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600080600061227d612d4b565b91509150612294818361229b90919063ffffffff16565b9250505090565b6000808211612312576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525060200191505060405180910390fd5b81838161231b57fe5b04905092915050565b600080600080600080600061233888612fff565b915091506000612346612270565b905060008060006123588c8686613066565b92509250925082828288889a509a509a509a509a5050505050505091939590929450565b6000828211156123f4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525060200191505060405180910390fd5b818303905092915050565b600080600080600061241086612324565b9450945094509450945061246c86600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461237c90919063ffffffff16565b600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061250185600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461237c90919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061259684600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546121e890919063ffffffff16565b600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506125e383826130c4565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b600080600080600061266386612324565b945094509450945094506126bf85600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461237c90919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061275482600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546121e890919063ffffffff16565b600260008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506127e984600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546121e890919063ffffffff16565b600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061283683826130c4565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b60008060008060006128b686612324565b9450945094509450945061291285600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461237c90919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506129a784600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546121e890919063ffffffff16565b600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506129f483826130c4565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b6000806000806000612a7486612324565b94509450945094509450612ad086600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461237c90919063ffffffff16565b600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612b6585600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461237c90919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612bfa82600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546121e890919063ffffffff16565b600260008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612c8f84600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546121e890919063ffffffff16565b600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612cdc83826130c4565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b60008060006006549050600069021e19e0c9bab2400000905060008090505b600580549050811015612fb257826001600060058481548110612d8957fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541180612e705750816002600060058481548110612e0857fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b15612e8f5760065469021e19e0c9bab240000094509450505050612ffb565b612f186001600060058481548110612ea357fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548461237c90919063ffffffff16565b9250612fa36002600060058481548110612f2e57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548361237c90919063ffffffff16565b91508080600101915050612d6a565b50612fd269021e19e0c9bab240000060065461229b90919063ffffffff16565b821015612ff25760065469021e19e0c9bab2400000935093505050612ffb565b81819350935050505b9091565b60008060006130406103e8613032610dac61302460648961229b90919063ffffffff16565b6130fe90919063ffffffff16565b61229b90919063ffffffff16565b90506000613057828661237c90919063ffffffff16565b90508082935093505050915091565b60008060008061307f85886130fe90919063ffffffff16565b9050600061309686886130fe90919063ffffffff16565b905060006130ad828461237c90919063ffffffff16565b905082818395509550955050505093509350939050565b6130d98260065461237c90919063ffffffff16565b6006819055506130f4816007546121e890919063ffffffff16565b6007819055505050565b600080831415613111576000905061317e565b600082840290508284828161312257fe5b0414613179576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806132156021913960400191505060405180910390fd5b809150505b9291505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c20746f6b656e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212209ef3743ba5f9ed84f20070087376260fd06e929189b8263266a0e6a1bc616c0f64736f6c63430006020033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101375760003560e01c80638da5cb5b116100b8578063dd62ed3e1161007c578063dd62ed3e1461060a578063edaf98d814610682578063f2cc0c18146106b0578063f2fde38b146106f4578063f84354f114610738578063fed59cb31461077c57610137565b80638da5cb5b1461041557806395d89b411461045f578063a457c2d7146104e2578063a9059cbb14610548578063cba0e996146105ae57610137565b8063313ce567116100ff578063313ce567146102e7578063395093511461030b5780634d5f9d111461037157806370a08231146103b3578063715018a61461040b57610137565b806306fdde031461013c578063095ea7b3146101bf57806313114a9d1461022557806318160ddd1461024357806323b872dd14610261575b600080fd5b6101446107ca565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610184578082015181840152602081019050610169565b50505050905090810190601f1680156101b15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61020b600480360360408110156101d557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061086c565b604051808215151515815260200191505060405180910390f35b61022d61088a565b6040518082815260200191505060405180910390f35b61024b610894565b6040518082815260200191505060405180910390f35b6102cd6004803603606081101561027757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506108a6565b604051808215151515815260200191505060405180910390f35b6102ef61097f565b604051808260ff1660ff16815260200191505060405180910390f35b6103576004803603604081101561032157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610996565b604051808215151515815260200191505060405180910390f35b61039d6004803603602081101561038757600080fd5b8101908080359060200190929190505050610a49565b6040518082815260200191505060405180910390f35b6103f5600480360360208110156103c957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610acd565b6040518082815260200191505060405180910390f35b610413610bb8565b005b61041d610d40565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610467610d69565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156104a757808201518184015260208101905061048c565b50505050905090810190601f1680156104d45780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61052e600480360360408110156104f857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610e0b565b604051808215151515815260200191505060405180910390f35b6105946004803603604081101561055e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ed8565b604051808215151515815260200191505060405180910390f35b6105f0600480360360208110156105c457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610ef6565b604051808215151515815260200191505060405180910390f35b61066c6004803603604081101561062057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610f4c565b6040518082815260200191505060405180910390f35b6106ae6004803603602081101561069857600080fd5b8101908080359060200190929190505050610fd3565b005b6106f2600480360360208110156106c657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611163565b005b6107366004803603602081101561070a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061147e565b005b61077a6004803603602081101561074e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061168b565b005b6107b46004803603604081101561079257600080fd5b8101908080359060200190929190803515159060200190929190505050611a19565b6040518082815260200191505060405180910390f35b606060088054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156108625780601f1061083757610100808354040283529160200191610862565b820191906000526020600020905b81548152906001019060200180831161084557829003601f168201915b5050505050905090565b6000610880610879611ad6565b8484611ade565b6001905092915050565b6000600754905090565b600069021e19e0c9bab2400000905090565b60006108b3848484611cd5565b610974846108bf611ad6565b61096f8560405180606001604052806028815260200161323660289139600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610925611ad6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461212e9092919063ffffffff16565b611ade565b600190509392505050565b6000600a60009054906101000a900460ff16905090565b6000610a3f6109a3611ad6565b84610a3a85600360006109b4611ad6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546121e890919063ffffffff16565b611ade565b6001905092915050565b6000600654821115610aa6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806131a86025913960400191505060405180910390fd5b6000610ab0612270565b9050610ac5818461229b90919063ffffffff16565b915050919050565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610b6857600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050610bb3565b610bb0600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610a49565b90505b919050565b610bc0611ad6565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c81576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060098054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610e015780601f10610dd657610100808354040283529160200191610e01565b820191906000526020600020905b815481529060010190602001808311610de457829003601f168201915b5050505050905090565b6000610ece610e18611ad6565b84610ec9856040518060600160405280602581526020016132fc6025913960036000610e42611ad6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461212e9092919063ffffffff16565b611ade565b6001905092915050565b6000610eec610ee5611ad6565b8484611cd5565b6001905092915050565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000610fdd611ad6565b9050600460008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611082576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c8152602001806132d0602c913960400191505060405180910390fd5b600061108d83612324565b5050505090506110e581600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461237c90919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061113d8160065461237c90919063ffffffff16565b600681905550611158836007546121e890919063ffffffff16565b600781905550505050565b61116b611ad6565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461122c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600460008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156112ec576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411156113c05761137c600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610a49565b600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506005819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611486611ad6565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611547576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156115cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806131cd6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611693611ad6565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611754576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600460008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611813576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b60008090505b600580549050811015611a15578173ffffffffffffffffffffffffffffffffffffffff166005828154811061184a57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611a08576005600160058054905003815481106118a657fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600582815481106118de57fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060058054806119ce57fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690559055611a15565b8080600101915050611819565b5050565b600069021e19e0c9bab2400000831115611a9b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b81611aba576000611aab84612324565b50505050905080915050611ad0565b6000611ac584612324565b505050915050809150505b92915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611b64576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806132ac6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806131f36022913960400191505060405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611d5b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806132876025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611de1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806131856023913960400191505060405180910390fd5b60008111611e3a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602981526020018061325e6029913960400191505060405180910390fd5b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611edd5750600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611ef257611eed8383836123ff565b612129565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611f955750600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15611faa57611fa5838383612652565b612128565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561204e5750600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156120635761205e8383836128a5565b612127565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156121055750600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561211a57612115838383612a63565b612126565b6121258383836128a5565b5b5b5b5b505050565b60008383111582906121db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156121a0578082015181840152602081019050612185565b50505050905090810190601f1680156121cd5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5082840390509392505050565b600080828401905083811015612266576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600080600061227d612d4b565b91509150612294818361229b90919063ffffffff16565b9250505090565b6000808211612312576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525060200191505060405180910390fd5b81838161231b57fe5b04905092915050565b600080600080600080600061233888612fff565b915091506000612346612270565b905060008060006123588c8686613066565b92509250925082828288889a509a509a509a509a5050505050505091939590929450565b6000828211156123f4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525060200191505060405180910390fd5b818303905092915050565b600080600080600061241086612324565b9450945094509450945061246c86600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461237c90919063ffffffff16565b600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061250185600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461237c90919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061259684600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546121e890919063ffffffff16565b600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506125e383826130c4565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b600080600080600061266386612324565b945094509450945094506126bf85600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461237c90919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061275482600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546121e890919063ffffffff16565b600260008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506127e984600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546121e890919063ffffffff16565b600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061283683826130c4565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b60008060008060006128b686612324565b9450945094509450945061291285600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461237c90919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506129a784600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546121e890919063ffffffff16565b600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506129f483826130c4565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b6000806000806000612a7486612324565b94509450945094509450612ad086600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461237c90919063ffffffff16565b600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612b6585600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461237c90919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612bfa82600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546121e890919063ffffffff16565b600260008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612c8f84600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546121e890919063ffffffff16565b600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612cdc83826130c4565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b60008060006006549050600069021e19e0c9bab2400000905060008090505b600580549050811015612fb257826001600060058481548110612d8957fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541180612e705750816002600060058481548110612e0857fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b15612e8f5760065469021e19e0c9bab240000094509450505050612ffb565b612f186001600060058481548110612ea357fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548461237c90919063ffffffff16565b9250612fa36002600060058481548110612f2e57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548361237c90919063ffffffff16565b91508080600101915050612d6a565b50612fd269021e19e0c9bab240000060065461229b90919063ffffffff16565b821015612ff25760065469021e19e0c9bab2400000935093505050612ffb565b81819350935050505b9091565b60008060006130406103e8613032610dac61302460648961229b90919063ffffffff16565b6130fe90919063ffffffff16565b61229b90919063ffffffff16565b90506000613057828661237c90919063ffffffff16565b90508082935093505050915091565b60008060008061307f85886130fe90919063ffffffff16565b9050600061309686886130fe90919063ffffffff16565b905060006130ad828461237c90919063ffffffff16565b905082818395509550955050505093509350939050565b6130d98260065461237c90919063ffffffff16565b6006819055506130f4816007546121e890919063ffffffff16565b6007819055505050565b600080831415613111576000905061317e565b600082840290508284828161312257fe5b0414613179576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806132156021913960400191505060405180910390fd5b809150505b9291505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c20746f6b656e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212209ef3743ba5f9ed84f20070087376260fd06e929189b8263266a0e6a1bc616c0f64736f6c63430006020033

Deployed Bytecode Sourcemap

19260:10378:0:-:0;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;19260:10378:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20104:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;20104:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21017:161;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;21017:161:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;22128:87;;;:::i;:::-;;;;;;;;;;;;;;;;;;;20381:98;;;:::i;:::-;;;;;;;;;;;;;;;;;;;21186:313;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;21186:313:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;20290:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;21507:218;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;21507:218:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;23070:252;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;23070:252:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;20487:196;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;20487:196:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;18706:148;;;:::i;:::-;;18064:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;20195:87;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;20195:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21733:269;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;21733:269:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;20691:167;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;20691:167:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;22010:110;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;22010:110:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;20866:143;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;20866:143:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;22223:389;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;22223:389:0;;;;;;;;;;;;;;;;;:::i;:::-;;23330:332;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;23330:332:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;19009:244;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;19009:244:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;23670:481;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;23670:481:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;22620:442;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;22620:442:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;20104:83;20141:13;20174:5;20167:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20104:83;:::o;21017:161::-;21092:4;21109:39;21118:12;:10;:12::i;:::-;21132:7;21141:6;21109:8;:39::i;:::-;21166:4;21159:11;;21017:161;;;;:::o;22128:87::-;22170:7;22197:10;;22190:17;;22128:87;:::o;20381:98::-;20434:7;19739:5;20454:17;;20381:98;:::o;21186:313::-;21284:4;21301:36;21311:6;21319:9;21330:6;21301:9;:36::i;:::-;21348:121;21357:6;21365:12;:10;:12::i;:::-;21379:89;21417:6;21379:89;;;;;;;;;;;;;;;;;:11;:19;21391:6;21379:19;;;;;;;;;;;;;;;:33;21399:12;:10;:12::i;:::-;21379:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;21348:8;:121::i;:::-;21487:4;21480:11;;21186:313;;;;;:::o;20290:83::-;20331:5;20356:9;;;;;;;;;;;20349:16;;20290:83;:::o;21507:218::-;21595:4;21612:83;21621:12;:10;:12::i;:::-;21635:7;21644:50;21683:10;21644:11;:25;21656:12;:10;:12::i;:::-;21644:25;;;;;;;;;;;;;;;:34;21670:7;21644:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;21612:8;:83::i;:::-;21713:4;21706:11;;21507:218;;;;:::o;23070:252::-;23132:7;23174:9;;23160:10;:23;;23152:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23236:19;23259:10;:8;:10::i;:::-;23236:33;;23287:27;23302:11;23287:10;:14;;:27;;;;:::i;:::-;23280:34;;;23070:252;;;:::o;20487:196::-;20553:7;20577:11;:20;20589:7;20577:20;;;;;;;;;;;;;;;;;;;;;;;;;20573:52;;;20606:10;:19;20617:7;20606:19;;;;;;;;;;;;;;;;20599:26;;;;20573:52;20643:32;20656:9;:18;20666:7;20656:18;;;;;;;;;;;;;;;;20643:12;:32::i;:::-;20636:39;;20487:196;;;;:::o;18706:148::-;18286:12;:10;:12::i;:::-;18276:22;;:6;;;;;;;;;;;:22;;;18268:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18813:1:::1;18776:40;;18797:6;::::0;::::1;;;;;;;;;18776:40;;;;;;;;;;;;18844:1;18827:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;18706:148::o:0;18064:79::-;18102:7;18129:6;;;;;;;;;;;18122:13;;18064:79;:::o;20195:87::-;20234:13;20267:7;20260:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20195:87;:::o;21733:269::-;21826:4;21843:129;21852:12;:10;:12::i;:::-;21866:7;21875:96;21914:15;21875:96;;;;;;;;;;;;;;;;;:11;:25;21887:12;:10;:12::i;:::-;21875:25;;;;;;;;;;;;;;;:34;21901:7;21875:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;21843:8;:129::i;:::-;21990:4;21983:11;;21733:269;;;;:::o;20691:167::-;20769:4;20786:42;20796:12;:10;:12::i;:::-;20810:9;20821:6;20786:9;:42::i;:::-;20846:4;20839:11;;20691:167;;;;:::o;22010:110::-;22068:4;22092:11;:20;22104:7;22092:20;;;;;;;;;;;;;;;;;;;;;;;;;22085:27;;22010:110;;;:::o;20866:143::-;20947:7;20974:11;:18;20986:5;20974:18;;;;;;;;;;;;;;;:27;20993:7;20974:27;;;;;;;;;;;;;;;;20967:34;;20866:143;;;;:::o;22223:389::-;22271:14;22288:12;:10;:12::i;:::-;22271:29;;22320:11;:19;22332:6;22320:19;;;;;;;;;;;;;;;;;;;;;;;;;22319:20;22311:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22400:18;22426:19;22437:7;22426:10;:19::i;:::-;22399:46;;;;;;22476:33;22498:10;22476:9;:17;22486:6;22476:17;;;;;;;;;;;;;;;;:21;;:33;;;;:::i;:::-;22456:9;:17;22466:6;22456:17;;;;;;;;;;;;;;;:53;;;;22532:25;22546:10;22532:9;;:13;;:25;;;;:::i;:::-;22520:9;:37;;;;22581:23;22596:7;22581:10;;:14;;:23;;;;:::i;:::-;22568:10;:36;;;;22223:389;;;:::o;23330:332::-;18286:12;:10;:12::i;:::-;18276:22;;:6;;;;;;;;;;;:22;;;18268:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23412:11:::1;:20;23424:7;23412:20;;;;;;;;;;;;;;;;;;;;;;;;;23411:21;23403:61;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;23499:1;23478:9;:18;23488:7;23478:18;;;;;;;;;;;;;;;;:22;23475:108;;;23539:32;23552:9;:18;23562:7;23552:18;;;;;;;;;;;;;;;;23539:12;:32::i;:::-;23517:10;:19;23528:7;23517:19;;;;;;;;;;;;;;;:54;;;;23475:108;23616:4;23593:11;:20;23605:7;23593:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;23631:9;23646:7;23631:23;;39:1:-1;33:3;27:10;23:18;57:10;52:3;45:23;79:10;72:17;;0:93;23631:23:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23330:332:::0;:::o;19009:244::-;18286:12;:10;:12::i;:::-;18276:22;;:6;;;;;;;;;;;:22;;;18268:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19118:1:::1;19098:22;;:8;:22;;;;19090:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19208:8;19179:38;;19200:6;::::0;::::1;;;;;;;;;19179:38;;;;;;;;;;;;19237:8;19228:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;19009:244:::0;:::o;23670:481::-;18286:12;:10;:12::i;:::-;18276:22;;:6;;;;;;;;;;;:22;;;18268:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23751:11:::1;:20;23763:7;23751:20;;;;;;;;;;;;;;;;;;;;;;;;;23743:60;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;23819:9;23831:1:::0;23819:13:::1;;23814:330;23838:9;:16;;;;23834:1;:20;23814:330;;;23896:7;23880:23;;:9;23890:1;23880:12;;;;;;;;;;;;;;;;;;;;;;;;;:23;;;23876:257;;;23939:9;23968:1;23949:9;:16;;;;:20;23939:31;;;;;;;;;;;;;;;;;;;;;;;;;23924:9;23934:1;23924:12;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;24011:1;23989:10;:19;24000:7;23989:19;;;;;;;;;;;;;;;:23;;;;24054:5;24031:11;:20;24043:7;24031:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;24078:9;:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24112:5;;23876:257;23856:3;;;;;;;23814:330;;;;23670:481:::0;:::o;22620:442::-;22703:7;19739:5;22731:7;:21;;22723:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22804:17;22799:256;;22839:18;22865:19;22876:7;22865:10;:19::i;:::-;22838:46;;;;;;22906:10;22899:17;;;;;22799:256;22951:26;22984:19;22995:7;22984:10;:19::i;:::-;22949:54;;;;;;23025:18;23018:25;;;22620:442;;;;;:::o;95:106::-;148:15;183:10;176:17;;95:106;:::o;24159:337::-;24269:1;24252:19;;:5;:19;;;;24244:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24350:1;24331:21;;:7;:21;;;;24323:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24434:6;24404:11;:18;24416:5;24404:18;;;;;;;;;;;;;;;:27;24423:7;24404:27;;;;;;;;;;;;;;;:36;;;;24472:7;24456:32;;24465:5;24456:32;;;24481:6;24456:32;;;;;;;;;;;;;;;;;;24159:337;;;:::o;24504:931::-;24619:1;24601:20;;:6;:20;;;;24593:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24703:1;24682:23;;:9;:23;;;;24674:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24773:1;24764:6;:10;24756:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24835:11;:19;24847:6;24835:19;;;;;;;;;;;;;;;;;;;;;;;;;:46;;;;;24859:11;:22;24871:9;24859:22;;;;;;;;;;;;;;;;;;;;;;;;;24858:23;24835:46;24831:597;;;24898:48;24920:6;24928:9;24939:6;24898:21;:48::i;:::-;24831:597;;;24969:11;:19;24981:6;24969:19;;;;;;;;;;;;;;;;;;;;;;;;;24968:20;:46;;;;;24992:11;:22;25004:9;24992:22;;;;;;;;;;;;;;;;;;;;;;;;;24968:46;24964:464;;;25031:46;25051:6;25059:9;25070:6;25031:19;:46::i;:::-;24964:464;;;25100:11;:19;25112:6;25100:19;;;;;;;;;;;;;;;;;;;;;;;;;25099:20;:47;;;;;25124:11;:22;25136:9;25124:22;;;;;;;;;;;;;;;;;;;;;;;;;25123:23;25099:47;25095:333;;;25163:44;25181:6;25189:9;25200:6;25163:17;:44::i;:::-;25095:333;;;25229:11;:19;25241:6;25229:19;;;;;;;;;;;;;;;;;;;;;;;;;:45;;;;;25252:11;:22;25264:9;25252:22;;;;;;;;;;;;;;;;;;;;;;;;;25229:45;25225:203;;;25291:48;25313:6;25321:9;25332:6;25291:21;:48::i;:::-;25225:203;;;25372:44;25390:6;25398:9;25409:6;25372:17;:44::i;:::-;25225:203;25095:333;24964:464;24831:597;24504:931;;;:::o;7843:166::-;7929:7;7962:1;7957;:6;;7965:12;7949:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;7949:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8000:1;7996;:5;7989:12;;7843:166;;;;;:::o;5016:179::-;5074:7;5094:9;5110:1;5106;:5;5094:17;;5135:1;5130;:6;;5122:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5186:1;5179:8;;;5016:179;;;;:::o;28873:163::-;28914:7;28935:15;28952;28971:19;:17;:19::i;:::-;28934:56;;;;29008:20;29020:7;29008;:11;;:20;;;;:::i;:::-;29001:27;;;;28873:163;:::o;6593:153::-;6651:7;6683:1;6679;:5;6671:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6737:1;6733;:5;;;;;;6726:12;;6593:153;;;;:::o;27823:429::-;27882:7;27891;27900;27909;27918;27939:26;27967:12;27983:20;27995:7;27983:11;:20::i;:::-;27938:65;;;;28014:19;28037:10;:8;:10::i;:::-;28014:33;;28059:18;28079:26;28107:12;28123:39;28135:7;28144:4;28150:11;28123;:39::i;:::-;28058:104;;;;;;28181:10;28193:18;28213:4;28219:18;28239:4;28173:71;;;;;;;;;;;;;;;;27823:429;;;;;;;:::o;5478:158::-;5536:7;5569:1;5564;:6;;5556:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5627:1;5623;:5;5616:12;;5478:158;;;;:::o;26493:537::-;26596:18;26616:26;26644:12;26658:26;26686:12;26702:19;26713:7;26702:10;:19::i;:::-;26595:126;;;;;;;;;;26753:31;26776:7;26753:10;:18;26764:6;26753:18;;;;;;;;;;;;;;;;:22;;:31;;;;:::i;:::-;26732:10;:18;26743:6;26732:18;;;;;;;;;;;;;;;:52;;;;26815:33;26837:10;26815:9;:17;26825:6;26815:17;;;;;;;;;;;;;;;;:21;;:33;;;;:::i;:::-;26795:9;:17;26805:6;26795:17;;;;;;;;;;;;;;;:53;;;;26882:44;26907:18;26882:9;:20;26892:9;26882:20;;;;;;;;;;;;;;;;:24;;:44;;;;:::i;:::-;26859:9;:20;26869:9;26859:20;;;;;;;;;;;;;;;:67;;;;26940:19;26948:4;26954;26940:7;:19::i;:::-;26992:9;26975:47;;26984:6;26975:47;;;27003:18;26975:47;;;;;;;;;;;;;;;;;;26493:537;;;;;;;;:::o;25925:560::-;26026:18;26046:26;26074:12;26088:26;26116:12;26132:19;26143:7;26132:10;:19::i;:::-;26025:126;;;;;;;;;;26182:33;26204:10;26182:9;:17;26192:6;26182:17;;;;;;;;;;;;;;;;:21;;:33;;;;:::i;:::-;26162:9;:17;26172:6;26162:17;;;;;;;;;;;;;;;:53;;;;26250:45;26276:18;26250:10;:21;26261:9;26250:21;;;;;;;;;;;;;;;;:25;;:45;;;;:::i;:::-;26226:10;:21;26237:9;26226:21;;;;;;;;;;;;;;;:69;;;;26329:44;26354:18;26329:9;:20;26339:9;26329:20;;;;;;;;;;;;;;;;:24;;:44;;;;:::i;:::-;26306:9;:20;26316:9;26306:20;;;;;;;;;;;;;;;:67;;;;26395:19;26403:4;26409;26395:7;:19::i;:::-;26447:9;26430:47;;26439:6;26430:47;;;26458:18;26430:47;;;;;;;;;;;;;;;;;;25925:560;;;;;;;;:::o;25443:474::-;25542:18;25562:26;25590:12;25604:26;25632:12;25648:19;25659:7;25648:10;:19::i;:::-;25541:126;;;;;;;;;;25698:33;25720:10;25698:9;:17;25708:6;25698:17;;;;;;;;;;;;;;;;:21;;:33;;;;:::i;:::-;25678:9;:17;25688:6;25678:17;;;;;;;;;;;;;;;:53;;;;25765:44;25790:18;25765:9;:20;25775:9;25765:20;;;;;;;;;;;;;;;;:24;;:44;;;;:::i;:::-;25742:9;:20;25752:9;25742:20;;;;;;;;;;;;;;;:67;;;;25827:19;25835:4;25841;25827:7;:19::i;:::-;25879:9;25862:47;;25871:6;25862:47;;;25890:18;25862:47;;;;;;;;;;;;;;;;;;25443:474;;;;;;;;:::o;27038:622::-;27141:18;27161:26;27189:12;27203:26;27231:12;27247:19;27258:7;27247:10;:19::i;:::-;27140:126;;;;;;;;;;27298:31;27321:7;27298:10;:18;27309:6;27298:18;;;;;;;;;;;;;;;;:22;;:31;;;;:::i;:::-;27277:10;:18;27288:6;27277:18;;;;;;;;;;;;;;;:52;;;;27360:33;27382:10;27360:9;:17;27370:6;27360:17;;;;;;;;;;;;;;;;:21;;:33;;;;:::i;:::-;27340:9;:17;27350:6;27340:17;;;;;;;;;;;;;;;:53;;;;27428:45;27454:18;27428:10;:21;27439:9;27428:21;;;;;;;;;;;;;;;;:25;;:45;;;;:::i;:::-;27404:10;:21;27415:9;27404:21;;;;;;;;;;;;;;;:69;;;;27507:44;27532:18;27507:9;:20;27517:9;27507:20;;;;;;;;;;;;;;;;:24;;:44;;;;:::i;:::-;27484:9;:20;27494:9;27484:20;;;;;;;;;;;;;;;:67;;;;27570:19;27578:4;27584;27570:7;:19::i;:::-;27622:9;27605:47;;27614:6;27605:47;;;27633:18;27605:47;;;;;;;;;;;;;;;;;;27038:622;;;;;;;;:::o;29044:591::-;29094:7;29103;29123:15;29141:9;;29123:27;;29161:15;19739:5;29161:28;;29211:9;29223:1;29211:13;;29206:304;29230:9;:16;;;;29226:1;:20;29206:304;;;29298:7;29272:9;:23;29282:9;29292:1;29282:12;;;;;;;;;;;;;;;;;;;;;;;;;29272:23;;;;;;;;;;;;;;;;:33;:71;;;;29336:7;29309:10;:24;29320:9;29330:1;29320:12;;;;;;;;;;;;;;;;;;;;;;;;;29309:24;;;;;;;;;;;;;;;;:34;29272:71;29268:107;;;29353:9;;19739:5;29345:30;;;;;;;;;29268:107;29400:36;29412:9;:23;29422:9;29432:1;29422:12;;;;;;;;;;;;;;;;;;;;;;;;;29412:23;;;;;;;;;;;;;;;;29400:7;:11;;:36;;;;:::i;:::-;29390:46;;29461:37;29473:10;:24;29484:9;29494:1;29484:12;;;;;;;;;;;;;;;;;;;;;;;;;29473:24;;;;;;;;;;;;;;;;29461:7;:11;;:37;;;;:::i;:::-;29451:47;;29248:3;;;;;;;29206:304;;;;29534:25;19739:5;29534:9;;:13;;:25;;;;:::i;:::-;29524:7;:35;29520:71;;;29569:9;;19739:5;29561:30;;;;;;;;29520:71;29610:7;29619;29602:25;;;;;;29044:591;;;:::o;28260:248::-;28320:7;28329;28349:12;28364:35;28395:3;28364:26;28385:4;28364:16;28376:3;28364:7;:11;;:16;;;;:::i;:::-;:20;;:26;;;;:::i;:::-;:30;;:35;;;;:::i;:::-;28349:50;;28410:26;28439:17;28451:4;28439:7;:11;;:17;;;;:::i;:::-;28410:46;;28475:18;28495:4;28467:33;;;;;;28260:248;;;:::o;28516:349::-;28611:7;28620;28629;28649:18;28670:24;28682:11;28670:7;:11;;:24;;;;:::i;:::-;28649:45;;28705:12;28720:21;28729:11;28720:4;:8;;:21;;;;:::i;:::-;28705:36;;28752:26;28781:20;28796:4;28781:10;:14;;:20;;;;:::i;:::-;28752:49;;28820:10;28832:18;28852:4;28812:45;;;;;;;;;28516:349;;;;;;;:::o;27668:147::-;27744:19;27758:4;27744:9;;:13;;:19;;;;:::i;:::-;27732:9;:31;;;;27787:20;27802:4;27787:10;;:14;;:20;;;;:::i;:::-;27774:10;:33;;;;27668:147;;:::o;5895:220::-;5953:7;5982:1;5977;:6;5973:20;;;5992:1;5985:8;;;;5973:20;6004:9;6020:1;6016;:5;6004:17;;6049:1;6044;6040;:5;;;;;;:10;6032:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6106:1;6099:8;;;5895:220;;;;;:::o

Swarm Source

ipfs://9ef3743ba5f9ed84f20070087376260fd06e929189b8263266a0e6a1bc616c0f

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

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

Validator Index Block Amount
View All Withdrawals

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

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