ETH Price: $2,705.05 (+0.20%)
Gas: 0.82 Gwei

Token

Index20 (I20)
 

Overview

Max Total Supply

50,000,000 I20

Holders

4

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
BitMart 13
Balance
26,459 I20

Value
$0.00
0x6d0d19bdddc5ed1dd501430c9621dd37ebd9062d
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
I20Token

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : Index20.sol
// SPDX-License-Identifier: MIT

// Developed By SS

pragma solidity ^0.8.0;

import "./VotingToken.sol";
import "./Ownable.sol";
import "./SafeMath.sol";


contract I20Token is VotingToken, Ownable {
    using SafeMath for uint256;

    /**
     * @dev Gets the available balance of a specified address.
     * @param _owner is the address to query the available balance of. 
     * @return uint256 representing the amount owned by the address.
     */

    function availableBalance(address _owner) public view returns (uint256) {
        return _balances[_owner]; 
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        super._beforeTokenTransfer(from, to, amount);
        require(_balances[from] >= amount , "I20: not avaiable balance");
    }

    /**
     * @dev Sets the values for {name}, {symbol}, {totalsupply} and {deciamls}.
     *
     * {name}, {symbol} and {decimals} are immutable: they can only be set once during
     * construction. {totalsupply} may be changed by using mint and burn functions. 
     */

    constructor(address account) {
        _name = "Index20";
        _symbol = "I20";
        _decimals = 18;
        _transferOwnership(account);
        _mint(_msgSender(), 50000000000000000000000000);

    }

   function mint(address account, uint256 amount) public onlyAdminOrOwner returns (bool) {
        _mint(account, amount);
        return true;
    }

    function burn(uint256 amount) public returns (bool) {
        _burn(_msgSender(), amount);
        return true;
    }
    

    function transferAnyBEP20(address _tokenAddress, address _to, uint256 _amount) public onlyOwner returns (bool) {
        IBEP20(_tokenAddress).transfer(_to, _amount);
        return true;
    }
}

File 2 of 13 : VotingToken.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./SmartToken.sol";
import "./Math.sol"; 
import "./SafeMath.sol";

/**
 * @dev Extension of BEP20 to support voting and delegation. This version supports token supply up to 2 ** 96 - 1.
 *
 * This extension keeps a history (checkpoints) of each account's vote power. Vote power can be delegated either
 * by calling the {delegate} function directly, or by providing a signature to be used with {delegateBySig}. Voting
 * power can be queried through the public accessors {getVotes} and {getPastVotes}.
 *
 * By default, token balance does not account for voting power. This makes transfers cheaper. Acquiring vote power 
 * requires token holders to delegate to themselves in order to activate checkpoints and have their voting power
 * tracked.
 */


contract VotingToken is SmartToken {
    using SafeMath for uint256;
    struct Checkpoint {
        uint32 fromBlock;
        uint96 votes;
    }
    
    struct Delegatee {
        address _delegatee;
        uint96 votes;
    }

    /// @notice The EIP-712 typehash for the contract's domain
    bytes32 public constant DOMAIN_TYPEHASH = keccak256("EIP712Domain(string name,uint256 chainId,address verifyingContract)");

    /// @notice The EIP-712 typehash for the delegation struct used by the contract
    bytes32 public constant DELEGATION_TYPEHASH = keccak256("Delegation(address delegatee,uint256 nonce,uint256 expiry)");

    /// @notice A record of states for signing / validating signatures
    mapping (address => uint) public nonces;

    mapping(address => Delegatee) private _delegates;
    mapping(address => Checkpoint[]) private _checkpoints;
    Checkpoint[] private _totalSupplyCheckpoints;

    /**
     * @dev Emitted when an account changes their delegate.
     */
    event DelegateeChanged(address indexed delegator, address indexed fromDelegate, address indexed toDelegate);


    /**
     * @dev Emitted when a token transfer or delegate change results in changes to an account's voting power.
     */
    event DelegateVotesChanged(address indexed delegate, uint256 previousBalance, uint256 newBalance);


    /**
     * @dev Get the `pos`-th checkpoint for `account`.
     */
    function checkpoints(address account, uint32 pos) public view returns (Checkpoint memory) {
        return _checkpoints[account][pos];
    }

    /**
     * @dev Get number of checkpoints for `account`.
     */
    function numCheckpoints(address account) public view returns (uint256) {
        return _checkpoints[account].length;
    }

    /**
     * @dev Get the address `account` is currently delegating to.
     */
    function delegates(address account) public view returns (address) {
        return _delegates[account]._delegatee;
    }

    /**
     * @dev Gets the current votes balance for `account`
     */
    function getVotes(address account) public view returns (uint96) {
        uint256 pos = _checkpoints[account].length;
        return pos == 0 ? 0 : _checkpoints[account][pos.sub(1)].votes;
    }

    /**
     * @dev Retrieve the number of votes for `account` at the end of `blockNumber`.
     *
     * Requirements:
     *
     * - `blockNumber` must have been already mined
     */
    function getPastVotes(address account, uint256 blockNumber) public view returns (uint96) {
        require(blockNumber < block.number, "BEP20Votes: block not yet mined");
        return _checkpointsLookup(_checkpoints[account], blockNumber);
    }

    /**
     * @dev Retrieve the `totalSupply` at the end of `blockNumber`. Note, this value is the sum of all balances.
     * It is but NOT the sum of all the delegated votes!
     *
     * Requirements:
     *
     * - `blockNumber` must have been already mined
     */
    function getPastTotalSupply(uint256 blockNumber) public view returns (uint96) {
        require(blockNumber < block.number, "BEP20Votes: block not yet mined");
        return _checkpointsLookup(_totalSupplyCheckpoints, blockNumber);
    }

    /**
     * @dev Lookup a value in a list of (sorted) checkpoints.
     */
    function _checkpointsLookup(Checkpoint[] storage ckpts, uint256 blockNumber) private view returns (uint96) {
        // We run a binary search to look for the earliest checkpoint taken after `blockNumber`.
        //
        // During the loop, the index of the wanted checkpoint remains in the range [low-1, high).
        // With each iteration, either `low` or `high` is moved towards the middle of the range to maintain the invariant.
        // - If the middle checkpoint is after `blockNumber`, we look in [low, mid)
        // - If the middle checkpoint is before or equal to `blockNumber`, we look in [mid+1, high)
        // Once we reach a single value (when low == high), we've found the right checkpoint at the index high-1, if not
        // out of bounds (in which case we're looking too far in the past and the result is 0).
        // Note that if the latest checkpoint available is exactly for `blockNumber`, we end up with an index that is
        // past the end of the array, so we technically don't find a checkpoint after `blockNumber`, but it works out
        // the same.
        uint256 high = ckpts.length;
        uint256 low = 0;
        while (low < high) {
            uint256 mid = Math.average(low, high);
            if (ckpts[mid].fromBlock > blockNumber) {
                high = mid;
            } else {
                low = mid.add(1);
            }
        }

        return high == 0 ? 0 : ckpts[high.sub(1)].votes;
    }

    /**
     * @dev Delegate votes from the sender to `delegatee`.
     */
    function delegate(address delegatee) public {
        _delegate(_msgSender(), delegatee);
    }
    
    /**
     * @dev Remove previous delegatee and set it to zero address. After receiving more tokens, token owner needs to
     * delegates once more to update voting powers. If source and destination delegatee be the same (means token owner
     * wants to delegate the same address and update vote powers of the same address), voting powers will not be updated.
     * In such case, token owner should call resetDelegate function and then delegate to the address again.
     */
    function resetDelegate() public {
        _delegate(_msgSender(), address(0));
    }

    /**
     * @dev Delegates votes from signer to `delegatee`
     * @notice Delegates votes from signer to `delegatee`
     * @param delegatee The address to delegate votes to
     * @param nonce The contract state required to match the signature
     * @param expiry The time at which to expire the signature
     * @param v The recovery byte of the signature
     * @param r Half of the ECDSA signature pair
     * @param s Half of the ECDSA signature pair
     */
    function delegateBySig(
        address delegatee,
        uint nonce,
        uint expiry,
        uint8 v,
        bytes32 r,
        bytes32 s
    )
        public
    {
        require(block.timestamp <= expiry, "BEP20Votes: signature expired");
        bytes32 domainSeparator = keccak256(
            abi.encode(
                DOMAIN_TYPEHASH,
                keccak256(bytes(name())),
                getChainId(),
                address(this)
            )
        );

        bytes32 structHash = keccak256(
            abi.encode(
                DELEGATION_TYPEHASH,
                delegatee,
                nonce,
                expiry
            )
        );

        bytes32 digest = keccak256(
            abi.encodePacked(
                "\x19\x01",
                domainSeparator,
                structHash
            )
        );

        address signer = ecrecover(digest, v, r, s);
        require(signer != address(0), "I20::delegateBySig: invalid signature");
        require(nonce == nonces[signer]++, "I20::delegateBySig: invalid nonce");
        return _delegate(signer, delegatee);
    }

    /**
     * @dev Maximum token supply is limited to 10 ** 10 units in order to avoid inflation and overflow in voting mechanism.
     */
    function _maxSupply() internal pure returns (uint96) {
        return 10 ** 28;
    }

    /**
     * @dev Snapshots the totalSupply after it has been increased.
     */
    function _mint(address account, uint256 amount) internal override {
        super._mint(account, amount);
        require(totalSupply() <= _maxSupply(), "BEP20Votes: total supply risks overflowing votes");

        _writeCheckpoint(_totalSupplyCheckpoints, _add, amount);
    }

    /**
     * @dev Snapshots the totalSupply after it has been decreased.
     */
    function _burn(address account, uint256 amount) internal override {
        super._burn(account, amount);
        if (delegates(account) != address(0)) {
            uint256 currentBalance = balanceOf(account);
            uint96 delegateeVotePower = _delegates[account].votes;
            if (currentBalance < delegateeVotePower) {
                uint256 diff = castTo256(delegateeVotePower).sub(currentBalance);
                _moveVotingPower(delegates(account), address(0), diff, currentBalance);
                _delegates[account].votes = safeCastTo96(currentBalance, "I20::_writeCheckpoint: number exceeds 96 bits");
            }
        }

        _writeCheckpoint(_totalSupplyCheckpoints, _subtract, amount);
    }

    /**
    * @dev Move voting power when tokens are transferred.
    *
    * Emits a {DelegateVotesChanged} event.
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        super._afterTokenTransfer(from, to, amount);
        if (delegates(from) != address(0)) {
            uint256 currentBalance = balanceOf(from);
            uint96 delegateeVotePower = _delegates[from].votes;
            if (currentBalance < delegateeVotePower) {
                uint256 diff = castTo256(delegateeVotePower).sub(currentBalance);
                _moveVotingPower(delegates(from), address(0), diff, currentBalance);
                _delegates[from].votes = safeCastTo96(currentBalance, "I20::_writeCheckpoint: number exceeds 96 bits");
            }
        }
    }

    /**
     * @dev Change delegation for `delegator` to `delegatee`.
     *
     * Emits events {DelegateeChanged} and {DelegateVotesChanged}.
     */
    function _delegate(address delegator, address delegatee) internal {
        address currentDelegate = delegates(delegator);
        uint256 currentVotePower = castTo256(_delegates[delegator].votes);
        uint256 delegatorBalance = balanceOf(delegator);
        if (currentDelegate != delegatee) {
            _delegates[delegator]._delegatee = delegatee;
            _delegates[delegator].votes = delegatee == address(0) ? 0 : safeCastTo96(delegatorBalance, "I20::_writeCheckpoint: number exceeds 96 bits");
            emit DelegateeChanged(delegator, currentDelegate, delegatee);
        }
        
        _moveVotingPower(currentDelegate, delegatee, currentVotePower, delegatorBalance);
    }

    /**
    * @dev The function returns the chain id in which token contract 
     */ 
    function getChainId() internal view returns (uint) {
        uint256 chainId;
        assembly { chainId := chainid() }
        return chainId;
    }

    function safeCastTo96(uint n, string memory errorMessage) internal pure returns (uint96) {
        require(n < 2**96, errorMessage);
        return uint96(n);
    }

    function safeCastTo32(uint n, string memory errorMessage) internal pure returns (uint32) {
        require(n < 2**32, errorMessage);
        return uint32(n);
    }

    function castTo256(uint96 n) internal pure returns (uint256) {
        return uint256(n);
    }

    function _moveVotingPower(
        address src,
        address dst,
        uint256 transferredVote,
        uint256 amount
    ) private {
        if (src != dst && amount > 0) {
            if (src != address(0)) {
                (uint256 oldWeight, uint256 newWeight) = _writeCheckpoint(_checkpoints[src], _subtract, transferredVote);
                emit DelegateVotesChanged(src, oldWeight, newWeight);
            }

            if (dst != address(0)) {
                (uint256 oldWeight, uint256 newWeight) = _writeCheckpoint(_checkpoints[dst], _add, amount);
                emit DelegateVotesChanged(dst, oldWeight, newWeight);
            }
        }
    }

    function _writeCheckpoint(
        Checkpoint[] storage ckpts,
        function(uint256, uint256) view returns (uint256) op,
        uint256 delta
    ) private returns (uint256 oldWeight, uint256 newWeight) {
        uint256 pos = ckpts.length;
        oldWeight = pos == 0 ? 0 : castTo256(ckpts[pos.sub(1)].votes);
        newWeight = op(oldWeight, delta);

        uint32 blockNumber = safeCastTo32(block.number, "I20::_writeCheckpoint: block number exceeds 32 bits");
        if (pos > 0 && ckpts[pos.sub(1)].fromBlock == blockNumber) {
            ckpts[pos.sub(1)].votes = safeCastTo96(newWeight, "I20::_writeCheckpoint: number exceeds 96 bits");
        } else {
            ckpts.push(Checkpoint({fromBlock: blockNumber, votes: safeCastTo96(newWeight, "I20::_writeCheckpoint: number exceeds 96 bits")}));
        }
    }

    function _add(uint256 a, uint256 b) private pure returns (uint256) {
        return a + b;
    }

    function _subtract(uint256 a, uint256 b) private pure returns (uint256) {
        return a - b;
    }
}

