false
true
0

Contract Address Details

0x9D9e399e5385e2b9A58d4F775A1E16441b571afb

Token
METANO (METANO)
Creator
0xbaed1a–eebdb6 at 0xbf07cb–0e523b
Balance
0 PLS ( )
Tokens
Fetching tokens...
Transactions
1,631 Transactions
Transfers
0 Transfers
Gas Used
79,635,147
Last Balance Update
26266112
Warning! Contract bytecode has been changed and doesn't match the verified one. Therefore, interaction with this smart contract may be risky.
This contract has been verified via Sourcify. View contract in Sourcify repository
Contract name:
Metano




Optimization enabled
false
Compiler version
v0.8.7+commit.e28d00a7




EVM Version
london




Verified at
2026-04-12T16:40:06.832735Z

Metano.sol

// SPDX-License-Identifier: MIT License

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Counters.sol


// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/math/Math.sol


// OpenZeppelin Contracts (last updated v4.7.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @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 == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator
    ) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1);

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator,
        Rounding rounding
    ) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`.
        // We also know that `k`, the position of the most significant bit, is such that `msb(a) = 2**k`.
        // This gives `2**k < a <= 2**(k+1)` → `2**(k/2) <= sqrt(a) < 2 ** (k/2+1)`.
        // Using an algorithm similar to the msb computation, we are able to compute `result = 2**(k/2)` which is a
        // good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1;
        uint256 x = a;
        if (x >> 128 > 0) {
            x >>= 128;
            result <<= 64;
        }
        if (x >> 64 > 0) {
            x >>= 64;
            result <<= 32;
        }
        if (x >> 32 > 0) {
            x >>= 32;
            result <<= 16;
        }
        if (x >> 16 > 0) {
            x >>= 16;
            result <<= 8;
        }
        if (x >> 8 > 0) {
            x >>= 8;
            result <<= 4;
        }
        if (x >> 4 > 0) {
            x >>= 4;
            result <<= 2;
        }
        if (x >> 2 > 0) {
            result <<= 1;
        }

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        uint256 result = sqrt(a);
        if (rounding == Rounding.Up && result * result < a) {
            result += 1;
        }
        return result;
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Arrays.sol


// OpenZeppelin Contracts v4.4.1 (utils/Arrays.sol)

pragma solidity ^0.8.0;


/**
 * @dev Collection of functions related to array types.
 */
library Arrays {
    /**
     * @dev Searches a sorted `array` and returns the first index that contains
     * a value greater or equal to `element`. If no such index exists (i.e. all
     * values in the array are strictly less than `element`), the array length is
     * returned. Time complexity O(log n).
     *
     * `array` is expected to be sorted in ascending order, and to contain no
     * repeated elements.
     */
    function findUpperBound(uint256[] storage array, uint256 element) internal view returns (uint256) {
        if (array.length == 0) {
            return 0;
        }

        uint256 low = 0;
        uint256 high = array.length;

        while (low < high) {
            uint256 mid = Math.average(low, high);

            // Note that mid will always be strictly less than high (i.e. it will be a valid array index)
            // because Math.average rounds down (it does integer division with truncation).
            if (array[mid] > element) {
                high = mid;
            } else {
                low = mid + 1;
            }
        }

        // At this point `low` is the exclusive upper bound. We will return the inclusive upper bound.
        if (low > 0 && array[low - 1] == element) {
            return low - 1;
        } else {
            return low;
        }
    }
}

// File: contracts/NewMetano.sol



pragma solidity ^0.8.0;



interface IERC20 {
    function totalSupply() external view returns (uint256);
    function balanceOf(address account) external view returns (uint256);
    function transfer(address recipient, uint256 amount) external returns (bool);
    function allowance(address owner, address spender) external view returns (uint256);
    function approve(address spender, uint256 amount) external returns (bool);
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
    event Transfer(address indexed from, address indexed to, uint256 value);
    event Approval(address indexed owner, address indexed spender, uint256 value);
}



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

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

abstract contract Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initiamenoes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

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

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

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

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

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

contract ERC20 is Context, IERC20 {
    mapping (address => uint256) private _balances;
    mapping (address => mapping (address => uint256)) private _allowances;
    uint256 private _totalSupply;
    string private _name;
    string private _symbol;

    constructor (string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

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

    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        _approve(sender, _msgSender(), currentAllowance - amount);
        return true;
    }

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

    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        _approve(_msgSender(), spender, currentAllowance - subtractedValue);

        return true;
    }

    function _transfer(address sender, address recipient, uint256 amount) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");
        _beforeTokenTransfer(sender, recipient, amount);
        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        _balances[sender] = senderBalance - amount;
        _balances[recipient] += amount;
        emit Transfer(sender, recipient, amount);
    }

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

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

    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");
        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { }
}
abstract contract ERC20Snapshot is ERC20 {
    // Inspired by Jordi Baylina's MiniMeToken to record historical balances:
    // https://github.com/Giveth/minime/blob/ea04d950eea153a04c51fa510b068b9dded390cb/contracts/MiniMeToken.sol

    using Arrays for uint256[];
    using Counters for Counters.Counter;

    // Snapshotted values have  of ids and the value corresponding to that id. These could be an array of a
    // Snapshot struct, but that would impede usage of functions that work on an array.
    struct Snapshots {
        uint256[] ids;
        uint256[] values;
    }

    mapping(address => Snapshots) private _accountBalanceSnapshots;
    Snapshots private _totalSupplySnapshots;

    // Snapshot ids increase monotonically, with the first value being 1. An id of 0 is invalid.
    Counters.Counter private _currentSnapshotId;

    /**
     * @dev Emitted by {_snapshot} when a snapshot identified by `id` is created.
     */
    event Snapshot(uint256 id);

    /**
     * @dev Creates a new snapshot and returns its snapshot id.
     *
     * Emits a {Snapshot} event that contains the same id.
     *
     * {_snapshot} is `internal` and you have to decide how to expose it externally. Its usage may be restricted to a
     * set of accounts, for example using {AccessControl}, or it may be open to the public.
     *
     * [WARNING]
     * ====
     * While an open way of calling {_snapshot} is required for certain trust minimization mechanisms such as forking,
     * you must consider that it can potentially be used by attackers in two ways.
     *
     * First, it can be used to increase the cost of retrieval of values from snapshots, although it will grow
     * logarithmically thus rendering this attack ineffective in the long term. Second, it can be used to target
     * specific accounts and increase the cost of ERC20 transfers for them, in the ways specified in the Gas Costs
     * section above.
     *
     * We haven't measured the actual numbers; if this is something you're interested in please reach out to us.
     * ====
     */
    function _snapshot() internal virtual returns (uint256) {
        _currentSnapshotId.increment();

        uint256 currentId = _getCurrentSnapshotId();
        emit Snapshot(currentId);
        return currentId;
    }

    /**
     * @dev Get the current snapshotId
     */
    function _getCurrentSnapshotId() internal view virtual returns (uint256) {
        return _currentSnapshotId.current();
    }

    /**
     * @dev Retrieves the balance of `account` at the time `snapshotId` was created.
     */
    function balanceOfAt(address account, uint256 snapshotId) public view virtual returns (uint256) {
        (bool snapshotted, uint256 value) = _valueAt(snapshotId, _accountBalanceSnapshots[account]);

        return snapshotted ? value : balanceOf(account);
    }

    /**
     * @dev Retrieves the total supply at the time `snapshotId` was created.
     */
    function totalSupplyAt(uint256 snapshotId) public view virtual returns (uint256) {
        (bool snapshotted, uint256 value) = _valueAt(snapshotId, _totalSupplySnapshots);

        return snapshotted ? value : totalSupply();
    }

    // Update balance and/or total supply snapshots before the values are modified. This is implemented
    // in the _beforeTokenTransfer hook, which is executed for _mint, _burn, and _transfer operations.
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, amount);

        if (from == address(0)) {
            // mint
            _updateAccountSnapshot(to);
            _updateTotalSupplySnapshot();
        } else if (to == address(0)) {
            // burn
            _updateAccountSnapshot(from);
            _updateTotalSupplySnapshot();
        } else {
            // transfer
            _updateAccountSnapshot(from);
            _updateAccountSnapshot(to);
        }
    }

    function _valueAt(uint256 snapshotId, Snapshots storage snapshots) private view returns (bool, uint256) {
        require(snapshotId > 0, "ERC20Snapshot: id is 0");
        require(snapshotId <= _getCurrentSnapshotId(), "ERC20Snapshot: nonexistent id");

        // When a valid snapshot is queried, there are three possibilities:
        //  a) The queried value was not modified after the snapshot was taken. Therefore, a snapshot entry was never
        //  created for this id, and all stored snapshot ids are smaller than the requested one. The value that corresponds
        //  to this id is the current one.
        //  b) The queried value was modified after the snapshot was taken. Therefore, there will be an entry with the
        //  requested id, and its value is the one to return.
        //  c) More snapshots were created after the requested one, and the queried value was later modified. There will be
        //  no entry for the requested id: the value that corresponds to it is that of the smallest snapshot id that is
        //  larger than the requested one.
        //
        // In summary, we need to find an element in an array, returning the index of the smallest value that is larger if
        // it is not found, unless said value doesn't exist (e.g. when all values are smaller). .findUpperBound does
        // exactly this.

        uint256 index = snapshots.ids.findUpperBound(snapshotId);

        if (index == snapshots.ids.length) {
            return (false, 0);
        } else {
            return (true, snapshots.values[index]);
        }
    }

    function _updateAccountSnapshot(address account) private {
        _updateSnapshot(_accountBalanceSnapshots[account], balanceOf(account));
    }

    function _updateTotalSupplySnapshot() private {
        _updateSnapshot(_totalSupplySnapshots, totalSupply());
    }

    function _updateSnapshot(Snapshots storage snapshots, uint256 currentValue) private {
        uint256 currentId = _getCurrentSnapshotId();
        if (_lastSnapshotId(snapshots.ids) < currentId) {
            snapshots.ids.push(currentId);
            snapshots.values.push(currentValue);
        }
    }

    function _lastSnapshotId(uint256[] storage ids) private view returns (uint256) {
        if (ids.length == 0) {
            return 0;
        } else {
            return ids[ids.length - 1];
        }
    }
}

contract Metano is ERC20Snapshot, Ownable {
    address public operator;
    address public deployer;
    uint256 public maxSupply = 10_000_000_000e18; // 10 BILLION
    uint256 private _totalSupply;

    // Fair launch settings
    bool public swapEnabled = false;
    mapping (address => bool) public _excludedForFairLaunch;
    uint256 public allowTradeAt;
    bool public fairLaunchEventActive = true;
    bool public fairLaunchExecuted = false;
    uint256 public maxTransferAmount;

  constructor() ERC20("METANO", "METANO") {
        operator = msg.sender;
        deployer = msg.sender;
        _excludedForFairLaunch[msg.sender] = true;
    }

    // function AddExcludedForFairLaunch(address newAddress) internal onlyOwner(){
    //     require(_excludedForFairLaunch[newAddress],"Metano::This Address already excluded from Fair Lauch event!");
    //     _excludedForFairLaunch[newAddress]=true;
    // }

    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
    
        require(fairLaunchExecuted || _excludedForFairLaunch[msg.sender] == true, "Metano::Fair Launch event , not starts yet");
            if(fairLaunchEventActive){
            require(allowTradeAt<=block.timestamp || _excludedForFairLaunch[msg.sender] == true, "Metano::Fair Launch event , not starts yet");
            require(amount<=maxTransferAmount || _excludedForFairLaunch[msg.sender] == true, "Metano::Anti Whale System");                                     
            }                
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

  function updateOperator(address newOperator) external {
    require(msg.sender == operator, 'only Operator Contract');
    operator = newOperator;
  }

  function mint(address to, uint amount) external {
    require(msg.sender == operator, 'only Operator Contract');
    _totalSupply += amount;
    require(
        _totalSupply <= maxSupply,
        "METANO::mint: cannot exceed max supply"
    );
    _mint(to, amount);
  }

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

  function burn(address owner, uint amount) external {
    require(msg.sender == operator, 'only Operator Contract');
    _burn(owner, amount);
  }
  function enableFairLaunch(uint256 _timestamp,uint256 maxAmount) external onlyOwner(){
        require(!fairLaunchExecuted, "Fair Launch already happened" );
        allowTradeAt = _timestamp;
        fairLaunchExecuted=true;
        swapEnabled=true;
        maxTransferAmount=maxAmount;
  }

      function endFairLaunchEvent() public {
        require(fairLaunchExecuted, "Fair launch has not been executed yet");
        require(block.timestamp > allowTradeAt+ 3 days, "Time has not passed yet");
        require(fairLaunchEventActive, "fair Launch event is finished");
        fairLaunchEventActive = false;
    }
}
        

Compiler Settings

{"remappings":[],"optimizer":{"runs":200,"enabled":false},"metadata":{"bytecodeHash":"ipfs"},"libraries":{},"evmVersion":"london","compilationTarget":{"Metano.sol":"Metano"}}
              

Contract ABI

[{"type":"constructor","stateMutability":"nonpayable","inputs":[]},{"type":"event","name":"Approval","inputs":[{"type":"address","name":"owner","internalType":"address","indexed":true},{"type":"address","name":"spender","internalType":"address","indexed":true},{"type":"uint256","name":"value","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"OwnershipTransferred","inputs":[{"type":"address","name":"previousOwner","internalType":"address","indexed":true},{"type":"address","name":"newOwner","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"Snapshot","inputs":[{"type":"uint256","name":"id","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"Transfer","inputs":[{"type":"address","name":"from","internalType":"address","indexed":true},{"type":"address","name":"to","internalType":"address","indexed":true},{"type":"uint256","name":"value","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"_excludedForFairLaunch","inputs":[{"type":"address","name":"","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"allowTradeAt","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"allowance","inputs":[{"type":"address","name":"owner","internalType":"address"},{"type":"address","name":"spender","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"approve","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"balanceOf","inputs":[{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"balanceOfAt","inputs":[{"type":"address","name":"account","internalType":"address"},{"type":"uint256","name":"snapshotId","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"burn","inputs":[{"type":"address","name":"owner","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint8","name":"","internalType":"uint8"}],"name":"decimals","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"decreaseAllowance","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"subtractedValue","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"deployer","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"enableFairLaunch","inputs":[{"type":"uint256","name":"_timestamp","internalType":"uint256"},{"type":"uint256","name":"maxAmount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"endFairLaunchEvent","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"fairLaunchEventActive","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"fairLaunchExecuted","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"increaseAllowance","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"addedValue","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"maxSupply","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"maxTransferAmount","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"mint","inputs":[{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"name","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"operator","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"owner","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"renounceOwnership","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"swapEnabled","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"symbol","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"totalSupply","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"totalSupplyAt","inputs":[{"type":"uint256","name":"snapshotId","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transfer","inputs":[{"type":"address","name":"recipient","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transferFrom","inputs":[{"type":"address","name":"sender","internalType":"address"},{"type":"address","name":"recipient","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"transferOwnership","inputs":[{"type":"address","name":"newOwner","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"updateOperator","inputs":[{"type":"address","name":"newOperator","internalType":"address"}]}]
              

Contract Creation Code

0x60806040526b204fce5e3e25026110000000600c556000600e60006101000a81548160ff0219169083151502179055506001601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff0219169083151502179055503480156200007257600080fd5b506040518060400160405280600681526020017f4d4554414e4f00000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f4d4554414e4f00000000000000000000000000000000000000000000000000008152508160039080519060200190620000f7929190620002e1565b50806004908051906020019062000110929190620002e1565b50505062000133620001276200021360201b60201c565b6200021b60201b60201c565b33600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555033600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620003f6565b600033905090565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002ef9062000391565b90600052602060002090601f0160209004810192826200031357600085556200035f565b82601f106200032e57805160ff19168380011785556200035f565b828001600101855582156200035f579182015b828111156200035e57825182559160200191906001019062000341565b5b5090506200036e919062000372565b5090565b5b808211156200038d57600081600090555060010162000373565b5090565b60006002820490506001821680620003aa57607f821691505b60208210811415620003c157620003c0620003c7565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61313580620004066000396000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c8063929912dc11610104578063ac7475ed116100a2578063dd62ed3e11610071578063dd62ed3e1461055d578063e233033f1461058d578063f2fde38b146105ab578063f4f38bde146105c7576101da565b8063ac7475ed146104e7578063ca31163014610503578063d5abeb0114610521578063d5f394881461053f576101da565b80639dc29fac116100de5780639dc29fac1461044d578063a457c2d714610469578063a9059cbb14610499578063a9e75723146104c9576101da565b8063929912dc146103cf57806395d89b41146103ff578063981b24d01461041d576101da565b80634ee2cd7e1161017c57806370a082311161014b57806370a082311461035b578063715018a61461038b5780638da5cb5b1461039557806391af8aba146103b3576101da565b80634ee2cd7e146102e5578063570ca735146103155780636688ddf4146103335780636ddd17131461033d576101da565b806323b872dd116101b857806323b872dd1461024b578063313ce5671461027b578063395093511461029957806340c10f19146102c9576101da565b806306fdde03146101df578063095ea7b3146101fd57806318160ddd1461022d575b600080fd5b6101e76105e5565b6040516101f491906125e2565b60405180910390f35b61021760048036038101906102129190612188565b610677565b60405161022491906125c7565b60405180910390f35b610235610695565b60405161024291906128c4565b60405180910390f35b61026560048036038101906102609190612135565b61069f565b60405161027291906125c7565b60405180910390f35b6102836107a0565b60405161029091906128df565b60405180910390f35b6102b360048036038101906102ae9190612188565b6107a9565b6040516102c091906125c7565b60405180910390f35b6102e360048036038101906102de9190612188565b610855565b005b6102ff60048036038101906102fa9190612188565b610953565b60405161030c91906128c4565b60405180910390f35b61031d6109c3565b60405161032a91906125ac565b60405180910390f35b61033b6109e9565b005b610345610af6565b60405161035291906125c7565b60405180910390f35b610375600480360381019061037091906120c8565b610b09565b60405161038291906128c4565b60405180910390f35b610393610b51565b005b61039d610bd9565b6040516103aa91906125ac565b60405180910390f35b6103cd60048036038101906103c891906121f5565b610c03565b005b6103e960048036038101906103e491906120c8565b610d17565b6040516103f691906125c7565b60405180910390f35b610407610d37565b60405161041491906125e2565b60405180910390f35b610437600480360381019061043291906121c8565b610dc9565b60405161044491906128c4565b60405180910390f35b61046760048036038101906104629190612188565b610dfa565b005b610483600480360381019061047e9190612188565b610e98565b60405161049091906125c7565b60405180910390f35b6104b360048036038101906104ae9190612188565b610f8c565b6040516104c091906125c7565b60405180910390f35b6104d16111aa565b6040516104de91906128c4565b60405180910390f35b61050160048036038101906104fc91906120c8565b6111b0565b005b61050b611284565b60405161051891906125c7565b60405180910390f35b610529611297565b60405161053691906128c4565b60405180910390f35b61054761129d565b60405161055491906125ac565b60405180910390f35b610577600480360381019061057291906120f5565b6112c3565b60405161058491906128c4565b60405180910390f35b61059561134a565b6040516105a291906125c7565b60405180910390f35b6105c560048036038101906105c091906120c8565b61135d565b005b6105cf611455565b6040516105dc91906128c4565b60405180910390f35b6060600380546105f490612a59565b80601f016020809104026020016040519081016040528092919081815260200182805461062090612a59565b801561066d5780601f106106425761010080835404028352916020019161066d565b820191906000526020600020905b81548152906001019060200180831161065057829003601f168201915b5050505050905090565b600061068b61068461145b565b8484611463565b6001905092915050565b6000600d54905090565b60006106ac84848461162e565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006106f761145b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610777576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076e90612744565b60405180910390fd5b6107948561078361145b565b858461078f919061299d565b611463565b60019150509392505050565b60006012905090565b600061084b6107b661145b565b8484600160006107c461145b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546108469190612916565b611463565b6001905092915050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146108e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108dc90612664565b60405180910390fd5b80600d60008282546108f79190612916565b92505081905550600c54600d541115610945576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093c906127a4565b60405180910390fd5b61094f82826118ad565b5050565b60008060006109a084600560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611a01565b91509150816109b7576109b285610b09565b6109b9565b805b9250505092915050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601160019054906101000a900460ff16610a38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2f906127e4565b60405180910390fd5b6203f480601054610a499190612916565b4211610a8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a81906126e4565b60405180910390fd5b601160009054906101000a900460ff16610ad9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad090612724565b60405180910390fd5b6000601160006101000a81548160ff021916908315150217905550565b600e60009054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610b5961145b565b73ffffffffffffffffffffffffffffffffffffffff16610b77610bd9565b73ffffffffffffffffffffffffffffffffffffffff1614610bcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc490612764565b60405180910390fd5b610bd76000611af7565b565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610c0b61145b565b73ffffffffffffffffffffffffffffffffffffffff16610c29610bd9565b73ffffffffffffffffffffffffffffffffffffffff1614610c7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7690612764565b60405180910390fd5b601160019054906101000a900460ff1615610ccf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc690612644565b60405180910390fd5b816010819055506001601160016101000a81548160ff0219169083151502179055506001600e60006101000a81548160ff021916908315150217905550806012819055505050565b600f6020528060005260406000206000915054906101000a900460ff1681565b606060048054610d4690612a59565b80601f0160208091040260200160405190810160405280929190818152602001828054610d7290612a59565b8015610dbf5780601f10610d9457610100808354040283529160200191610dbf565b820191906000526020600020905b815481529060010190602001808311610da257829003601f168201915b5050505050905090565b6000806000610dd9846006611a01565b9150915081610def57610dea610695565b610df1565b805b92505050919050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610e8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8190612664565b60405180910390fd5b610e948282611bbd565b5050565b60008060016000610ea761145b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610f64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5b90612884565b60405180910390fd5b610f81610f6f61145b565b858584610f7c919061299d565b611463565b600191505092915050565b6000601160019054906101000a900460ff1680610ff9575060011515600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515145b611038576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102f90612824565b60405180910390fd5b601160009054906101000a900460ff161561118e57426010541115806110ae575060011515600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515145b6110ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e490612824565b60405180910390fd5b6012548211158061114e575060011515600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515145b61118d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118490612784565b60405180910390fd5b5b6111a061119961145b565b848461162e565b6001905092915050565b60125481565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611240576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123790612664565b60405180910390fd5b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601160019054906101000a900460ff1681565b600c5481565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b601160009054906101000a900460ff1681565b61136561145b565b73ffffffffffffffffffffffffffffffffffffffff16611383610bd9565b73ffffffffffffffffffffffffffffffffffffffff16146113d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d090612764565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611449576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611440906126a4565b60405180910390fd5b61145281611af7565b50565b60105481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156114d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ca90612844565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611543576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153a906126c4565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161162191906128c4565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561169e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169590612804565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561170e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170590612624565b60405180910390fd5b611719838383611d91565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561179f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179690612704565b60405180910390fd5b81816117ab919061299d565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461183b9190612916565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161189f91906128c4565b60405180910390a350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561191d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611914906128a4565b60405180910390fd5b61192960008383611d91565b806002600082825461193b9190612916565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119909190612916565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516119f591906128c4565b60405180910390a35050565b60008060008411611a47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3e90612864565b60405180910390fd5b611a4f611e4b565b841115611a91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8890612604565b60405180910390fd5b6000611aa98585600001611e5c90919063ffffffff16565b90508360000180549050811415611ac7576000809250925050611af0565b6001846001018281548110611adf57611ade612b18565b5b906000526020600020015492509250505b9250929050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c24906127c4565b60405180910390fd5b611c3982600083611d91565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611cbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb690612684565b60405180910390fd5b8181611ccb919061299d565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254611d1f919061299d565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611d8491906128c4565b60405180910390a3505050565b611d9c838383611f36565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611de757611dda82611f3b565b611de2611f8e565b611e46565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e3257611e2583611f3b565b611e2d611f8e565b611e45565b611e3b83611f3b565b611e4482611f3b565b5b5b505050565b6000611e576008611fa2565b905090565b60008083805490501415611e735760009050611f30565b600080848054905090505b80821015611ed7576000611e928383611fb0565b905084868281548110611ea857611ea7612b18565b5b90600052602060002001541115611ec157809150611ed1565b600181611ece9190612916565b92505b50611e7e565b600082118015611f0f57508385600184611ef1919061299d565b81548110611f0257611f01612b18565b5b9060005260206000200154145b15611f2a57600182611f21919061299d565b92505050611f30565b81925050505b92915050565b505050565b611f8b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611f8683610b09565b611fd6565b50565b611fa06006611f9b610695565b611fd6565b565b600081600001549050919050565b60006002828418611fc1919061296c565b828416611fce9190612916565b905092915050565b6000611fe0611e4b565b905080611fef84600001612051565b101561204c5782600001819080600181540180825580915050600190039060005260206000200160009091909190915055826001018290806001815401808255809150506001900390600052602060002001600090919091909150555b505050565b600080828054905014156120685760009050612099565b816001838054905061207a919061299d565b8154811061208b5761208a612b18565b5b906000526020600020015490505b919050565b6000813590506120ad816130d1565b92915050565b6000813590506120c2816130e8565b92915050565b6000602082840312156120de576120dd612b47565b5b60006120ec8482850161209e565b91505092915050565b6000806040838503121561210c5761210b612b47565b5b600061211a8582860161209e565b925050602061212b8582860161209e565b9150509250929050565b60008060006060848603121561214e5761214d612b47565b5b600061215c8682870161209e565b935050602061216d8682870161209e565b925050604061217e868287016120b3565b9150509250925092565b6000806040838503121561219f5761219e612b47565b5b60006121ad8582860161209e565b92505060206121be858286016120b3565b9150509250929050565b6000602082840312156121de576121dd612b47565b5b60006121ec848285016120b3565b91505092915050565b6000806040838503121561220c5761220b612b47565b5b600061221a858286016120b3565b925050602061222b858286016120b3565b9150509250929050565b61223e816129d1565b82525050565b61224d816129e3565b82525050565b600061225e826128fa565b6122688185612905565b9350612278818560208601612a26565b61228181612b4c565b840191505092915050565b6000612299601d83612905565b91506122a482612b5d565b602082019050919050565b60006122bc602383612905565b91506122c782612b86565b604082019050919050565b60006122df601c83612905565b91506122ea82612bd5565b602082019050919050565b6000612302601683612905565b915061230d82612bfe565b602082019050919050565b6000612325602283612905565b915061233082612c27565b604082019050919050565b6000612348602683612905565b915061235382612c76565b604082019050919050565b600061236b602283612905565b915061237682612cc5565b604082019050919050565b600061238e601783612905565b915061239982612d14565b602082019050919050565b60006123b1602683612905565b91506123bc82612d3d565b604082019050919050565b60006123d4601d83612905565b91506123df82612d8c565b602082019050919050565b60006123f7602883612905565b915061240282612db5565b604082019050919050565b600061241a602083612905565b915061242582612e04565b602082019050919050565b600061243d601983612905565b915061244882612e2d565b602082019050919050565b6000612460602683612905565b915061246b82612e56565b604082019050919050565b6000612483602183612905565b915061248e82612ea5565b604082019050919050565b60006124a6602583612905565b91506124b182612ef4565b604082019050919050565b60006124c9602583612905565b91506124d482612f43565b604082019050919050565b60006124ec602a83612905565b91506124f782612f92565b604082019050919050565b600061250f602483612905565b915061251a82612fe1565b604082019050919050565b6000612532601683612905565b915061253d82613030565b602082019050919050565b6000612555602583612905565b915061256082613059565b604082019050919050565b6000612578601f83612905565b9150612583826130a8565b602082019050919050565b61259781612a0f565b82525050565b6125a681612a19565b82525050565b60006020820190506125c16000830184612235565b92915050565b60006020820190506125dc6000830184612244565b92915050565b600060208201905081810360008301526125fc8184612253565b905092915050565b6000602082019050818103600083015261261d8161228c565b9050919050565b6000602082019050818103600083015261263d816122af565b9050919050565b6000602082019050818103600083015261265d816122d2565b9050919050565b6000602082019050818103600083015261267d816122f5565b9050919050565b6000602082019050818103600083015261269d81612318565b9050919050565b600060208201905081810360008301526126bd8161233b565b9050919050565b600060208201905081810360008301526126dd8161235e565b9050919050565b600060208201905081810360008301526126fd81612381565b9050919050565b6000602082019050818103600083015261271d816123a4565b9050919050565b6000602082019050818103600083015261273d816123c7565b9050919050565b6000602082019050818103600083015261275d816123ea565b9050919050565b6000602082019050818103600083015261277d8161240d565b9050919050565b6000602082019050818103600083015261279d81612430565b9050919050565b600060208201905081810360008301526127bd81612453565b9050919050565b600060208201905081810360008301526127dd81612476565b9050919050565b600060208201905081810360008301526127fd81612499565b9050919050565b6000602082019050818103600083015261281d816124bc565b9050919050565b6000602082019050818103600083015261283d816124df565b9050919050565b6000602082019050818103600083015261285d81612502565b9050919050565b6000602082019050818103600083015261287d81612525565b9050919050565b6000602082019050818103600083015261289d81612548565b9050919050565b600060208201905081810360008301526128bd8161256b565b9050919050565b60006020820190506128d9600083018461258e565b92915050565b60006020820190506128f4600083018461259d565b92915050565b600081519050919050565b600082825260208201905092915050565b600061292182612a0f565b915061292c83612a0f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561296157612960612a8b565b5b828201905092915050565b600061297782612a0f565b915061298283612a0f565b92508261299257612991612aba565b5b828204905092915050565b60006129a882612a0f565b91506129b383612a0f565b9250828210156129c6576129c5612a8b565b5b828203905092915050565b60006129dc826129ef565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015612a44578082015181840152602081019050612a29565b83811115612a53576000848401525b50505050565b60006002820490506001821680612a7157607f821691505b60208210811415612a8557612a84612ae9565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433230536e617073686f743a206e6f6e6578697374656e74206964000000600082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f46616972204c61756e636820616c72656164792068617070656e656400000000600082015250565b7f6f6e6c79204f70657261746f7220436f6e747261637400000000000000000000600082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f54696d6520686173206e6f742070617373656420796574000000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f66616972204c61756e6368206576656e742069732066696e6973686564000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d6574616e6f3a3a416e7469205768616c652053797374656d00000000000000600082015250565b7f4d4554414e4f3a3a6d696e743a2063616e6e6f7420657863656564206d61782060008201527f737570706c790000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f46616972206c61756e636820686173206e6f74206265656e206578656375746560008201527f6420796574000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f4d6574616e6f3a3a46616972204c61756e6368206576656e74202c206e6f742060008201527f7374617274732079657400000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433230536e617073686f743a206964206973203000000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6130da816129d1565b81146130e557600080fd5b50565b6130f181612a0f565b81146130fc57600080fd5b5056fea2646970667358221220a54626f6a59899bda977ad1067ccc3aa4277f1c55d3d9c3aad1f35cd798af2c064736f6c63430008070033

Deployed ByteCode

0x608060405234801561001057600080fd5b50600436106101da5760003560e01c8063929912dc11610104578063ac7475ed116100a2578063dd62ed3e11610071578063dd62ed3e1461055d578063e233033f1461058d578063f2fde38b146105ab578063f4f38bde146105c7576101da565b8063ac7475ed146104e7578063ca31163014610503578063d5abeb0114610521578063d5f394881461053f576101da565b80639dc29fac116100de5780639dc29fac1461044d578063a457c2d714610469578063a9059cbb14610499578063a9e75723146104c9576101da565b8063929912dc146103cf57806395d89b41146103ff578063981b24d01461041d576101da565b80634ee2cd7e1161017c57806370a082311161014b57806370a082311461035b578063715018a61461038b5780638da5cb5b1461039557806391af8aba146103b3576101da565b80634ee2cd7e146102e5578063570ca735146103155780636688ddf4146103335780636ddd17131461033d576101da565b806323b872dd116101b857806323b872dd1461024b578063313ce5671461027b578063395093511461029957806340c10f19146102c9576101da565b806306fdde03146101df578063095ea7b3146101fd57806318160ddd1461022d575b600080fd5b6101e76105e5565b6040516101f491906125e2565b60405180910390f35b61021760048036038101906102129190612188565b610677565b60405161022491906125c7565b60405180910390f35b610235610695565b60405161024291906128c4565b60405180910390f35b61026560048036038101906102609190612135565b61069f565b60405161027291906125c7565b60405180910390f35b6102836107a0565b60405161029091906128df565b60405180910390f35b6102b360048036038101906102ae9190612188565b6107a9565b6040516102c091906125c7565b60405180910390f35b6102e360048036038101906102de9190612188565b610855565b005b6102ff60048036038101906102fa9190612188565b610953565b60405161030c91906128c4565b60405180910390f35b61031d6109c3565b60405161032a91906125ac565b60405180910390f35b61033b6109e9565b005b610345610af6565b60405161035291906125c7565b60405180910390f35b610375600480360381019061037091906120c8565b610b09565b60405161038291906128c4565b60405180910390f35b610393610b51565b005b61039d610bd9565b6040516103aa91906125ac565b60405180910390f35b6103cd60048036038101906103c891906121f5565b610c03565b005b6103e960048036038101906103e491906120c8565b610d17565b6040516103f691906125c7565b60405180910390f35b610407610d37565b60405161041491906125e2565b60405180910390f35b610437600480360381019061043291906121c8565b610dc9565b60405161044491906128c4565b60405180910390f35b61046760048036038101906104629190612188565b610dfa565b005b610483600480360381019061047e9190612188565b610e98565b60405161049091906125c7565b60405180910390f35b6104b360048036038101906104ae9190612188565b610f8c565b6040516104c091906125c7565b60405180910390f35b6104d16111aa565b6040516104de91906128c4565b60405180910390f35b61050160048036038101906104fc91906120c8565b6111b0565b005b61050b611284565b60405161051891906125c7565b60405180910390f35b610529611297565b60405161053691906128c4565b60405180910390f35b61054761129d565b60405161055491906125ac565b60405180910390f35b610577600480360381019061057291906120f5565b6112c3565b60405161058491906128c4565b60405180910390f35b61059561134a565b6040516105a291906125c7565b60405180910390f35b6105c560048036038101906105c091906120c8565b61135d565b005b6105cf611455565b6040516105dc91906128c4565b60405180910390f35b6060600380546105f490612a59565b80601f016020809104026020016040519081016040528092919081815260200182805461062090612a59565b801561066d5780601f106106425761010080835404028352916020019161066d565b820191906000526020600020905b81548152906001019060200180831161065057829003601f168201915b5050505050905090565b600061068b61068461145b565b8484611463565b6001905092915050565b6000600d54905090565b60006106ac84848461162e565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006106f761145b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610777576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076e90612744565b60405180910390fd5b6107948561078361145b565b858461078f919061299d565b611463565b60019150509392505050565b60006012905090565b600061084b6107b661145b565b8484600160006107c461145b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546108469190612916565b611463565b6001905092915050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146108e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108dc90612664565b60405180910390fd5b80600d60008282546108f79190612916565b92505081905550600c54600d541115610945576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093c906127a4565b60405180910390fd5b61094f82826118ad565b5050565b60008060006109a084600560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611a01565b91509150816109b7576109b285610b09565b6109b9565b805b9250505092915050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601160019054906101000a900460ff16610a38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2f906127e4565b60405180910390fd5b6203f480601054610a499190612916565b4211610a8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a81906126e4565b60405180910390fd5b601160009054906101000a900460ff16610ad9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad090612724565b60405180910390fd5b6000601160006101000a81548160ff021916908315150217905550565b600e60009054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610b5961145b565b73ffffffffffffffffffffffffffffffffffffffff16610b77610bd9565b73ffffffffffffffffffffffffffffffffffffffff1614610bcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc490612764565b60405180910390fd5b610bd76000611af7565b565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610c0b61145b565b73ffffffffffffffffffffffffffffffffffffffff16610c29610bd9565b73ffffffffffffffffffffffffffffffffffffffff1614610c7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7690612764565b60405180910390fd5b601160019054906101000a900460ff1615610ccf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc690612644565b60405180910390fd5b816010819055506001601160016101000a81548160ff0219169083151502179055506001600e60006101000a81548160ff021916908315150217905550806012819055505050565b600f6020528060005260406000206000915054906101000a900460ff1681565b606060048054610d4690612a59565b80601f0160208091040260200160405190810160405280929190818152602001828054610d7290612a59565b8015610dbf5780601f10610d9457610100808354040283529160200191610dbf565b820191906000526020600020905b815481529060010190602001808311610da257829003601f168201915b5050505050905090565b6000806000610dd9846006611a01565b9150915081610def57610dea610695565b610df1565b805b92505050919050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610e8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8190612664565b60405180910390fd5b610e948282611bbd565b5050565b60008060016000610ea761145b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610f64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5b90612884565b60405180910390fd5b610f81610f6f61145b565b858584610f7c919061299d565b611463565b600191505092915050565b6000601160019054906101000a900460ff1680610ff9575060011515600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515145b611038576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102f90612824565b60405180910390fd5b601160009054906101000a900460ff161561118e57426010541115806110ae575060011515600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515145b6110ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e490612824565b60405180910390fd5b6012548211158061114e575060011515600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515145b61118d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118490612784565b60405180910390fd5b5b6111a061119961145b565b848461162e565b6001905092915050565b60125481565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611240576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123790612664565b60405180910390fd5b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601160019054906101000a900460ff1681565b600c5481565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b601160009054906101000a900460ff1681565b61136561145b565b73ffffffffffffffffffffffffffffffffffffffff16611383610bd9565b73ffffffffffffffffffffffffffffffffffffffff16146113d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d090612764565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611449576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611440906126a4565b60405180910390fd5b61145281611af7565b50565b60105481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156114d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ca90612844565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611543576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153a906126c4565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161162191906128c4565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561169e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169590612804565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561170e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170590612624565b60405180910390fd5b611719838383611d91565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561179f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179690612704565b60405180910390fd5b81816117ab919061299d565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461183b9190612916565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161189f91906128c4565b60405180910390a350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561191d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611914906128a4565b60405180910390fd5b61192960008383611d91565b806002600082825461193b9190612916565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119909190612916565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516119f591906128c4565b60405180910390a35050565b60008060008411611a47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3e90612864565b60405180910390fd5b611a4f611e4b565b841115611a91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8890612604565b60405180910390fd5b6000611aa98585600001611e5c90919063ffffffff16565b90508360000180549050811415611ac7576000809250925050611af0565b6001846001018281548110611adf57611ade612b18565b5b906000526020600020015492509250505b9250929050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c24906127c4565b60405180910390fd5b611c3982600083611d91565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611cbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb690612684565b60405180910390fd5b8181611ccb919061299d565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254611d1f919061299d565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611d8491906128c4565b60405180910390a3505050565b611d9c838383611f36565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611de757611dda82611f3b565b611de2611f8e565b611e46565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e3257611e2583611f3b565b611e2d611f8e565b611e45565b611e3b83611f3b565b611e4482611f3b565b5b5b505050565b6000611e576008611fa2565b905090565b60008083805490501415611e735760009050611f30565b600080848054905090505b80821015611ed7576000611e928383611fb0565b905084868281548110611ea857611ea7612b18565b5b90600052602060002001541115611ec157809150611ed1565b600181611ece9190612916565b92505b50611e7e565b600082118015611f0f57508385600184611ef1919061299d565b81548110611f0257611f01612b18565b5b9060005260206000200154145b15611f2a57600182611f21919061299d565b92505050611f30565b81925050505b92915050565b505050565b611f8b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611f8683610b09565b611fd6565b50565b611fa06006611f9b610695565b611fd6565b565b600081600001549050919050565b60006002828418611fc1919061296c565b828416611fce9190612916565b905092915050565b6000611fe0611e4b565b905080611fef84600001612051565b101561204c5782600001819080600181540180825580915050600190039060005260206000200160009091909190915055826001018290806001815401808255809150506001900390600052602060002001600090919091909150555b505050565b600080828054905014156120685760009050612099565b816001838054905061207a919061299d565b8154811061208b5761208a612b18565b5b906000526020600020015490505b919050565b6000813590506120ad816130d1565b92915050565b6000813590506120c2816130e8565b92915050565b6000602082840312156120de576120dd612b47565b5b60006120ec8482850161209e565b91505092915050565b6000806040838503121561210c5761210b612b47565b5b600061211a8582860161209e565b925050602061212b8582860161209e565b9150509250929050565b60008060006060848603121561214e5761214d612b47565b5b600061215c8682870161209e565b935050602061216d8682870161209e565b925050604061217e868287016120b3565b9150509250925092565b6000806040838503121561219f5761219e612b47565b5b60006121ad8582860161209e565b92505060206121be858286016120b3565b9150509250929050565b6000602082840312156121de576121dd612b47565b5b60006121ec848285016120b3565b91505092915050565b6000806040838503121561220c5761220b612b47565b5b600061221a858286016120b3565b925050602061222b858286016120b3565b9150509250929050565b61223e816129d1565b82525050565b61224d816129e3565b82525050565b600061225e826128fa565b6122688185612905565b9350612278818560208601612a26565b61228181612b4c565b840191505092915050565b6000612299601d83612905565b91506122a482612b5d565b602082019050919050565b60006122bc602383612905565b91506122c782612b86565b604082019050919050565b60006122df601c83612905565b91506122ea82612bd5565b602082019050919050565b6000612302601683612905565b915061230d82612bfe565b602082019050919050565b6000612325602283612905565b915061233082612c27565b604082019050919050565b6000612348602683612905565b915061235382612c76565b604082019050919050565b600061236b602283612905565b915061237682612cc5565b604082019050919050565b600061238e601783612905565b915061239982612d14565b602082019050919050565b60006123b1602683612905565b91506123bc82612d3d565b604082019050919050565b60006123d4601d83612905565b91506123df82612d8c565b602082019050919050565b60006123f7602883612905565b915061240282612db5565b604082019050919050565b600061241a602083612905565b915061242582612e04565b602082019050919050565b600061243d601983612905565b915061244882612e2d565b602082019050919050565b6000612460602683612905565b915061246b82612e56565b604082019050919050565b6000612483602183612905565b915061248e82612ea5565b604082019050919050565b60006124a6602583612905565b91506124b182612ef4565b604082019050919050565b60006124c9602583612905565b91506124d482612f43565b604082019050919050565b60006124ec602a83612905565b91506124f782612f92565b604082019050919050565b600061250f602483612905565b915061251a82612fe1565b604082019050919050565b6000612532601683612905565b915061253d82613030565b602082019050919050565b6000612555602583612905565b915061256082613059565b604082019050919050565b6000612578601f83612905565b9150612583826130a8565b602082019050919050565b61259781612a0f565b82525050565b6125a681612a19565b82525050565b60006020820190506125c16000830184612235565b92915050565b60006020820190506125dc6000830184612244565b92915050565b600060208201905081810360008301526125fc8184612253565b905092915050565b6000602082019050818103600083015261261d8161228c565b9050919050565b6000602082019050818103600083015261263d816122af565b9050919050565b6000602082019050818103600083015261265d816122d2565b9050919050565b6000602082019050818103600083015261267d816122f5565b9050919050565b6000602082019050818103600083015261269d81612318565b9050919050565b600060208201905081810360008301526126bd8161233b565b9050919050565b600060208201905081810360008301526126dd8161235e565b9050919050565b600060208201905081810360008301526126fd81612381565b9050919050565b6000602082019050818103600083015261271d816123a4565b9050919050565b6000602082019050818103600083015261273d816123c7565b9050919050565b6000602082019050818103600083015261275d816123ea565b9050919050565b6000602082019050818103600083015261277d8161240d565b9050919050565b6000602082019050818103600083015261279d81612430565b9050919050565b600060208201905081810360008301526127bd81612453565b9050919050565b600060208201905081810360008301526127dd81612476565b9050919050565b600060208201905081810360008301526127fd81612499565b9050919050565b6000602082019050818103600083015261281d816124bc565b9050919050565b6000602082019050818103600083015261283d816124df565b9050919050565b6000602082019050818103600083015261285d81612502565b9050919050565b6000602082019050818103600083015261287d81612525565b9050919050565b6000602082019050818103600083015261289d81612548565b9050919050565b600060208201905081810360008301526128bd8161256b565b9050919050565b60006020820190506128d9600083018461258e565b92915050565b60006020820190506128f4600083018461259d565b92915050565b600081519050919050565b600082825260208201905092915050565b600061292182612a0f565b915061292c83612a0f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561296157612960612a8b565b5b828201905092915050565b600061297782612a0f565b915061298283612a0f565b92508261299257612991612aba565b5b828204905092915050565b60006129a882612a0f565b91506129b383612a0f565b9250828210156129c6576129c5612a8b565b5b828203905092915050565b60006129dc826129ef565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015612a44578082015181840152602081019050612a29565b83811115612a53576000848401525b50505050565b60006002820490506001821680612a7157607f821691505b60208210811415612a8557612a84612ae9565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433230536e617073686f743a206e6f6e6578697374656e74206964000000600082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f46616972204c61756e636820616c72656164792068617070656e656400000000600082015250565b7f6f6e6c79204f70657261746f7220436f6e747261637400000000000000000000600082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f54696d6520686173206e6f742070617373656420796574000000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f66616972204c61756e6368206576656e742069732066696e6973686564000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d6574616e6f3a3a416e7469205768616c652053797374656d00000000000000600082015250565b7f4d4554414e4f3a3a6d696e743a2063616e6e6f7420657863656564206d61782060008201527f737570706c790000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f46616972206c61756e636820686173206e6f74206265656e206578656375746560008201527f6420796574000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f4d6574616e6f3a3a46616972204c61756e6368206576656e74202c206e6f742060008201527f7374617274732079657400000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433230536e617073686f743a206964206973203000000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6130da816129d1565b81146130e557600080fd5b50565b6130f181612a0f565b81146130fc57600080fd5b5056fea2646970667358221220a54626f6a59899bda977ad1067ccc3aa4277f1c55d3d9c3aad1f35cd798af2c064736f6c63430008070033