File 3 of 13 : StandardToken.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./BasicToken.sol";
import "./IBEP20.sol";
import "./SafeMath.sol";


contract StandardToken is BasicToken, IBEP20 {
    /**
     * Libraries can be seen as implicit base contracts of the contracts that use them.
     * They will not be explicitly visible in the inheritance hierarchy.
     */
    using SafeMath for uint256;
    mapping(address => mapping(address => uint256)) private _allowances;

    string internal _name;
    string internal _symbol;

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

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

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

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

    /**
     * @dev See {IBEP20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {BEP20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "BEP20: transfer amount exceeds allowance");
        _approve(sender, _msgSender(), currentAllowance.sub(amount));
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IBEP20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */

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

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IBEP20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */

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

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */

    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "BEP20: mint to the zero address");
        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */

    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "BEP20: burn from the zero address");
        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "BEP20: burn amount exceeds balance");
        _balances[account] = accountBalance.sub(amount);
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

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

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


}

File 4 of 13 : SmartToken.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./StandardToken.sol";
import "./IBEP677.sol";
import "./IBEP677Receiver.sol";

/**
 * @title Smart Token
 * @dev Enhanced Standard Token, with "transfer and call" possibility.
 */


contract SmartToken is StandardToken, IBEP677 {
    /**
     * @dev Current token cannot be transferred to the token contract based on follwing override modification.
     */

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, amount);
        require(validRecipient(to), "I20: recipient cannot be I20 token address");
    }

    /**
     * @dev transfer token to a contract address with additional data if the recipient is a contract.
     * @param _to address to transfer to.
     * @param _value amount to be transferred.
     * @param _data extra data to be passed to the receiving contract.
     */

    function transferAndCall(address _to, uint256 _value, bytes memory _data) public override returns (bool success) {
        _transfer(_msgSender(), _to, _value);
        emit Transfer(_msgSender(), _to, _value, _data);
        if (isContract(_to)) {
            contractFallback(_to, _value, _data);
        }
        return true;
    }

    /**
     * @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;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    function validRecipient(address _recipient) internal view returns (bool) {
        return _recipient != address(this);
    }

    function contractFallback(address _to, uint _value, bytes memory _data) private {
        IBEP677Receiver receiver = IBEP677Receiver(_to);
        receiver.onTokenTransfer(_msgSender(), _value, _data);
    }
}

File 5 of 13 : SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            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.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // 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.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            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.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            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) {
        return a + b;
    }

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

    /**
     * @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.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        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) {
        return a % b;
    }
}

File 6 of 13 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;
    address[] private _admins;

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

    /// @dev Adds new admin.

   function addAdmin(address newAddress) public onlyOwner {
        if(!isWalletAdmin(newAddress)){
            _admins.push(newAddress);
        }
   }

    /// @dev removes admin wallet by index.
    /// @param index_ index of the wallet.

   function removeAdminByIndex(uint index_) private onlyOwner {
        require(index_ < _admins.length, "index out of bound");
        while (index_ < _admins.length - 1) {
            _admins[index_] = _admins[index_ + 1];
            index_++;
        }
        _admins.pop();
    }

    /// @dev finds the index of the address in admin
    /// @param address_ address of the wallet.
    
    function findAdminIndex(address address_) private view returns(uint) {
        uint i = 0;
        while (_admins[i] != address_) {
            i++;
        }
        return i;
    }

    /// @dev removes admin wallet by address
    /// @param address_ address of the wallet.

    function removeAdminWithAddress(address address_) public onlyOwner {
        uint index = findAdminIndex(address_);
        removeAdminByIndex(index);
    }

    /// @dev Returns list of admin.
    /// @return List of admin addresses.

    function getAdmins() public view onlyAdminOrOwner returns (address[] memory) {
        return _admins;
    }
    
    /// @dev Checks if address is in admins.
    /// @param address_ address of the wallet.
    /// @return true if address is in white list.
    
    function isWalletAdmin(address address_) private view returns (bool) {
    if(_admins.length == 0) {
        return false;
    }

    for (uint i = 0; i < _admins.length; i++) {
        if (_admins[i] == address_) {
            return true;
        }
    }
        return false;
    }



    /**
     * @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 Throws if called by any account other than the admin.
     */

    modifier onlyAdmin() {
        require(isWalletAdmin(_msgSender()) , "Ownable: caller is not the admin");
        _;
    }

        /**
     * @dev Throws if called by any account other than the admin.
     */

    modifier onlyAdminOrOwner() {
        require(isWalletAdmin(_msgSender()) || _msgSender() == owner() , "Ownable: caller is not the admin or owner");
        _;
    }
    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }


    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 7 of 13 : Math.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */


library Math {
    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a >= b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a / b + (a % b == 0 ? 0 : 1);
    }
}

File 8 of 13 : IBEP677Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @title IBEP677 Receiving Contract interface
 * @dev see https://github.com/ethereum/EIPs/issues/677
 */

interface IBEP677Receiver {
    function onTokenTransfer(address _sender, uint _value, bytes memory _data) external;
}

File 9 of 13 : IBEP677.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IBEP20.sol";

/**
 * @title IBEP677 Token interface
 * @dev see https://github.com/ethereum/EIPs/issues/677
 */

interface IBEP677 is IBEP20 {
    function transferAndCall(address receiver, uint value, bytes memory data) external returns (bool success);
    event Transfer(address indexed from, address indexed to, uint256 value, bytes data);
}

File 10 of 13 : IBEP20Basic.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @title BEP20Basic
 * @dev Simpler version of BEP20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/179
 */

interface IBEP20Basic {
    /**
     * @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 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);

}

File 11 of 13 : IBEP20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IBEP20Basic.sol";

/**
 * @dev Interface of the BEP20 standard as defined in the EIP.
 */
interface IBEP20 is IBEP20Basic {
    /**
     * @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 the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

File 12 of 13 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

File 13 of 13 : BasicToken.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./SafeMath.sol";
import "./Context.sol";
import "./IBEP20Basic.sol";

/**
 * @title Basic Token
 * @dev Basic version of BEP20 Standard Token, without transfer approvals.
 */


contract BasicToken is Context, IBEP20Basic {
    using SafeMath for uint256;

    mapping(address => uint256) internal _balances;

    uint256 internal _totalSupply;
    uint8 internal _decimals;

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

    /**
     * @dev See {BEP20Basic-balanceOf}.
     */

    function balanceOf(address account) public view override returns (uint256) {
        return _balances[account];
    }

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

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

    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal {
        require(sender != address(0), "BEP20: transfer from the zero address");
        require(recipient != address(0), "BEP20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "BEP20: transfer amount exceeds balance");
        _balances[sender] = senderBalance.sub(amount);
        _balances[recipient] = _balances[recipient].add(amount);

        emit Transfer(sender, recipient, amount);
        
        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

}

Settings
{
  "remappings": [],
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "evmVersion": "istanbul",
  "libraries": {},
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"account","type":"address"}],"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":"delegate","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newBalance","type":"uint256"}],"name":"DelegateVotesChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegator","type":"address"},{"indexed":true,"internalType":"address","name":"fromDelegate","type":"address"},{"indexed":true,"internalType":"address","name":"toDelegate","type":"address"}],"name":"DelegateeChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DELEGATION_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"addAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"availableBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint32","name":"pos","type":"uint32"}],"name":"checkpoints","outputs":[{"components":[{"internalType":"uint32","name":"fromBlock","type":"uint32"},{"internalType":"uint96","name":"votes","type":"uint96"}],"internalType":"struct VotingToken.Checkpoint","name":"","type":"tuple"}],"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":"delegatee","type":"address"}],"name":"delegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"delegateBySig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"delegates","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getAdmins","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getPastTotalSupply","outputs":[{"internalType":"uint96","name":"","type":"uint96"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getPastVotes","outputs":[{"internalType":"uint96","name":"","type":"uint96"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getVotes","outputs":[{"internalType":"uint96","name":"","type":"uint96"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"numCheckpoints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"address_","type":"address"}],"name":"removeAdminWithAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"resetDelegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"transferAndCall","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenAddress","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"transferAnyBEP20","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"}]

60806040523480156200001157600080fd5b5060405162005a5438038062005a54833981810160405281019062000037919062000967565b6040518060400160405280600781526020017f496e6465783230000000000000000000000000000000000000000000000000008152506004908051906020019062000084929190620008a0565b506040518060400160405280600381526020017f493230000000000000000000000000000000000000000000000000000000000081525060059080519060200190620000d2929190620008a0565b506012600260006101000a81548160ff021916908360ff16021790555062000100816200013360201b60201c565b6200012c62000114620001f960201b60201c565b6a295be96e640669720000006200020160201b60201c565b5062000cfb565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b620002188282620002af60201b620019851760201c565b620002286200044a60201b60201c565b6bffffffffffffffffffffffff16620002466200045e60201b60201c565b11156200028a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002819062000ab3565b60405180910390fd5b620002a960096200046860201b62001b0d17836200048060201b60201c565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000322576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003199062000ad5565b60405180910390fd5b6200033e816001546200079e60201b62001b231790919060201c565b6001819055506200039c816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546200079e60201b62001b231790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200043e919062000af7565b60405180910390a35050565b60006b204fce5e3e25026110000000905090565b6000600154905090565b6000818362000478919062000b30565b905092915050565b6000806000858054905090506000811462000525576200051f86620004b5600184620007b660201b62001b391790919060201c565b81548110620004ed577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160000160049054906101000a90046bffffffffffffffffffffffff16620007ce60201b60201c565b62000528565b60005b92506200053683858760201c565b915060006200056543604051806060016040528060338152602001620059f460339139620007e660201b60201c565b9050600082118015620005f457508063ffffffff168762000596600185620007b660201b62001b391790919060201c565b81548110620005ce577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160000160009054906101000a900463ffffffff1663ffffffff16145b15620006ba5762000625836040518060600160405280602d815260200162005a27602d91396200083f60201b60201c565b8762000641600185620007b660201b62001b391790919060201c565b8154811062000679577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160000160046101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff16021790555062000794565b8660405180604001604052808363ffffffff168152602001620006fd866040518060600160405280602d815260200162005a27602d91396200083f60201b60201c565b6bffffffffffffffffffffffff168152509080600181540180825580915050600190039060005260206000200160009091909190915060008201518160000160006101000a81548163ffffffff021916908363ffffffff16021790555060208201518160000160046101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff16021790555050505b5050935093915050565b60008183620007ae919062000b30565b905092915050565b60008183620007c6919062000b8d565b905092915050565b6000816bffffffffffffffffffffffff169050919050565b60006401000000008310829062000835576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200082c919062000a8f565b60405180910390fd5b5082905092915050565b60006c010000000000000000000000008310829062000896576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200088d919062000a8f565b60405180910390fd5b5082905092915050565b828054620008ae9062000c3c565b90600052602060002090601f016020900481019282620008d257600085556200091e565b82601f10620008ed57805160ff19168380011785556200091e565b828001600101855582156200091e579182015b828111156200091d57825182559160200191906001019062000900565b5b5090506200092d919062000931565b5090565b5b808211156200094c57600081600090555060010162000932565b5090565b600081519050620009618162000ce1565b92915050565b6000602082840312156200097a57600080fd5b60006200098a8482850162000950565b91505092915050565b6000620009a08262000b14565b620009ac818562000b1f565b9350620009be81856020860162000c06565b620009c98162000cd0565b840191505092915050565b6000620009e360308362000b1f565b91507f4245503230566f7465733a20746f74616c20737570706c79207269736b73206f60008301527f766572666c6f77696e6720766f746573000000000000000000000000000000006020830152604082019050919050565b600062000a4b601f8362000b1f565b91507f42455032303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b62000a898162000bfc565b82525050565b6000602082019050818103600083015262000aab818462000993565b905092915050565b6000602082019050818103600083015262000ace81620009d4565b9050919050565b6000602082019050818103600083015262000af08162000a3c565b9050919050565b600060208201905062000b0e600083018462000a7e565b92915050565b600081519050919050565b600082825260208201905092915050565b600062000b3d8262000bfc565b915062000b4a8362000bfc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000b825762000b8162000c72565b5b828201905092915050565b600062000b9a8262000bfc565b915062000ba78362000bfc565b92508282101562000bbd5762000bbc62000c72565b5b828203905092915050565b600062000bd58262000bdc565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000c2657808201518184015260208101905062000c09565b8381111562000c36576000848401525b50505050565b6000600282049050600182168062000c5557607f821691505b6020821081141562000c6c5762000c6b62000ca1565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b62000cec8162000bc8565b811462000cf857600080fd5b50565b614ce98062000d0b6000396000f3fe608060405234801561001057600080fd5b50600436106101fb5760003560e01c8063704802751161011a578063a457c2d7116100ad578063dd62ed3e1161007c578063dd62ed3e14610660578063e7a324dc14610690578063f1127ed8146106ae578063f2fde38b146106de578063f3a22124146106fa576101fb565b8063a457c2d7146105da578063a9059cbb1461060a578063b55a77a81461063a578063c3cda52014610644576101fb565b80638e539e8c116100e95780638e539e8c1461052c57806395d89b411461055c5780639ab24eb01461057a578063a0821be3146105aa576101fb565b8063704802751461049257806370a08231146104ae5780637ecebe00146104de5780638da5cb5b1461050e576101fb565b8063395093511161019257806342966c681161016157806342966c68146103e6578063587cde1e146104165780635c19a95c146104465780636fcfff4514610462576101fb565b806339509351146103265780633a46b1a8146103565780634000aea01461038657806340c10f19146103b6576101fb565b806320606b70116101ce57806320606b701461029c57806323b872dd146102ba578063313ce567146102ea57806331ae450b14610308576101fb565b806306fdde0314610200578063095ea7b31461021e578063164b26301461024e57806318160ddd1461027e575b600080fd5b610208610716565b604051610215919061448f565b60405180910390f35b61023860048036038101906102339190613786565b6107a8565b604051610245919061438a565b60405180910390f35b61026860048036038101906102639190613737565b6107c6565b604051610275919061438a565b60405180910390f35b6102866108dd565b604051610293919061476c565b60405180910390f35b6102a46108e7565b6040516102b191906143a5565b60405180910390f35b6102d460048036038101906102cf9190613737565b61090b565b6040516102e1919061438a565b60405180910390f35b6102f2610a13565b6040516102ff91906147e0565b60405180910390f35b610310610a2a565b60405161031d9190614368565b60405180910390f35b610340600480360381019061033b9190613786565b610b4b565b60405161034d919061438a565b60405180910390f35b610370600480360381019061036b9190613786565b610bfe565b60405161037d91906147fb565b60405180910390f35b6103a0600480360381019061039b91906137c2565b610c92565b6040516103ad919061438a565b60405180910390f35b6103d060048036038101906103cb9190613786565b610d39565b6040516103dd919061438a565b60405180910390f35b61040060048036038101906103fb9190613917565b610de2565b60405161040d919061438a565b60405180910390f35b610430600480360381019061042b91906136d2565b610dfe565b60405161043d91906142e6565b60405180910390f35b610460600480360381019061045b91906136d2565b610e6a565b005b61047c600480360381019061047791906136d2565b610e7e565b604051610489919061476c565b60405180910390f35b6104ac60048036038101906104a791906136d2565b610eca565b005b6104c860048036038101906104c391906136d2565b610fba565b6040516104d5919061476c565b60405180910390f35b6104f860048036038101906104f391906136d2565b611002565b604051610505919061476c565b60405180910390f35b61051661101a565b60405161052391906142e6565b60405180910390f35b61054660048036038101906105419190613917565b611044565b60405161055391906147fb565b60405180910390f35b61056461109a565b604051610571919061448f565b60405180910390f35b610594600480360381019061058f91906136d2565b61112c565b6040516105a191906147fb565b60405180910390f35b6105c460048036038101906105bf91906136d2565b61123c565b6040516105d1919061476c565b60405180910390f35b6105f460048036038101906105ef9190613786565b611284565b604051610601919061438a565b60405180910390f35b610624600480360381019061061f9190613786565b61137f565b604051610631919061438a565b60405180910390f35b61064261139d565b005b61065e60048036038101906106599190613829565b6113b1565b005b61067a600480360381019061067591906136fb565b611646565b604051610687919061476c565b60405180910390f35b6106986116cd565b6040516106a591906143a5565b60405180910390f35b6106c860048036038101906106c391906138b2565b6116f1565b6040516106d59190614751565b60405180910390f35b6106f860048036038101906106f391906136d2565b6117f7565b005b610714600480360381019061070f91906136d2565b6118ef565b005b60606004805461072590614a77565b80601f016020809104026020016040519081016040528092919081815260200182805461075190614a77565b801561079e5780601f106107735761010080835404028352916020019161079e565b820191906000526020600020905b81548152906001019060200180831161078157829003601f168201915b5050505050905090565b60006107bc6107b5611b4f565b8484611b57565b6001905092915050565b60006107d0611b4f565b73ffffffffffffffffffffffffffffffffffffffff166107ee61101a565b73ffffffffffffffffffffffffffffffffffffffff1614610844576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083b906145f1565b60405180910390fd5b8373ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84846040518363ffffffff1660e01b815260040161087f929190614301565b602060405180830381600087803b15801561089957600080fd5b505af11580156108ad573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108d191906138ee565b50600190509392505050565b6000600154905090565b7f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b6000610918848484611d22565b6000600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610963611b4f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156109e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109da90614551565b60405180910390fd5b610a07856109ef611b4f565b610a028685611b3990919063ffffffff16565b611b57565b60019150509392505050565b6000600260009054906101000a900460ff16905090565b6060610a3c610a37611b4f565b611ff1565b80610a805750610a4a61101a565b73ffffffffffffffffffffffffffffffffffffffff16610a68611b4f565b73ffffffffffffffffffffffffffffffffffffffff16145b610abf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab6906144d1565b60405180910390fd5b600b805480602002602001604051908101604052809291908181526020018280548015610b4157602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019060010190808311610af7575b5050505050905090565b6000610bf4610b58611b4f565b84610bef8560036000610b69611b4f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b2390919063ffffffff16565b611b57565b6001905092915050565b6000438210610c42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3990614711565b60405180910390fd5b610c8a600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020836120d9565b905092915050565b6000610ca6610c9f611b4f565b8585611d22565b8373ffffffffffffffffffffffffffffffffffffffff16610cc5611b4f565b73ffffffffffffffffffffffffffffffffffffffff167fe19260aff97b920c7df27010903aeb9c8d2be5d310a2c67824cf3f15396e4c168585604051610d0c929190614787565b60405180910390a3610d1d84612211565b15610d2e57610d2d848484612224565b5b600190509392505050565b6000610d4b610d46611b4f565b611ff1565b80610d8f5750610d5961101a565b73ffffffffffffffffffffffffffffffffffffffff16610d77611b4f565b73ffffffffffffffffffffffffffffffffffffffff16145b610dce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc5906144d1565b60405180910390fd5b610dd883836122a5565b6001905092915050565b6000610df5610def611b4f565b83612322565b60019050919050565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610e7b610e75611b4f565b826124c9565b50565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805490509050919050565b610ed2611b4f565b73ffffffffffffffffffffffffffffffffffffffff16610ef061101a565b73ffffffffffffffffffffffffffffffffffffffff1614610f46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3d906145f1565b60405180910390fd5b610f4f81611ff1565b610fb757600b819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60066020528060005260406000206000915090505481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000438210611088576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107f90614711565b60405180910390fd5b6110936009836120d9565b9050919050565b6060600580546110a990614a77565b80601f01602080910402602001604051908101604052809291908181526020018280546110d590614a77565b80156111225780601f106110f757610100808354040283529160200191611122565b820191906000526020600020905b81548152906001019060200180831161110557829003601f168201915b5050505050905090565b600080600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054905090506000811461123157600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206111cf600183611b3990919063ffffffff16565b81548110611206577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160000160049054906101000a90046bffffffffffffffffffffffff16611234565b60005b915050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60008060036000611293611b4f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611350576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134790614691565b60405180910390fd5b61137461135b611b4f565b8561136f8685611b3990919063ffffffff16565b611b57565b600191505092915050565b600061139361138c611b4f565b8484611d22565b6001905092915050565b6113af6113a8611b4f565b60006124c9565b565b834211156113f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113eb90614531565b60405180910390fd5b60007f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86661141f610716565b8051906020012061142e612751565b306040516020016114429493929190614405565b60405160208183030381529060405280519060200120905060007fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf88888860405160200161149394939291906143c0565b604051602081830303815290604052805190602001209050600082826040516020016114c09291906142af565b6040516020818303038152906040528051906020012090506000600182888888604051600081526020016040526040516114fd949392919061444a565b6020604051602081039080840390855afa15801561151f573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561159b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159290614671565b60405180910390fd5b600660008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906115eb90614aa9565b919050558914611630576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611627906145b1565b60405180910390fd5b61163a818b6124c9565b50505050505050505050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf81565b6116f96135be565b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208263ffffffff1681548110611776577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020016040518060400160405290816000820160009054906101000a900463ffffffff1663ffffffff1663ffffffff1681526020016000820160049054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff1681525050905092915050565b6117ff611b4f565b73ffffffffffffffffffffffffffffffffffffffff1661181d61101a565b73ffffffffffffffffffffffffffffffffffffffff1614611873576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186a906145f1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156118e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118da90614511565b60405180910390fd5b6118ec8161275e565b50565b6118f7611b4f565b73ffffffffffffffffffffffffffffffffffffffff1661191561101a565b73ffffffffffffffffffffffffffffffffffffffff161461196b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611962906145f1565b60405180910390fd5b600061197682612824565b9050611981816128df565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ec906145d1565b60405180910390fd5b611a0a81600154611b2390919063ffffffff16565b600181905550611a61816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b2390919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611b01919061476c565b60405180910390a35050565b60008183611b1b91906148f3565b905092915050565b60008183611b3191906148f3565b905092915050565b60008183611b47919061497a565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611bc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbe906144f1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2e90614731565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611d15919061476c565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611d92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d89906144b1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df990614651565b60405180910390fd5b611e0d838383612b32565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611e93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8a90614631565b60405180910390fd5b611ea68282611b3990919063ffffffff16565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611f39826000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b2390919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611fd8919061476c565b60405180910390a3611feb848484612bc3565b50505050565b600080600b80549050141561200957600090506120d4565b60005b600b805490508110156120ce578273ffffffffffffffffffffffffffffffffffffffff16600b828154811061206a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156120bb5760019150506120d4565b80806120c690614aa9565b91505061200c565b50600090505b919050565b6000808380549050905060005b818110156121855760006120fa8284612d5c565b905084868281548110612136577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160000160009054906101000a900463ffffffff1663ffffffff1611156121685780925061217f565b61217c600182611b2390919063ffffffff16565b91505b506120e6565b6000821461220457846121a2600184611b3990919063ffffffff16565b815481106121d9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160000160049054906101000a90046bffffffffffffffffffffffff16612207565b60005b9250505092915050565b600080823b905060008111915050919050565b60008390508073ffffffffffffffffffffffffffffffffffffffff1663a4c0ed3661224d611b4f565b85856040518463ffffffff1660e01b815260040161226d9392919061432a565b600060405180830381600087803b15801561228757600080fd5b505af115801561229b573d6000803e3d6000fd5b5050505050505050565b6122af8282611985565b6122b7612d82565b6bffffffffffffffffffffffff166122cd6108dd565b111561230e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230590614591565b60405180910390fd5b61231c6009611b0d83612d96565b50505050565b61232c8282613076565b600073ffffffffffffffffffffffffffffffffffffffff1661234d83610dfe565b73ffffffffffffffffffffffffffffffffffffffff16146124b557600061237383610fba565b90506000600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160149054906101000a90046bffffffffffffffffffffffff169050806bffffffffffffffffffffffff168210156124b2576000612407836123f984613247565b611b3990919063ffffffff16565b905061241e61241586610dfe565b6000838661325f565b612440836040518060600160405280602d8152602001614c87602d9139613459565b600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550505b50505b6124c360096134b783612d96565b50505050565b60006124d483610dfe565b9050600061253b600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160149054906101000a90046bffffffffffffffffffffffff16613247565b9050600061254885610fba565b90508373ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461273e5783600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161461265957612654816040518060600160405280602d8152602001614c87602d9139613459565b61265c565b60005b600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055508373ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167f5884d7e3ec123de8e772bcf576c18dcdad75b056c4314f999ed966693419c69260405160405180910390a45b61274a8385848461325f565b5050505050565b6000804690508091505090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080600090505b8273ffffffffffffffffffffffffffffffffffffffff16600b828154811061287d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146128d65780806128ce90614aa9565b91505061282c565b80915050919050565b6128e7611b4f565b73ffffffffffffffffffffffffffffffffffffffff1661290561101a565b73ffffffffffffffffffffffffffffffffffffffff161461295b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612952906145f1565b60405180910390fd5b600b8054905081106129a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299990614611565b60405180910390fd5b5b6001600b805490506129b5919061497a565b811015612ac257600b6001826129cb91906148f3565b81548110612a02577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600b8281548110612a67577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508080612aba90614aa9565b9150506129a3565b600b805480612afa577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055905550565b612b3d8383836134cd565b806000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015612bbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bb590614571565b60405180910390fd5b505050565b612bce838383613525565b600073ffffffffffffffffffffffffffffffffffffffff16612bef84610dfe565b73ffffffffffffffffffffffffffffffffffffffff1614612d57576000612c1584610fba565b90506000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160149054906101000a90046bffffffffffffffffffffffff169050806bffffffffffffffffffffffff16821015612d54576000612ca983612c9b84613247565b611b3990919063ffffffff16565b9050612cc0612cb787610dfe565b6000838661325f565b612ce2836040518060600160405280602d8152602001614c87602d9139613459565b600760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550505b50505b505050565b60006002828418612d6d9190614949565b828416612d7a91906148f3565b905092915050565b60006b204fce5e3e25026110000000905090565b60008060008580549050905060008114612e2957612e2486612dc2600184611b3990919063ffffffff16565b81548110612df9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160000160049054906101000a90046bffffffffffffffffffffffff16613247565b612e2c565b60005b9250612e3c83858763ffffffff16565b91506000612e6243604051806060016040528060338152602001614c546033913961352a565b9050600082118015612ee857508063ffffffff1687612e8b600185611b3990919063ffffffff16565b81548110612ec2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160000160009054906101000a900463ffffffff1663ffffffff16145b15612f9b57612f0f836040518060600160405280602d8152602001614c87602d9139613459565b87612f24600185611b3990919063ffffffff16565b81548110612f5b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160000160046101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff16021790555061306c565b8660405180604001604052808363ffffffff168152602001612fd5866040518060600160405280602d8152602001614c87602d9139613459565b6bffffffffffffffffffffffff168152509080600181540180825580915050600190039060005260206000200160009091909190915060008201518160000160006101000a81548163ffffffff021916908363ffffffff16021790555060208201518160000160046101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff16021790555050505b5050935093915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156130e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130dd906146b1565b60405180910390fd5b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561316c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613163906146d1565b60405180910390fd5b61317f8282611b3990919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506131d682600154611b3990919063ffffffff16565b600181905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161323a919061476c565b60405180910390a3505050565b6000816bffffffffffffffffffffffff169050919050565b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415801561329b5750600081115b1561345357600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161461337957600080613322600860008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206134b786612d96565b915091508573ffffffffffffffffffffffffffffffffffffffff167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724838360405161336e9291906147b7565b60405180910390a250505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614613452576000806133fb600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611b0d85612d96565b915091508473ffffffffffffffffffffffffffffffffffffffff167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a72483836040516134479291906147b7565b60405180910390a250505b5b50505050565b60006c01000000000000000000000000831082906134ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134a4919061448f565b60405180910390fd5b5082905092915050565b600081836134c5919061497a565b905092915050565b6134d8838383613580565b6134e182613585565b613520576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613517906146f1565b60405180910390fd5b505050565b505050565b600064010000000083108290613576576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161356d919061448f565b60405180910390fd5b5082905092915050565b505050565b60003073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6040518060400160405280600063ffffffff16815260200160006bffffffffffffffffffffffff1681525090565b60006135ff6135fa84614847565b614816565b90508281526020810184848401111561361757600080fd5b613622848285614a35565b509392505050565b60008135905061363981614bc9565b92915050565b60008151905061364e81614be0565b92915050565b60008135905061366381614bf7565b92915050565b600082601f83011261367a57600080fd5b813561368a8482602086016135ec565b91505092915050565b6000813590506136a281614c0e565b92915050565b6000813590506136b781614c25565b92915050565b6000813590506136cc81614c3c565b92915050565b6000602082840312156136e457600080fd5b60006136f28482850161362a565b91505092915050565b6000806040838503121561370e57600080fd5b600061371c8582860161362a565b925050602061372d8582860161362a565b9150509250929050565b60008060006060848603121561374c57600080fd5b600061375a8682870161362a565b935050602061376b8682870161362a565b925050604061377c86828701613693565b9150509250925092565b6000806040838503121561379957600080fd5b60006137a78582860161362a565b92505060206137b885828601613693565b9150509250929050565b6000806000606084860312156137d757600080fd5b60006137e58682870161362a565b93505060206137f686828701613693565b925050604084013567ffffffffffffffff81111561381357600080fd5b61381f86828701613669565b9150509250925092565b60008060008060008060c0878903121561384257600080fd5b600061385089828a0161362a565b965050602061386189828a01613693565b955050604061387289828a01613693565b945050606061388389828a016136bd565b935050608061389489828a01613654565b92505060a06138a589828a01613654565b9150509295509295509295565b600080604083850312156138c557600080fd5b60006138d38582860161362a565b92505060206138e4858286016136a8565b9150509250929050565b60006020828403121561390057600080fd5b600061390e8482850161363f565b91505092915050565b60006020828403121561392957600080fd5b600061393784828501613693565b91505092915050565b600061394c8383613958565b60208301905092915050565b613961816149ae565b82525050565b613970816149ae565b82525050565b600061398182614887565b61398b81856148b5565b935061399683614877565b8060005b838110156139c75781516139ae8882613940565b97506139b9836148a8565b92505060018101905061399a565b5085935050505092915050565b6139dd816149c0565b82525050565b6139ec816149cc565b82525050565b613a036139fe826149cc565b614af2565b82525050565b6000613a1482614892565b613a1e81856148c6565b9350613a2e818560208601614a44565b613a3781614bb8565b840191505092915050565b6000613a4d8261489d565b613a5781856148d7565b9350613a67818560208601614a44565b613a7081614bb8565b840191505092915050565b6000613a886025836148d7565b91507f42455032303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613aee6029836148d7565b91507f4f776e61626c653a2063616c6c6572206973206e6f74207468652061646d696e60008301527f206f72206f776e657200000000000000000000000000000000000000000000006020830152604082019050919050565b6000613b546024836148d7565b91507f42455032303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613bba6026836148d7565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613c206002836148e8565b91507f19010000000000000000000000000000000000000000000000000000000000006000830152600282019050919050565b6000613c60601d836148d7565b91507f4245503230566f7465733a207369676e617475726520657870697265640000006000830152602082019050919050565b6000613ca06028836148d7565b91507f42455032303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613d066019836148d7565b91507f4932303a206e6f74206176616961626c652062616c616e6365000000000000006000830152602082019050919050565b6000613d466030836148d7565b91507f4245503230566f7465733a20746f74616c20737570706c79207269736b73206f60008301527f766572666c6f77696e6720766f746573000000000000000000000000000000006020830152604082019050919050565b6000613dac6021836148d7565b91507f4932303a3a64656c656761746542795369673a20696e76616c6964206e6f6e6360008301527f65000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613e12601f836148d7565b91507f42455032303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b6000613e526020836148d7565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613e926012836148d7565b91507f696e646578206f7574206f6620626f756e6400000000000000000000000000006000830152602082019050919050565b6000613ed26026836148d7565b91507f42455032303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613f386023836148d7565b91507f42455032303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613f9e6025836148d7565b91507f4932303a3a64656c656761746542795369673a20696e76616c6964207369676e60008301527f61747572650000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006140046025836148d7565b91507f42455032303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061406a6021836148d7565b91507f42455032303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006140d06022836148d7565b91507f42455032303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614136602a836148d7565b91507f4932303a20726563697069656e742063616e6e6f742062652049323020746f6b60008301527f656e2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b600061419c601f836148d7565b91507f4245503230566f7465733a20626c6f636b206e6f7420796574206d696e6564006000830152602082019050919050565b60006141dc6022836148d7565b91507f42455032303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60408201600082015161424b6000850182614273565b50602082015161425e6020850182614291565b50505050565b61426d816149f6565b82525050565b61427c81614a00565b82525050565b61428b81614a10565b82525050565b61429a81614a1d565b82525050565b6142a981614a1d565b82525050565b60006142ba82613c13565b91506142c682856139f2565b6020820191506142d682846139f2565b6020820191508190509392505050565b60006020820190506142fb6000830184613967565b92915050565b60006040820190506143166000830185613967565b6143236020830184614264565b9392505050565b600060608201905061433f6000830186613967565b61434c6020830185614264565b818103604083015261435e8184613a09565b9050949350505050565b600060208201905081810360008301526143828184613976565b905092915050565b600060208201905061439f60008301846139d4565b92915050565b60006020820190506143ba60008301846139e3565b92915050565b60006080820190506143d560008301876139e3565b6143e26020830186613967565b6143ef6040830185614264565b6143fc6060830184614264565b95945050505050565b600060808201905061441a60008301876139e3565b61442760208301866139e3565b6144346040830185614264565b6144416060830184613967565b95945050505050565b600060808201905061445f60008301876139e3565b61446c6020830186614282565b61447960408301856139e3565b61448660608301846139e3565b95945050505050565b600060208201905081810360008301526144a98184613a42565b905092915050565b600060208201905081810360008301526144ca81613a7b565b9050919050565b600060208201905081810360008301526144ea81613ae1565b9050919050565b6000602082019050818103600083015261450a81613b47565b9050919050565b6000602082019050818103600083015261452a81613bad565b9050919050565b6000602082019050818103600083015261454a81613c53565b9050919050565b6000602082019050818103600083015261456a81613c93565b9050919050565b6000602082019050818103600083015261458a81613cf9565b9050919050565b600060208201905081810360008301526145aa81613d39565b9050919050565b600060208201905081810360008301526145ca81613d9f565b9050919050565b600060208201905081810360008301526145ea81613e05565b9050919050565b6000602082019050818103600083015261460a81613e45565b9050919050565b6000602082019050818103600083015261462a81613e85565b9050919050565b6000602082019050818103600083015261464a81613ec5565b9050919050565b6000602082019050818103600083015261466a81613f2b565b9050919050565b6000602082019050818103600083015261468a81613f91565b9050919050565b600060208201905081810360008301526146aa81613ff7565b9050919050565b600060208201905081810360008301526146ca8161405d565b9050919050565b600060208201905081810360008301526146ea816140c3565b9050919050565b6000602082019050818103600083015261470a81614129565b9050919050565b6000602082019050818103600083015261472a8161418f565b9050919050565b6000602082019050818103600083015261474a816141cf565b9050919050565b60006040820190506147666000830184614235565b92915050565b60006020820190506147816000830184614264565b92915050565b600060408201905061479c6000830185614264565b81810360208301526147ae8184613a09565b90509392505050565b60006040820190506147cc6000830185614264565b6147d96020830184614264565b9392505050565b60006020820190506147f56000830184614282565b92915050565b600060208201905061481060008301846142a0565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561483d5761483c614b89565b5b8060405250919050565b600067ffffffffffffffff82111561486257614861614b89565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006148fe826149f6565b9150614909836149f6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561493e5761493d614afc565b5b828201905092915050565b6000614954826149f6565b915061495f836149f6565b92508261496f5761496e614b2b565b5b828204905092915050565b6000614985826149f6565b9150614990836149f6565b9250828210156149a3576149a2614afc565b5b828203905092915050565b60006149b9826149d6565b9050919050565b60008115159050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b600060ff82169050919050565b60006bffffffffffffffffffffffff82169050919050565b82818337600083830152505050565b60005b83811015614a62578082015181840152602081019050614a47565b83811115614a71576000848401525b50505050565b60006002820490506001821680614a8f57607f821691505b60208210811415614aa357614aa2614b5a565b5b50919050565b6000614ab4826149f6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614ae757614ae6614afc565b5b600182019050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b614bd2816149ae565b8114614bdd57600080fd5b50565b614be9816149c0565b8114614bf457600080fd5b50565b614c00816149cc565b8114614c0b57600080fd5b50565b614c17816149f6565b8114614c2257600080fd5b50565b614c2e81614a00565b8114614c3957600080fd5b50565b614c4581614a10565b8114614c5057600080fd5b5056fe4932303a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d626572206578636565647320333220626974734932303a3a5f7772697465436865636b706f696e743a206e756d62657220657863656564732039362062697473a26469706673582212201b44c5be5ec5bc03457b79b6305629bf26193d11bcf077c8dcdbe3c995d7d04264736f6c634300080000334932303a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d626572206578636565647320333220626974734932303a3a5f7772697465436865636b706f696e743a206e756d62657220657863656564732039362062697473000000000000000000000000c20440dcdc4fea0ec60c3864a23fa47f86d93de9

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101fb5760003560e01c8063704802751161011a578063a457c2d7116100ad578063dd62ed3e1161007c578063dd62ed3e14610660578063e7a324dc14610690578063f1127ed8146106ae578063f2fde38b146106de578063f3a22124146106fa576101fb565b8063a457c2d7146105da578063a9059cbb1461060a578063b55a77a81461063a578063c3cda52014610644576101fb565b80638e539e8c116100e95780638e539e8c1461052c57806395d89b411461055c5780639ab24eb01461057a578063a0821be3146105aa576101fb565b8063704802751461049257806370a08231146104ae5780637ecebe00146104de5780638da5cb5b1461050e576101fb565b8063395093511161019257806342966c681161016157806342966c68146103e6578063587cde1e146104165780635c19a95c146104465780636fcfff4514610462576101fb565b806339509351146103265780633a46b1a8146103565780634000aea01461038657806340c10f19146103b6576101fb565b806320606b70116101ce57806320606b701461029c57806323b872dd146102ba578063313ce567146102ea57806331ae450b14610308576101fb565b806306fdde0314610200578063095ea7b31461021e578063164b26301461024e57806318160ddd1461027e575b600080fd5b610208610716565b604051610215919061448f565b60405180910390f35b61023860048036038101906102339190613786565b6107a8565b604051610245919061438a565b60405180910390f35b61026860048036038101906102639190613737565b6107c6565b604051610275919061438a565b60405180910390f35b6102866108dd565b604051610293919061476c565b60405180910390f35b6102a46108e7565b6040516102b191906143a5565b60405180910390f35b6102d460048036038101906102cf9190613737565b61090b565b6040516102e1919061438a565b60405180910390f35b6102f2610a13565b6040516102ff91906147e0565b60405180910390f35b610310610a2a565b60405161031d9190614368565b60405180910390f35b610340600480360381019061033b9190613786565b610b4b565b60405161034d919061438a565b60405180910390f35b610370600480360381019061036b9190613786565b610bfe565b60405161037d91906147fb565b60405180910390f35b6103a0600480360381019061039b91906137c2565b610c92565b6040516103ad919061438a565b60405180910390f35b6103d060048036038101906103cb9190613786565b610d39565b6040516103dd919061438a565b60405180910390f35b61040060048036038101906103fb9190613917565b610de2565b60405161040d919061438a565b60405180910390f35b610430600480360381019061042b91906136d2565b610dfe565b60405161043d91906142e6565b60405180910390f35b610460600480360381019061045b91906136d2565b610e6a565b005b61047c600480360381019061047791906136d2565b610e7e565b604051610489919061476c565b60405180910390f35b6104ac60048036038101906104a791906136d2565b610eca565b005b6104c860048036038101906104c391906136d2565b610fba565b6040516104d5919061476c565b60405180910390f35b6104f860048036038101906104f391906136d2565b611002565b604051610505919061476c565b60405180910390f35b61051661101a565b60405161052391906142e6565b60405180910390f35b61054660048036038101906105419190613917565b611044565b60405161055391906147fb565b60405180910390f35b61056461109a565b604051610571919061448f565b60405180910390f35b610594600480360381019061058f91906136d2565b61112c565b6040516105a191906147fb565b60405180910390f35b6105c460048036038101906105bf91906136d2565b61123c565b6040516105d1919061476c565b60405180910390f35b6105f460048036038101906105ef9190613786565b611284565b604051610601919061438a565b60405180910390f35b610624600480360381019061061f9190613786565b61137f565b604051610631919061438a565b60405180910390f35b61064261139d565b005b61065e60048036038101906106599190613829565b6113b1565b005b61067a600480360381019061067591906136fb565b611646565b604051610687919061476c565b60405180910390f35b6106986116cd565b6040516106a591906143a5565b60405180910390f35b6106c860048036038101906106c391906138b2565b6116f1565b6040516106d59190614751565b60405180910390f35b6106f860048036038101906106f391906136d2565b6117f7565b005b610714600480360381019061070f91906136d2565b6118ef565b005b60606004805461072590614a77565b80601f016020809104026020016040519081016040528092919081815260200182805461075190614a77565b801561079e5780601f106107735761010080835404028352916020019161079e565b820191906000526020600020905b81548152906001019060200180831161078157829003601f168201915b5050505050905090565b60006107bc6107b5611b4f565b8484611b57565b6001905092915050565b60006107d0611b4f565b73ffffffffffffffffffffffffffffffffffffffff166107ee61101a565b73ffffffffffffffffffffffffffffffffffffffff1614610844576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083b906145f1565b60405180910390fd5b8373ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84846040518363ffffffff1660e01b815260040161087f929190614301565b602060405180830381600087803b15801561089957600080fd5b505af11580156108ad573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108d191906138ee565b50600190509392505050565b6000600154905090565b7f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b6000610918848484611d22565b6000600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610963611b4f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156109e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109da90614551565b60405180910390fd5b610a07856109ef611b4f565b610a028685611b3990919063ffffffff16565b611b57565b60019150509392505050565b6000600260009054906101000a900460ff16905090565b6060610a3c610a37611b4f565b611ff1565b80610a805750610a4a61101a565b73ffffffffffffffffffffffffffffffffffffffff16610a68611b4f565b73ffffffffffffffffffffffffffffffffffffffff16145b610abf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab6906144d1565b60405180910390fd5b600b805480602002602001604051908101604052809291908181526020018280548015610b4157602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019060010190808311610af7575b5050505050905090565b6000610bf4610b58611b4f565b84610bef8560036000610b69611b4f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b2390919063ffffffff16565b611b57565b6001905092915050565b6000438210610c42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3990614711565b60405180910390fd5b610c8a600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020836120d9565b905092915050565b6000610ca6610c9f611b4f565b8585611d22565b8373ffffffffffffffffffffffffffffffffffffffff16610cc5611b4f565b73ffffffffffffffffffffffffffffffffffffffff167fe19260aff97b920c7df27010903aeb9c8d2be5d310a2c67824cf3f15396e4c168585604051610d0c929190614787565b60405180910390a3610d1d84612211565b15610d2e57610d2d848484612224565b5b600190509392505050565b6000610d4b610d46611b4f565b611ff1565b80610d8f5750610d5961101a565b73ffffffffffffffffffffffffffffffffffffffff16610d77611b4f565b73ffffffffffffffffffffffffffffffffffffffff16145b610dce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc5906144d1565b60405180910390fd5b610dd883836122a5565b6001905092915050565b6000610df5610def611b4f565b83612322565b60019050919050565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610e7b610e75611b4f565b826124c9565b50565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805490509050919050565b610ed2611b4f565b73ffffffffffffffffffffffffffffffffffffffff16610ef061101a565b73ffffffffffffffffffffffffffffffffffffffff1614610f46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3d906145f1565b60405180910390fd5b610f4f81611ff1565b610fb757600b819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60066020528060005260406000206000915090505481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000438210611088576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107f90614711565b60405180910390fd5b6110936009836120d9565b9050919050565b6060600580546110a990614a77565b80601f01602080910402602001604051908101604052809291908181526020018280546110d590614a77565b80156111225780601f106110f757610100808354040283529160200191611122565b820191906000526020600020905b81548152906001019060200180831161110557829003601f168201915b5050505050905090565b600080600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054905090506000811461123157600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206111cf600183611b3990919063ffffffff16565b81548110611206577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160000160049054906101000a90046bffffffffffffffffffffffff16611234565b60005b915050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60008060036000611293611b4f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611350576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134790614691565b60405180910390fd5b61137461135b611b4f565b8561136f8685611b3990919063ffffffff16565b611b57565b600191505092915050565b600061139361138c611b4f565b8484611d22565b6001905092915050565b6113af6113a8611b4f565b60006124c9565b565b834211156113f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113eb90614531565b60405180910390fd5b60007f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86661141f610716565b8051906020012061142e612751565b306040516020016114429493929190614405565b60405160208183030381529060405280519060200120905060007fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf88888860405160200161149394939291906143c0565b604051602081830303815290604052805190602001209050600082826040516020016114c09291906142af565b6040516020818303038152906040528051906020012090506000600182888888604051600081526020016040526040516114fd949392919061444a565b6020604051602081039080840390855afa15801561151f573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561159b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159290614671565b60405180910390fd5b600660008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906115eb90614aa9565b919050558914611630576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611627906145b1565b60405180910390fd5b61163a818b6124c9565b50505050505050505050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf81565b6116f96135be565b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208263ffffffff1681548110611776577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020016040518060400160405290816000820160009054906101000a900463ffffffff1663ffffffff1663ffffffff1681526020016000820160049054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff1681525050905092915050565b6117ff611b4f565b73ffffffffffffffffffffffffffffffffffffffff1661181d61101a565b73ffffffffffffffffffffffffffffffffffffffff1614611873576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186a906145f1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156118e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118da90614511565b60405180910390fd5b6118ec8161275e565b50565b6118f7611b4f565b73ffffffffffffffffffffffffffffffffffffffff1661191561101a565b73ffffffffffffffffffffffffffffffffffffffff161461196b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611962906145f1565b60405180910390fd5b600061197682612824565b9050611981816128df565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ec906145d1565b60405180910390fd5b611a0a81600154611b2390919063ffffffff16565b600181905550611a61816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b2390919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611b01919061476c565b60405180910390a35050565b60008183611b1b91906148f3565b905092915050565b60008183611b3191906148f3565b905092915050565b60008183611b47919061497a565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611bc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbe906144f1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2e90614731565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611d15919061476c565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611d92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d89906144b1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df990614651565b60405180910390fd5b611e0d838383612b32565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611e93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8a90614631565b60405180910390fd5b611ea68282611b3990919063ffffffff16565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611f39826000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b2390919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611fd8919061476c565b60405180910390a3611feb848484612bc3565b50505050565b600080600b80549050141561200957600090506120d4565b60005b600b805490508110156120ce578273ffffffffffffffffffffffffffffffffffffffff16600b828154811061206a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156120bb5760019150506120d4565b80806120c690614aa9565b91505061200c565b50600090505b919050565b6000808380549050905060005b818110156121855760006120fa8284612d5c565b905084868281548110612136577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160000160009054906101000a900463ffffffff1663ffffffff1611156121685780925061217f565b61217c600182611b2390919063ffffffff16565b91505b506120e6565b6000821461220457846121a2600184611b3990919063ffffffff16565b815481106121d9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160000160049054906101000a90046bffffffffffffffffffffffff16612207565b60005b9250505092915050565b600080823b905060008111915050919050565b60008390508073ffffffffffffffffffffffffffffffffffffffff1663a4c0ed3661224d611b4f565b85856040518463ffffffff1660e01b815260040161226d9392919061432a565b600060405180830381600087803b15801561228757600080fd5b505af115801561229b573d6000803e3d6000fd5b5050505050505050565b6122af8282611985565b6122b7612d82565b6bffffffffffffffffffffffff166122cd6108dd565b111561230e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230590614591565b60405180910390fd5b61231c6009611b0d83612d96565b50505050565b61232c8282613076565b600073ffffffffffffffffffffffffffffffffffffffff1661234d83610dfe565b73ffffffffffffffffffffffffffffffffffffffff16146124b557600061237383610fba565b90506000600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160149054906101000a90046bffffffffffffffffffffffff169050806bffffffffffffffffffffffff168210156124b2576000612407836123f984613247565b611b3990919063ffffffff16565b905061241e61241586610dfe565b6000838661325f565b612440836040518060600160405280602d8152602001614c87602d9139613459565b600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550505b50505b6124c360096134b783612d96565b50505050565b60006124d483610dfe565b9050600061253b600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160149054906101000a90046bffffffffffffffffffffffff16613247565b9050600061254885610fba565b90508373ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461273e5783600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161461265957612654816040518060600160405280602d8152602001614c87602d9139613459565b61265c565b60005b600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055508373ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167f5884d7e3ec123de8e772bcf576c18dcdad75b056c4314f999ed966693419c69260405160405180910390a45b61274a8385848461325f565b5050505050565b6000804690508091505090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080600090505b8273ffffffffffffffffffffffffffffffffffffffff16600b828154811061287d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146128d65780806128ce90614aa9565b91505061282c565b80915050919050565b6128e7611b4f565b73ffffffffffffffffffffffffffffffffffffffff1661290561101a565b73ffffffffffffffffffffffffffffffffffffffff161461295b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612952906145f1565b60405180910390fd5b600b8054905081106129a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299990614611565b60405180910390fd5b5b6001600b805490506129b5919061497a565b811015612ac257600b6001826129cb91906148f3565b81548110612a02577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600b8281548110612a67577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508080612aba90614aa9565b9150506129a3565b600b805480612afa577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055905550565b612b3d8383836134cd565b806000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015612bbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bb590614571565b60405180910390fd5b505050565b612bce838383613525565b600073ffffffffffffffffffffffffffffffffffffffff16612bef84610dfe565b73ffffffffffffffffffffffffffffffffffffffff1614612d57576000612c1584610fba565b90506000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160149054906101000a90046bffffffffffffffffffffffff169050806bffffffffffffffffffffffff16821015612d54576000612ca983612c9b84613247565b611b3990919063ffffffff16565b9050612cc0612cb787610dfe565b6000838661325f565b612ce2836040518060600160405280602d8152602001614c87602d9139613459565b600760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550505b50505b505050565b60006002828418612d6d9190614949565b828416612d7a91906148f3565b905092915050565b60006b204fce5e3e25026110000000905090565b60008060008580549050905060008114612e2957612e2486612dc2600184611b3990919063ffffffff16565b81548110612df9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160000160049054906101000a90046bffffffffffffffffffffffff16613247565b612e2c565b60005b9250612e3c83858763ffffffff16565b91506000612e6243604051806060016040528060338152602001614c546033913961352a565b9050600082118015612ee857508063ffffffff1687612e8b600185611b3990919063ffffffff16565b81548110612ec2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160000160009054906101000a900463ffffffff1663ffffffff16145b15612f9b57612f0f836040518060600160405280602d8152602001614c87602d9139613459565b87612f24600185611b3990919063ffffffff16565b81548110612f5b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160000160046101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff16021790555061306c565b8660405180604001604052808363ffffffff168152602001612fd5866040518060600160405280602d8152602001614c87602d9139613459565b6bffffffffffffffffffffffff168152509080600181540180825580915050600190039060005260206000200160009091909190915060008201518160000160006101000a81548163ffffffff021916908363ffffffff16021790555060208201518160000160046101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff16021790555050505b5050935093915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156130e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130dd906146b1565b60405180910390fd5b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561316c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613163906146d1565b60405180910390fd5b61317f8282611b3990919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506131d682600154611b3990919063ffffffff16565b600181905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161323a919061476c565b60405180910390a3505050565b6000816bffffffffffffffffffffffff169050919050565b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415801561329b5750600081115b1561345357600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161461337957600080613322600860008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206134b786612d96565b915091508573ffffffffffffffffffffffffffffffffffffffff167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724838360405161336e9291906147b7565b60405180910390a250505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614613452576000806133fb600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611b0d85612d96565b915091508473ffffffffffffffffffffffffffffffffffffffff167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a72483836040516134479291906147b7565b60405180910390a250505b5b50505050565b60006c01000000000000000000000000831082906134ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134a4919061448f565b60405180910390fd5b5082905092915050565b600081836134c5919061497a565b905092915050565b6134d8838383613580565b6134e182613585565b613520576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613517906146f1565b60405180910390fd5b505050565b505050565b600064010000000083108290613576576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161356d919061448f565b60405180910390fd5b5082905092915050565b505050565b60003073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6040518060400160405280600063ffffffff16815260200160006bffffffffffffffffffffffff1681525090565b60006135ff6135fa84614847565b614816565b90508281526020810184848401111561361757600080fd5b613622848285614a35565b509392505050565b60008135905061363981614bc9565b92915050565b60008151905061364e81614be0565b92915050565b60008135905061366381614bf7565b92915050565b600082601f83011261367a57600080fd5b813561368a8482602086016135ec565b91505092915050565b6000813590506136a281614c0e565b92915050565b6000813590506136b781614c25565b92915050565b6000813590506136cc81614c3c565b92915050565b6000602082840312156136e457600080fd5b60006136f28482850161362a565b91505092915050565b6000806040838503121561370e57600080fd5b600061371c8582860161362a565b925050602061372d8582860161362a565b9150509250929050565b60008060006060848603121561374c57600080fd5b600061375a8682870161362a565b935050602061376b8682870161362a565b925050604061377c86828701613693565b9150509250925092565b6000806040838503121561379957600080fd5b60006137a78582860161362a565b92505060206137b885828601613693565b9150509250929050565b6000806000606084860312156137d757600080fd5b60006137e58682870161362a565b93505060206137f686828701613693565b925050604084013567ffffffffffffffff81111561381357600080fd5b61381f86828701613669565b9150509250925092565b60008060008060008060c0878903121561384257600080fd5b600061385089828a0161362a565b965050602061386189828a01613693565b955050604061387289828a01613693565b945050606061388389828a016136bd565b935050608061389489828a01613654565b92505060a06138a589828a01613654565b9150509295509295509295565b600080604083850312156138c557600080fd5b60006138d38582860161362a565b92505060206138e4858286016136a8565b9150509250929050565b60006020828403121561390057600080fd5b600061390e8482850161363f565b91505092915050565b60006020828403121561392957600080fd5b600061393784828501613693565b91505092915050565b600061394c8383613958565b60208301905092915050565b613961816149ae565b82525050565b613970816149ae565b82525050565b600061398182614887565b61398b81856148b5565b935061399683614877565b8060005b838110156139c75781516139ae8882613940565b97506139b9836148a8565b92505060018101905061399a565b5085935050505092915050565b6139dd816149c0565b82525050565b6139ec816149cc565b82525050565b613a036139fe826149cc565b614af2565b82525050565b6000613a1482614892565b613a1e81856148c6565b9350613a2e818560208601614a44565b613a3781614bb8565b840191505092915050565b6000613a4d8261489d565b613a5781856148d7565b9350613a67818560208601614a44565b613a7081614bb8565b840191505092915050565b6000613a886025836148d7565b91507f42455032303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613aee6029836148d7565b91507f4f776e61626c653a2063616c6c6572206973206e6f74207468652061646d696e60008301527f206f72206f776e657200000000000000000000000000000000000000000000006020830152604082019050919050565b6000613b546024836148d7565b91507f42455032303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613bba6026836148d7565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613c206002836148e8565b91507f19010000000000000000000000000000000000000000000000000000000000006000830152600282019050919050565b6000613c60601d836148d7565b91507f4245503230566f7465733a207369676e617475726520657870697265640000006000830152602082019050919050565b6000613ca06028836148d7565b91507f42455032303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613d066019836148d7565b91507f4932303a206e6f74206176616961626c652062616c616e6365000000000000006000830152602082019050919050565b6000613d466030836148d7565b91507f4245503230566f7465733a20746f74616c20737570706c79207269736b73206f60008301527f766572666c6f77696e6720766f746573000000000000000000000000000000006020830152604082019050919050565b6000613dac6021836148d7565b91507f4932303a3a64656c656761746542795369673a20696e76616c6964206e6f6e6360008301527f65000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613e12601f836148d7565b91507f42455032303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b6000613e526020836148d7565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613e926012836148d7565b91507f696e646578206f7574206f6620626f756e6400000000000000000000000000006000830152602082019050919050565b6000613ed26026836148d7565b91507f42455032303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613f386023836148d7565b91507f42455032303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613f9e6025836148d7565b91507f4932303a3a64656c656761746542795369673a20696e76616c6964207369676e60008301527f61747572650000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006140046025836148d7565b91507f42455032303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061406a6021836148d7565b91507f42455032303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006140d06022836148d7565b91507f42455032303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614136602a836148d7565b91507f4932303a20726563697069656e742063616e6e6f742062652049323020746f6b60008301527f656e2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b600061419c601f836148d7565b91507f4245503230566f7465733a20626c6f636b206e6f7420796574206d696e6564006000830152602082019050919050565b60006141dc6022836148d7565b91507f42455032303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60408201600082015161424b6000850182614273565b50602082015161425e6020850182614291565b50505050565b61426d816149f6565b82525050565b61427c81614a00565b82525050565b61428b81614a10565b82525050565b61429a81614a1d565b82525050565b6142a981614a1d565b82525050565b60006142ba82613c13565b91506142c682856139f2565b6020820191506142d682846139f2565b6020820191508190509392505050565b60006020820190506142fb6000830184613967565b92915050565b60006040820190506143166000830185613967565b6143236020830184614264565b9392505050565b600060608201905061433f6000830186613967565b61434c6020830185614264565b818103604083015261435e8184613a09565b9050949350505050565b600060208201905081810360008301526143828184613976565b905092915050565b600060208201905061439f60008301846139d4565b92915050565b60006020820190506143ba60008301846139e3565b92915050565b60006080820190506143d560008301876139e3565b6143e26020830186613967565b6143ef6040830185614264565b6143fc6060830184614264565b95945050505050565b600060808201905061441a60008301876139e3565b61442760208301866139e3565b6144346040830185614264565b6144416060830184613967565b95945050505050565b600060808201905061445f60008301876139e3565b61446c6020830186614282565b61447960408301856139e3565b61448660608301846139e3565b95945050505050565b600060208201905081810360008301526144a98184613a42565b905092915050565b600060208201905081810360008301526144ca81613a7b565b9050919050565b600060208201905081810360008301526144ea81613ae1565b9050919050565b6000602082019050818103600083015261450a81613b47565b9050919050565b6000602082019050818103600083015261452a81613bad565b9050919050565b6000602082019050818103600083015261454a81613c53565b9050919050565b6000602082019050818103600083015261456a81613c93565b9050919050565b6000602082019050818103600083015261458a81613cf9565b9050919050565b600060208201905081810360008301526145aa81613d39565b9050919050565b600060208201905081810360008301526145ca81613d9f565b9050919050565b600060208201905081810360008301526145ea81613e05565b9050919050565b6000602082019050818103600083015261460a81613e45565b9050919050565b6000602082019050818103600083015261462a81613e85565b9050919050565b6000602082019050818103600083015261464a81613ec5565b9050919050565b6000602082019050818103600083015261466a81613f2b565b9050919050565b6000602082019050818103600083015261468a81613f91565b9050919050565b600060208201905081810360008301526146aa81613ff7565b9050919050565b600060208201905081810360008301526146ca8161405d565b9050919050565b600060208201905081810360008301526146ea816140c3565b9050919050565b6000602082019050818103600083015261470a81614129565b9050919050565b6000602082019050818103600083015261472a8161418f565b9050919050565b6000602082019050818103600083015261474a816141cf565b9050919050565b60006040820190506147666000830184614235565b92915050565b60006020820190506147816000830184614264565b92915050565b600060408201905061479c6000830185614264565b81810360208301526147ae8184613a09565b90509392505050565b60006040820190506147cc6000830185614264565b6147d96020830184614264565b9392505050565b60006020820190506147f56000830184614282565b92915050565b600060208201905061481060008301846142a0565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561483d5761483c614b89565b5b8060405250919050565b600067ffffffffffffffff82111561486257614861614b89565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006148fe826149f6565b9150614909836149f6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561493e5761493d614afc565b5b828201905092915050565b6000614954826149f6565b915061495f836149f6565b92508261496f5761496e614b2b565b5b828204905092915050565b6000614985826149f6565b9150614990836149f6565b9250828210156149a3576149a2614afc565b5b828203905092915050565b60006149b9826149d6565b9050919050565b60008115159050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b600060ff82169050919050565b60006bffffffffffffffffffffffff82169050919050565b82818337600083830152505050565b60005b83811015614a62578082015181840152602081019050614a47565b83811115614a71576000848401525b50505050565b60006002820490506001821680614a8f57607f821691505b60208210811415614aa357614aa2614b5a565b5b50919050565b6000614ab4826149f6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614ae757614ae6614afc565b5b600182019050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b614bd2816149ae565b8114614bdd57600080fd5b50565b614be9816149c0565b8114614bf457600080fd5b50565b614c00816149cc565b8114614c0b57600080fd5b50565b614c17816149f6565b8114614c2257600080fd5b50565b614c2e81614a00565b8114614c3957600080fd5b50565b614c4581614a10565b8114614c5057600080fd5b5056fe4932303a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d626572206578636565647320333220626974734932303a3a5f7772697465436865636b706f696e743a206e756d62657220657863656564732039362062697473a26469706673582212201b44c5be5ec5bc03457b79b6305629bf26193d11bcf077c8dcdbe3c995d7d04264736f6c63430008000033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000c20440dcdc4fea0ec60c3864a23fa47f86d93de9

-----Decoded View---------------
Arg [0] : account (address): 0xC20440DcdC4FeA0Ec60c3864A23FA47f86d93De9

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000c20440dcdc4fea0ec60c3864a23fa47f86d93de9


Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.