ETH Price: $2,984.49 (+1.17%)
Gas: 7 Gwei

Token

Synapse Network (SNP)
 

Overview

Max Total Supply

500,000,000 SNP

Holders

1,915

Total Transfers

-

Market

Price

$0.00 @ 0.000000 ETH

Onchain Market Cap

$727,204.01

Circulating Supply Market Cap

$0.00

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Synapse is the bridge to a new world of fundraising across all smart-contract-based blockchains. Accessible for everybody, with a democratized tier system redesigned from scratch, allowing to invest at any stage of project development.

Market

Volume (24H):$0.00
Market Capitalization:$0.00
Circulating Supply:0.00 SNP
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
SynapseNetwork

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
Yes with 999999 runs

Other Settings:
default evmVersion, MIT license
File 1 of 7 : SynapseNetwork.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.6;

import { EIP712 } from "./external/openzeppelin/draft-EIP712.sol";
import { ECDSA } from "./external/openzeppelin/ECDSA.sol";

import { IERC20 } from "./interfaces/IERC20.sol";
import { Ownable } from "./abstract/Ownable.sol";
import { TransactionThrottler } from "./abstract/TransactionThrottler.sol";
import { Constants } from "./libraries/Constants.sol";

contract SynapseNetwork is IERC20, EIP712, Ownable, TransactionThrottler {
    mapping(address => uint256) private _balances;
    mapping(address => mapping(address => uint256)) private _allowances;

    // keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)");
    // solhint-disable-next-line var-name-mixedcase
    bytes32 public constant PERMIT_TYPEHASH = 0x6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9;
    // keccak256("Transfer(address owner,address to,uint256 value,uint256 nonce,uint256 deadline)");
    // solhint-disable-next-line var-name-mixedcase
    bytes32 public constant TRANSFER_TYPEHASH = 0x42ce63790c28229c123925d83266e77c04d28784552ab68b350a9003226cbd59;
    mapping(address => uint256) public override nonces;

    mapping(address => bool) private _excludedFromFees;
    // Basis points means divide by 10,000 to get decimal
    uint256 private constant MAX_TRANSFER_FEE_BASIS_POINTS = 1000;
    uint256 private constant BASIS_POINTS_MULTIPLIER = 10000;
    uint256 public transferFeeBasisPoints;
    address public feeContract;

    event MarkedExcluded(address indexed account, bool isExcluded);
    event FeeBasisPoints(uint256 feeBasisPoints);
    event FeeContractChanged(address feeContract);

    constructor(address _admin) EIP712(Constants.getName(), "1") {
        transferFeeBasisPoints = 50;
        setExcludedFromFees(_admin, true);

        _setOwner(_admin);

        _balances[_admin] = Constants.getTotalSupply();
        emit Transfer(address(0), _admin, Constants.getTotalSupply());
    }

    function name() external pure returns (string memory) {
        return Constants.getName();
    }

    function symbol() external pure returns (string memory) {
        return Constants.getSymbol();
    }

    function decimals() external pure override returns (uint8) {
        return Constants.getDecimals();
    }

    function totalSupply() external pure override returns (uint256) {
        return Constants.getTotalSupply();
    }

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

    function transfer(address recipient, uint256 amount) external override returns (bool) {
        _transfer(msg.sender, recipient, amount);
        return true;
    }

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

    function approve(address spender, uint256 amount) external override returns (bool) {
        _approve(msg.sender, spender, amount);
        return true;
    }

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external override returns (bool) {
        uint256 currentAllowance = _allowances[sender][msg.sender];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        if (currentAllowance < type(uint256).max) {
            // DEXes can use max allowance
            _approve(sender, msg.sender, currentAllowance - amount);
        }
        _transfer(sender, recipient, amount);
        return true;
    }

    function increaseAllowance(address spender, uint256 addedValue) external returns (bool) {
        _approve(msg.sender, spender, _allowances[msg.sender][spender] + addedValue);
        return true;
    }

    function decreaseAllowance(address spender, uint256 subtractedValue) external returns (bool) {
        uint256 currentAllowance = _allowances[msg.sender][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        _approve(msg.sender, spender, currentAllowance - subtractedValue);
        return true;
    }

    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) private transactionThrottler(sender, recipient, amount) {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount is 0");
        require(_balances[sender] >= amount, "ERC20: transfer amount exceeds balance");

        uint256 fee;
        if (feeContract != address(0) && transferFeeBasisPoints > 0 && !_excludedFromFees[sender] && !_excludedFromFees[recipient]) {
            fee = (amount * transferFeeBasisPoints) / BASIS_POINTS_MULTIPLIER;
            _balances[feeContract] += fee;
            emit Transfer(sender, feeContract, fee);
        }

        uint256 sendAmount = amount - fee;
        _balances[sender] -= amount;
        _balances[recipient] += sendAmount;
        emit Transfer(sender, recipient, sendAmount);
    }

    function _approve(
        address _owner,
        address spender,
        uint256 amount
    ) private {
        require(_owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

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

    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view override returns (bytes32) {
        return _domainSeparatorV4();
    }

    function permit(
        address _owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external override {
        // Revert faster here then later on signature (gas saving for user)
        require(_owner != address(0), "ERC20Permit: Permit from zero address");
        // solhint-disable-next-line not-rely-on-time
        require(block.timestamp <= deadline, "ERC20Permit: expired deadline");

        bytes32 structHash = keccak256(abi.encode(PERMIT_TYPEHASH, _owner, spender, value, nonces[_owner]++, deadline));
        bytes32 hash = _hashTypedDataV4(structHash);

        address signer = ECDSA.recover(hash, v, r, s);
        require(signer == _owner, "ERC20Permit: invalid signature");

        _approve(_owner, spender, value);
    }

    function transferWithPermit(
        address _owner,
        address to,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external override returns (bool) {
        // Revert faster here then later on signature (gas saving for user)
        require(_owner != address(0) && to != address(0), "ERC20Permit: Zero address");
        require(block.timestamp <= deadline, "ERC20Permit: expired deadline");

        bytes32 structHash = keccak256(abi.encode(TRANSFER_TYPEHASH, _owner, to, value, nonces[_owner]++, deadline));
        bytes32 hash = _hashTypedDataV4(structHash);

        address signer = ECDSA.recover(hash, v, r, s);
        require(signer == _owner, "ERC20Permit: invalid signature");

        _transfer(_owner, to, value);
        return true;
    }

    function isExcludedFromFees(address account) external view returns (bool) {
        return _excludedFromFees[account];
    }

    function setExcludedFromFees(address account, bool isExcluded) public onlyOwner {
        require(account != address(0), "Zero address");
        _excludedFromFees[account] = isExcluded;
        emit MarkedExcluded(account, isExcluded);
    }

    function setTransferFeeBasisPoints(uint256 fee) external onlyOwner {
        require(fee <= MAX_TRANSFER_FEE_BASIS_POINTS, "Fee is outside of range 0-1000");
        transferFeeBasisPoints = fee;
        emit FeeBasisPoints(transferFeeBasisPoints);
    }

    function changeFeeContract(address newContract) external onlyOwner {
        feeContract = newContract;
        emit FeeContractChanged(feeContract);
    }
}

File 2 of 7 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.6;

abstract contract OwnableData {
    address public owner;
    address public pendingOwner;
}

abstract contract Ownable is OwnableData {
    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev `owner` defaults to msg.sender on construction.
     */
    constructor() {
        _setOwner(msg.sender);
    }

    /**
     * @dev Transfers ownership to `newOwner`. Either directly or claimable by the new pending owner.
     *      Can only be invoked by the current `owner`.
     * @param _newOwner Address of the new owner.
     * @param _direct True if `newOwner` should be set immediately. False if `newOwner` needs to use `claimOwnership`.
     */
    function transferOwnership(address _newOwner, bool _direct) external onlyOwner {
        if (_direct) {
            require(_newOwner != address(0), "zero address");

            emit OwnershipTransferred(owner, _newOwner);
            owner = _newOwner;
            pendingOwner = address(0);
        } else {
            pendingOwner = _newOwner;
        }
    }

    /**
     * @dev Needs to be called by `pendingOwner` to claim ownership.
     */
    function claimOwnership() external {
        address _pendingOwner = pendingOwner;
        require(msg.sender == _pendingOwner, "caller != pending owner");

        emit OwnershipTransferred(owner, _pendingOwner);
        owner = _pendingOwner;
        pendingOwner = address(0);
    }

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

    function _setOwner(address newOwner) internal {
        address oldOwner = owner;
        owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 3 of 7 : TransactionThrottler.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.6;

import { Ownable } from "./Ownable.sol";

abstract contract TransactionThrottler is Ownable {
    bool private _restrictionActive;
    uint256 private _tradingStart;
    uint256 private _restrictionEndTime;
    uint256 private _maxTransferAmount;
    uint256 private constant _delayBetweenTx = 30;
    mapping(address => bool) private _isWhitelisted;
    mapping(address => uint256) private _previousTx;

    event TradingTimeChanged(uint256 tradingTime);
    event RestrictionEndTimeChanged(uint256 endTime);
    event RestrictionActiveChanged(bool active);
    event MaxTransferAmountChanged(uint256 maxTransferAmount);
    event MarkedWhitelisted(address indexed account, bool isWhitelisted);

    constructor() {
        _tradingStart = block.timestamp + 3 days;
        _restrictionEndTime = _tradingStart + 30 * 60;
        _maxTransferAmount = 60000 * 10**18;
        _restrictionActive = true;
    }

    function setTradingStart(uint256 _time) external onlyOwner() {
        require(_tradingStart > block.timestamp, "Protection: To late");
        _tradingStart = _time;
        _restrictionEndTime = _time + 30 * 60;
        emit TradingTimeChanged(_tradingStart);
        emit RestrictionEndTimeChanged(_restrictionEndTime);
    }

    function setMaxTransferAmount(uint256 _amount) external onlyOwner() {
        require(_restrictionEndTime > block.timestamp, "Protection: To late");
        _maxTransferAmount = _amount;
        emit MaxTransferAmountChanged(_maxTransferAmount);
    }

    function setRestrictionActive(bool _active) external onlyOwner() {
        _restrictionActive = _active;
        emit RestrictionActiveChanged(_active);
    }

    function whitelistAccount(address _account, bool _whitelisted) external onlyOwner() {
        require(_account != address(0), "Zero address");
        _isWhitelisted[_account] = true;
        emit MarkedWhitelisted(_account, _whitelisted);
    }

    modifier transactionThrottler(
        address sender,
        address recipient,
        uint256 amount
    ) {
        if (_tradingStart > block.timestamp) {
            require(sender == owner || recipient == owner, "Protection: Transfers disabled");
        } else if (_restrictionActive) {
            uint256 requiredDelay;

            // During the first restricted period tokens amount are limited
            if (_restrictionEndTime > block.timestamp) {
                require(amount <= _maxTransferAmount, "Protection: Limit exceeded");
                requiredDelay = 60 seconds;
            } else {
                requiredDelay = _delayBetweenTx;
            }

            if (!_isWhitelisted[recipient]) {
                require(_previousTx[recipient] + requiredDelay <= block.timestamp, "Protection: 1 tx/min allowed");
                _previousTx[recipient] = block.timestamp;
            }
            if (!_isWhitelisted[sender]) {
                require(_previousTx[sender] + requiredDelay <= block.timestamp, "Protection: 1 tx/min allowed");
                _previousTx[sender] = block.timestamp;
            }
        }
        _;
    }
}

File 4 of 7 : ECDSA.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.6;

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        // Divide the signature in r, s and v variables
        bytes32 r;
        bytes32 s;
        uint8 v;

        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            // solhint-disable-next-line no-inline-assembly
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
        } else if (signature.length == 64) {
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            // solhint-disable-next-line no-inline-assembly
            assembly {
                let vs := mload(add(signature, 0x40))
                r := mload(add(signature, 0x20))
                s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)
                v := add(shr(255, vs), 27)
            }
        } else {
            revert("ECDSA: invalid signature length");
        }

        return recover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (281): 0 < s < secp256k1n ÷ 2 + 1, and for v in (282): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        require(uint256(s) <= 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0, "ECDSA: invalid signature 's' value");
        require(v == 27 || v == 28, "ECDSA: invalid signature 'v' value");

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        require(signer != address(0), "ECDSA: invalid signature");

        return signer;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

File 5 of 7 : draft-EIP712.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.6;

import "./ECDSA.sol";

/**
 * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data.
 *
 * The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible,
 * thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding
 * they need in their contracts using a combination of `abi.encode` and `keccak256`.
 *
 * This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding
 * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA
 * ({_hashTypedDataV4}).
 *
 * The implementation of the domain separator was designed to be as efficient as possible while still properly updating
 * the chain id to protect against replay attacks on an eventual fork of the chain.
 *
 * NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method
 * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask].
 *
 * _Available since v3.4._
 */
abstract contract EIP712 {
    /* solhint-disable var-name-mixedcase */
    // Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to
    // invalidate the cached domain separator if the chain id changes.
    bytes32 private immutable _CACHED_DOMAIN_SEPARATOR;
    uint256 private immutable _CACHED_CHAIN_ID;

    bytes32 private immutable _HASHED_NAME;
    bytes32 private immutable _HASHED_VERSION;
    bytes32 private immutable _TYPE_HASH;
    /* solhint-enable var-name-mixedcase */

    /**
     * @dev Initializes the domain separator and parameter caches.
     *
     * The meaning of `name` and `version` is specified in
     * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]:
     *
     * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol.
     * - `version`: the current major version of the signing domain.
     *
     * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart
     * contract upgrade].
     */
    constructor(string memory name, string memory version) {
        bytes32 hashedName = keccak256(bytes(name));
        bytes32 hashedVersion = keccak256(bytes(version));
        bytes32 typeHash = keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)");
        _HASHED_NAME = hashedName;
        _HASHED_VERSION = hashedVersion;
        _CACHED_CHAIN_ID = block.chainid;
        _CACHED_DOMAIN_SEPARATOR = _buildDomainSeparator(typeHash, hashedName, hashedVersion);
        _TYPE_HASH = typeHash;
    }

    /**
     * @dev Returns the domain separator for the current chain.
     */
    function _domainSeparatorV4() internal view returns (bytes32) {
        if (block.chainid == _CACHED_CHAIN_ID) {
            return _CACHED_DOMAIN_SEPARATOR;
        } else {
            return _buildDomainSeparator(_TYPE_HASH, _HASHED_NAME, _HASHED_VERSION);
        }
    }

    function _buildDomainSeparator(bytes32 typeHash, bytes32 name, bytes32 version) private view returns (bytes32) {
        return keccak256(
            abi.encode(
                typeHash,
                name,
                version,
                block.chainid,
                address(this)
            )
        );
    }

    /**
     * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this
     * function returns the hash of the fully encoded EIP712 message for this domain.
     *
     * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example:
     *
     * ```solidity
     * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode(
     *     keccak256("Mail(address to,string contents)"),
     *     mailTo,
     *     keccak256(bytes(mailContents))
     * )));
     * address signer = ECDSA.recover(digest, signature);
     * ```
     */
    function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) {
        return ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash);
    }
}

File 6 of 7 : IERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.6;

interface IERC20 {
    event Transfer(address indexed from, address indexed to, uint256 value);
    event Approval(address indexed owner, address indexed spender, uint256 value);

    function totalSupply() external view returns (uint256);
    function decimals() external view returns (uint8);
    function balanceOf(address account) external view returns (uint256);
    function allowance(address owner, address spender) external view returns (uint256);

    function approve(address spender, uint256 amount) external returns (bool);
    function transfer(address to, uint256 value) external returns (bool);
    function transferFrom(address from, address to, uint256 value) external returns (bool);

    // EIP 2612
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function nonces(address owner) external view returns (uint256);
    function permit(address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) external;
    function transferWithPermit(address target, address to, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) external returns (bool);
}

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

pragma solidity 0.8.6;

library Constants {
    string private constant _name = "Synapse Network";
    string private constant _symbol = "SNP";
    uint8 private constant _decimals = 18;
    uint256 private constant _totalSupply = 500_000_000 * 10**18;

    function getName() internal pure returns (string memory) {
        return _name;
    }

    function getSymbol() internal pure returns (string memory) {
        return _symbol;
    }

    function getDecimals() internal pure returns (uint8) {
        return _decimals;
    }

    function getTotalSupply() internal pure returns (uint256) {
        return _totalSupply;
    }
}

Settings
{
  "evmVersion": "berlin",
  "libraries": {},
  "metadata": {
    "bytecodeHash": "ipfs",
    "useLiteralContent": true
  },
  "optimizer": {
    "enabled": true,
    "runs": 999999
  },
  "remappings": [],
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_admin","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":false,"internalType":"uint256","name":"feeBasisPoints","type":"uint256"}],"name":"FeeBasisPoints","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"feeContract","type":"address"}],"name":"FeeContractChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"MarkedExcluded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isWhitelisted","type":"bool"}],"name":"MarkedWhitelisted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxTransferAmount","type":"uint256"}],"name":"MaxTransferAmountChanged","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":false,"internalType":"bool","name":"active","type":"bool"}],"name":"RestrictionActiveChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"endTime","type":"uint256"}],"name":"RestrictionEndTimeChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tradingTime","type":"uint256"}],"name":"TradingTimeChanged","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":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PERMIT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TRANSFER_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","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":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newContract","type":"address"}],"name":"changeFeeContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"setExcludedFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxTransferAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_active","type":"bool"}],"name":"setRestrictionActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_time","type":"uint256"}],"name":"setTradingStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"fee","type":"uint256"}],"name":"setTransferFeeBasisPoints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","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":[],"name":"transferFeeBasisPoints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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"},{"internalType":"bool","name":"_direct","type":"bool"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"transferWithPermit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"bool","name":"_whitelisted","type":"bool"}],"name":"whitelistAccount","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6101206040523480156200001257600080fd5b5060405162002e0e38038062002e0e833981016040819052620000359162000384565b6200004a620001f560201b620018d41760201c565b60408051808201825260018152603160f81b60209182015282519281019290922060c08181527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660e08190524660a081815285517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f8189018190528188019690965260608101939093526080808401929092523083820152855180840390910181529190920190935282519290930191909120909152610100526200010f336200021e565b6200011e426203f480620003b6565b60028190556200013190610708620003b6565b600355690cb49b44ba602d8000006004556001805460ff60a01b1916600160a01b1781556032600b55620001679082906200026e565b62000172816200021e565b620001876200037460201b6200190b1760201c565b6001600160a01b038216600081815260076020908152604082209390935590917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90620001dd906200190b62000374821b17901c565b60405190815260200160405180910390a350620003dd565b60408051808201909152600f81526e53796e61707365204e6574776f726b60881b602082015290565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000546001600160a01b03163314620002ce5760405162461bcd60e51b815260206004820152601760248201527f63616c6c6572206973206e6f7420746865206f776e657200000000000000000060448201526064015b60405180910390fd5b6001600160a01b038216620003155760405162461bcd60e51b815260206004820152600c60248201526b5a65726f206164647265737360a01b6044820152606401620002c5565b6001600160a01b0382166000818152600a6020908152604091829020805460ff191685151590811790915591519182527ff9c8a5f57610c46ccc680954a15976ee96ac8bd02b829439b8a6a40258763611910160405180910390a25050565b6b019d971e4fe8401e7400000090565b6000602082840312156200039757600080fd5b81516001600160a01b0381168114620003af57600080fd5b9392505050565b60008219821115620003d857634e487b7160e01b600052601160045260246000fd5b500190565b60805160a05160c05160e051610100516129ec62000422600039600061230b0152600061235a01526000612335015260006122b9015260006122e201526129ec6000f3fe608060405234801561001057600080fd5b50600436106101e45760003560e01c8063590ffdce1161010f57806399c8df18116100a2578063d505accf11610071578063d505accf1461049e578063da403903146104b1578063dd62ed3e146104c4578063e30c39781461050a57600080fd5b806399c8df1814610452578063a457c2d714610465578063a9059cbb14610478578063b242e5341461048b57600080fd5b80637ecebe00116100de5780637ecebe00146103f75780638bf55409146104175780638da5cb5b1461042a57806395d89b411461044a57600080fd5b8063590ffdce14610388578063605629d61461039b57806370a08231146103ae5780637419683c146103e457600080fd5b806330adf81f116101875780634af640d1116101565780634af640d11461031f5780634e71e0c8146103345780634fbee1931461033c5780635787b1421461037557600080fd5b806330adf81f146102ce578063313ce567146102f55780633644e51514610304578063395093511461030c57600080fd5b8063095ea7b3116101c3578063095ea7b31461027d57806318160ddd146102a0578063183767da146102b257806323b872dd146102bb57600080fd5b8062bf26f4146101e957806306e297121461022357806306fdde0314610268575b600080fd5b6102107f42ce63790c28229c123925d83266e77c04d28784552ab68b350a9003226cbd5981565b6040519081526020015b60405180910390f35b600c546102439073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161021a565b61027061052a565b60405161021a9190612834565b61029061028b3660046127d6565b61056b565b604051901515815260200161021a565b6b019d971e4fe8401e74000000610210565b610210600b5481565b6102906102c93660046126fd565b610581565b6102107f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b6040516012815260200161021a565b610210610699565b61029061031a3660046127d6565b6106a3565b61033261032d366004612800565b6106e7565b005b6103326107ec565b61029061034a3660046126a8565b73ffffffffffffffffffffffffffffffffffffffff166000908152600a602052604090205460ff1690565b6103326103833660046126a8565b610902565b6103326103963660046127ac565b6109f6565b6102906103a9366004612739565b610b7f565b6102106103bc3660046126a8565b73ffffffffffffffffffffffffffffffffffffffff1660009081526007602052604090205490565b6103326103f236600461281b565b610e14565b6102106104053660046126a8565b60096020526000908152604090205481565b61033261042536600461281b565b610f7d565b6000546102439073ffffffffffffffffffffffffffffffffffffffff1681565b61027061109e565b6103326104603660046127ac565b6110da565b6102906104733660046127d6565b61125a565b6102906104863660046127d6565b611334565b6103326104993660046127ac565b611341565b6103326104ac366004612739565b611521565b6103326104bf36600461281b565b6117b2565b6102106104d23660046126ca565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260086020908152604080832093909416825291909152205490565b6001546102439073ffffffffffffffffffffffffffffffffffffffff1681565b606061056660408051808201909152600f81527f53796e61707365204e6574776f726b0000000000000000000000000000000000602082015290565b905090565b600061057833848461191b565b50600192915050565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260086020908152604080832033845290915281205482811015610647576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81101561068357610683853361067e8685612937565b61191b565b61068e858585611ace565b506001949350505050565b60006105666122b5565b33600081815260086020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168452909152812054909161057891859061067e9086906128a7565b60005473ffffffffffffffffffffffffffffffffffffffff163314610768576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f63616c6c6572206973206e6f7420746865206f776e6572000000000000000000604482015260640161063e565b6001805482151574010000000000000000000000000000000000000000027fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff9091161790556040517ff19da345eb86d7718a0c6e1d1e68d0c70e9fb40e7f54bfaaa1110c5dd5942eaa906107e190831515815260200190565b60405180910390a150565b60015473ffffffffffffffffffffffffffffffffffffffff1633811461086e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f63616c6c657220213d2070656e64696e67206f776e6572000000000000000000604482015260640161063e565b6000805460405173ffffffffffffffffffffffffffffffffffffffff808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a36000805473ffffffffffffffffffffffffffffffffffffffff9092167fffffffffffffffffffffffff0000000000000000000000000000000000000000928316179055600180549091169055565b60005473ffffffffffffffffffffffffffffffffffffffff163314610983576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f63616c6c6572206973206e6f7420746865206f776e6572000000000000000000604482015260640161063e565b600c80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83169081179091556040519081527f687d4ec5e008c38f657c4c867d70f7f6740e4d62907487696ea947ab5b2ed91a906020016107e1565b60005473ffffffffffffffffffffffffffffffffffffffff163314610a77576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f63616c6c6572206973206e6f7420746865206f776e6572000000000000000000604482015260640161063e565b73ffffffffffffffffffffffffffffffffffffffff8216610af4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f5a65726f20616464726573730000000000000000000000000000000000000000604482015260640161063e565b73ffffffffffffffffffffffffffffffffffffffff82166000818152600a602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527ff9c8a5f57610c46ccc680954a15976ee96ac8bd02b829439b8a6a4025876361191015b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff881615801590610bbb575073ffffffffffffffffffffffffffffffffffffffff871615155b610c21576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f45524332305065726d69743a205a65726f206164647265737300000000000000604482015260640161063e565b84421115610c8b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e65000000604482015260640161063e565b73ffffffffffffffffffffffffffffffffffffffff8816600090815260096020526040812080547f42ce63790c28229c123925d83266e77c04d28784552ab68b350a9003226cbd59918b918b918b919086610ce58361294e565b9091555060408051602081019690965273ffffffffffffffffffffffffffffffffffffffff94851690860152929091166060840152608083015260a082015260c0810187905260e0016040516020818303038152906040528051906020012090506000610d51826123a8565b90506000610d6182888888612417565b90508a73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610df8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e61747572650000604482015260640161063e565b610e038b8b8b611ace565b5060019a9950505050505050505050565b60005473ffffffffffffffffffffffffffffffffffffffff163314610e95576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f63616c6c6572206973206e6f7420746865206f776e6572000000000000000000604482015260640161063e565b4260025411610f00576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f50726f74656374696f6e3a20546f206c61746500000000000000000000000000604482015260640161063e565b6002819055610f11816107086128a7565b6003556002546040519081527feb0dd367985442b0f5a817b2cee27fa94416adda70f365044808a6552418fec69060200160405180910390a17f25ae26aca5f366a617b1a046565a1a5aab86756f3d81b81ec1b2574b0015c59f6003546040516107e191815260200190565b60005473ffffffffffffffffffffffffffffffffffffffff163314610ffe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f63616c6c6572206973206e6f7420746865206f776e6572000000000000000000604482015260640161063e565b4260035411611069576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f50726f74656374696f6e3a20546f206c61746500000000000000000000000000604482015260640161063e565b60048190556040518181527ff81e49436a9468d4e5a18ec3a66d9a51fd5eb03de3ddddd43bd85f6ae1b072b3906020016107e1565b606061056660408051808201909152600381527f534e500000000000000000000000000000000000000000000000000000000000602082015290565b60005473ffffffffffffffffffffffffffffffffffffffff16331461115b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f63616c6c6572206973206e6f7420746865206f776e6572000000000000000000604482015260640161063e565b73ffffffffffffffffffffffffffffffffffffffff82166111d8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f5a65726f20616464726573730000000000000000000000000000000000000000604482015260640161063e565b73ffffffffffffffffffffffffffffffffffffffff82166000818152600560205260409081902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055517fc1f37bd5d85be2239236c010011c8837e596c2c28d94d45893872fb5064e75ce90610b7390841515815260200190565b33600090815260086020908152604080832073ffffffffffffffffffffffffffffffffffffffff861684529091528120548281101561131b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f000000000000000000000000000000000000000000000000000000606482015260840161063e565b61132a338561067e8685612937565b5060019392505050565b6000610578338484611ace565b60005473ffffffffffffffffffffffffffffffffffffffff1633146113c2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f63616c6c6572206973206e6f7420746865206f776e6572000000000000000000604482015260640161063e565b80156114db5773ffffffffffffffffffffffffffffffffffffffff8216611445576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f7a65726f20616464726573730000000000000000000000000000000000000000604482015260640161063e565b6000805460405173ffffffffffffffffffffffffffffffffffffffff808616939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a36000805473ffffffffffffffffffffffffffffffffffffffff84167fffffffffffffffffffffffff0000000000000000000000000000000000000000918216179091556001805490911690555050565b6001805473ffffffffffffffffffffffffffffffffffffffff84167fffffffffffffffffffffffff00000000000000000000000000000000000000009091161790555050565b73ffffffffffffffffffffffffffffffffffffffff87166115c4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332305065726d69743a205065726d69742066726f6d207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161063e565b8342111561162e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e65000000604482015260640161063e565b73ffffffffffffffffffffffffffffffffffffffff8716600090815260096020526040812080547f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9918a918a918a9190866116888361294e565b9091555060408051602081019690965273ffffffffffffffffffffffffffffffffffffffff94851690860152929091166060840152608083015260a082015260c0810186905260e00160405160208183030381529060405280519060200120905060006116f4826123a8565b9050600061170482878787612417565b90508973ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461179b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e61747572650000604482015260640161063e565b6117a68a8a8a61191b565b50505050505050505050565b60005473ffffffffffffffffffffffffffffffffffffffff163314611833576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f63616c6c6572206973206e6f7420746865206f776e6572000000000000000000604482015260640161063e565b6103e881111561189f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f466565206973206f757473696465206f662072616e676520302d313030300000604482015260640161063e565b600b8190556040518181527fe396b37908dcee506ba44e86c1f6cc8bddf91651189816a834568b4f54901f57906020016107e1565b60408051808201909152600f81527f53796e61707365204e6574776f726b0000000000000000000000000000000000602082015290565b6b019d971e4fe8401e7400000090565b73ffffffffffffffffffffffffffffffffffffffff83166119bd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161063e565b73ffffffffffffffffffffffffffffffffffffffff8216611a60576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015260840161063e565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526008602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b828282426002541115611b895760005473ffffffffffffffffffffffffffffffffffffffff84811691161480611b1e575060005473ffffffffffffffffffffffffffffffffffffffff8381169116145b611b84576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f50726f74656374696f6e3a205472616e73666572732064697361626c65640000604482015260640161063e565b611e14565b60015474010000000000000000000000000000000000000000900460ff1615611e14576000426003541115611c2c57600454821115611c24576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f50726f74656374696f6e3a204c696d6974206578636565646564000000000000604482015260640161063e565b50603c611c30565b50601e5b73ffffffffffffffffffffffffffffffffffffffff831660009081526005602052604090205460ff16611d215773ffffffffffffffffffffffffffffffffffffffff83166000908152600660205260409020544290611c909083906128a7565b1115611cf8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f50726f74656374696f6e3a20312074782f6d696e20616c6c6f77656400000000604482015260640161063e565b73ffffffffffffffffffffffffffffffffffffffff831660009081526006602052604090204290555b73ffffffffffffffffffffffffffffffffffffffff841660009081526005602052604090205460ff16611e125773ffffffffffffffffffffffffffffffffffffffff84166000908152600660205260409020544290611d819083906128a7565b1115611de9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f50726f74656374696f6e3a20312074782f6d696e20616c6c6f77656400000000604482015260640161063e565b73ffffffffffffffffffffffffffffffffffffffff841660009081526006602052604090204290555b505b73ffffffffffffffffffffffffffffffffffffffff8616611eb7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161063e565b73ffffffffffffffffffffffffffffffffffffffff8516611f5a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015260840161063e565b60008411611fc4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f5472616e7366657220616d6f756e742069732030000000000000000000000000604482015260640161063e565b73ffffffffffffffffffffffffffffffffffffffff8616600090815260076020526040902054841115612079576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e63650000000000000000000000000000000000000000000000000000606482015260840161063e565b600c5460009073ffffffffffffffffffffffffffffffffffffffff16158015906120a557506000600b54115b80156120d7575073ffffffffffffffffffffffffffffffffffffffff87166000908152600a602052604090205460ff16155b8015612109575073ffffffffffffffffffffffffffffffffffffffff86166000908152600a602052604090205460ff16155b156121bd57612710600b548661211f91906128fa565b61212991906128bf565b600c5473ffffffffffffffffffffffffffffffffffffffff166000908152600760205260408120805492935083929091906121659084906128a7565b9091555050600c5460405182815273ffffffffffffffffffffffffffffffffffffffff918216918916907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35b60006121c98287612937565b73ffffffffffffffffffffffffffffffffffffffff8916600090815260076020526040812080549293508892909190612203908490612937565b909155505073ffffffffffffffffffffffffffffffffffffffff87166000908152600760205260408120805483929061223d9084906128a7565b925050819055508673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516122a391815260200190565b60405180910390a35050505050505050565b60007f000000000000000000000000000000000000000000000000000000000000000046141561230457507f000000000000000000000000000000000000000000000000000000000000000090565b50604080517f00000000000000000000000000000000000000000000000000000000000000006020808301919091527f0000000000000000000000000000000000000000000000000000000000000000828401527f000000000000000000000000000000000000000000000000000000000000000060608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012090565b60006124116123b56122b5565b836040517f19010000000000000000000000000000000000000000000000000000000000006020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b92915050565b60007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08211156124c9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60448201527f7565000000000000000000000000000000000000000000000000000000000000606482015260840161063e565b8360ff16601b14806124de57508360ff16601c145b61256a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c60448201527f7565000000000000000000000000000000000000000000000000000000000000606482015260840161063e565b6040805160008082526020820180845288905260ff871692820192909252606081018590526080810184905260019060a0016020604051602081039080840390855afa1580156125be573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff8116612666576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604482015260640161063e565b95945050505050565b803573ffffffffffffffffffffffffffffffffffffffff8116811461269357600080fd5b919050565b8035801515811461269357600080fd5b6000602082840312156126ba57600080fd5b6126c38261266f565b9392505050565b600080604083850312156126dd57600080fd5b6126e68361266f565b91506126f46020840161266f565b90509250929050565b60008060006060848603121561271257600080fd5b61271b8461266f565b92506127296020850161266f565b9150604084013590509250925092565b600080600080600080600060e0888a03121561275457600080fd5b61275d8861266f565b965061276b6020890161266f565b95506040880135945060608801359350608088013560ff8116811461278f57600080fd5b9699959850939692959460a0840135945060c09093013592915050565b600080604083850312156127bf57600080fd5b6127c88361266f565b91506126f460208401612698565b600080604083850312156127e957600080fd5b6127f28361266f565b946020939093013593505050565b60006020828403121561281257600080fd5b6126c382612698565b60006020828403121561282d57600080fd5b5035919050565b600060208083528351808285015260005b8181101561286157858101830151858201604001528201612845565b81811115612873576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b600082198211156128ba576128ba612987565b500190565b6000826128f5577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561293257612932612987565b500290565b60008282101561294957612949612987565b500390565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561298057612980612987565b5060010190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fdfea2646970667358221220be8cc3e2cae14b43bca69a25d5cd346e5a6fa5e9e09c9c84dbb01b9ebbf3ab9b64736f6c634300080600330000000000000000000000006471ec553527eaec9b717dd8b6ca3cef6596e2cb

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101e45760003560e01c8063590ffdce1161010f57806399c8df18116100a2578063d505accf11610071578063d505accf1461049e578063da403903146104b1578063dd62ed3e146104c4578063e30c39781461050a57600080fd5b806399c8df1814610452578063a457c2d714610465578063a9059cbb14610478578063b242e5341461048b57600080fd5b80637ecebe00116100de5780637ecebe00146103f75780638bf55409146104175780638da5cb5b1461042a57806395d89b411461044a57600080fd5b8063590ffdce14610388578063605629d61461039b57806370a08231146103ae5780637419683c146103e457600080fd5b806330adf81f116101875780634af640d1116101565780634af640d11461031f5780634e71e0c8146103345780634fbee1931461033c5780635787b1421461037557600080fd5b806330adf81f146102ce578063313ce567146102f55780633644e51514610304578063395093511461030c57600080fd5b8063095ea7b3116101c3578063095ea7b31461027d57806318160ddd146102a0578063183767da146102b257806323b872dd146102bb57600080fd5b8062bf26f4146101e957806306e297121461022357806306fdde0314610268575b600080fd5b6102107f42ce63790c28229c123925d83266e77c04d28784552ab68b350a9003226cbd5981565b6040519081526020015b60405180910390f35b600c546102439073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161021a565b61027061052a565b60405161021a9190612834565b61029061028b3660046127d6565b61056b565b604051901515815260200161021a565b6b019d971e4fe8401e74000000610210565b610210600b5481565b6102906102c93660046126fd565b610581565b6102107f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b6040516012815260200161021a565b610210610699565b61029061031a3660046127d6565b6106a3565b61033261032d366004612800565b6106e7565b005b6103326107ec565b61029061034a3660046126a8565b73ffffffffffffffffffffffffffffffffffffffff166000908152600a602052604090205460ff1690565b6103326103833660046126a8565b610902565b6103326103963660046127ac565b6109f6565b6102906103a9366004612739565b610b7f565b6102106103bc3660046126a8565b73ffffffffffffffffffffffffffffffffffffffff1660009081526007602052604090205490565b6103326103f236600461281b565b610e14565b6102106104053660046126a8565b60096020526000908152604090205481565b61033261042536600461281b565b610f7d565b6000546102439073ffffffffffffffffffffffffffffffffffffffff1681565b61027061109e565b6103326104603660046127ac565b6110da565b6102906104733660046127d6565b61125a565b6102906104863660046127d6565b611334565b6103326104993660046127ac565b611341565b6103326104ac366004612739565b611521565b6103326104bf36600461281b565b6117b2565b6102106104d23660046126ca565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260086020908152604080832093909416825291909152205490565b6001546102439073ffffffffffffffffffffffffffffffffffffffff1681565b606061056660408051808201909152600f81527f53796e61707365204e6574776f726b0000000000000000000000000000000000602082015290565b905090565b600061057833848461191b565b50600192915050565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260086020908152604080832033845290915281205482811015610647576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81101561068357610683853361067e8685612937565b61191b565b61068e858585611ace565b506001949350505050565b60006105666122b5565b33600081815260086020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168452909152812054909161057891859061067e9086906128a7565b60005473ffffffffffffffffffffffffffffffffffffffff163314610768576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f63616c6c6572206973206e6f7420746865206f776e6572000000000000000000604482015260640161063e565b6001805482151574010000000000000000000000000000000000000000027fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff9091161790556040517ff19da345eb86d7718a0c6e1d1e68d0c70e9fb40e7f54bfaaa1110c5dd5942eaa906107e190831515815260200190565b60405180910390a150565b60015473ffffffffffffffffffffffffffffffffffffffff1633811461086e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f63616c6c657220213d2070656e64696e67206f776e6572000000000000000000604482015260640161063e565b6000805460405173ffffffffffffffffffffffffffffffffffffffff808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a36000805473ffffffffffffffffffffffffffffffffffffffff9092167fffffffffffffffffffffffff0000000000000000000000000000000000000000928316179055600180549091169055565b60005473ffffffffffffffffffffffffffffffffffffffff163314610983576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f63616c6c6572206973206e6f7420746865206f776e6572000000000000000000604482015260640161063e565b600c80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83169081179091556040519081527f687d4ec5e008c38f657c4c867d70f7f6740e4d62907487696ea947ab5b2ed91a906020016107e1565b60005473ffffffffffffffffffffffffffffffffffffffff163314610a77576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f63616c6c6572206973206e6f7420746865206f776e6572000000000000000000604482015260640161063e565b73ffffffffffffffffffffffffffffffffffffffff8216610af4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f5a65726f20616464726573730000000000000000000000000000000000000000604482015260640161063e565b73ffffffffffffffffffffffffffffffffffffffff82166000818152600a602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527ff9c8a5f57610c46ccc680954a15976ee96ac8bd02b829439b8a6a4025876361191015b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff881615801590610bbb575073ffffffffffffffffffffffffffffffffffffffff871615155b610c21576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f45524332305065726d69743a205a65726f206164647265737300000000000000604482015260640161063e565b84421115610c8b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e65000000604482015260640161063e565b73ffffffffffffffffffffffffffffffffffffffff8816600090815260096020526040812080547f42ce63790c28229c123925d83266e77c04d28784552ab68b350a9003226cbd59918b918b918b919086610ce58361294e565b9091555060408051602081019690965273ffffffffffffffffffffffffffffffffffffffff94851690860152929091166060840152608083015260a082015260c0810187905260e0016040516020818303038152906040528051906020012090506000610d51826123a8565b90506000610d6182888888612417565b90508a73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610df8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e61747572650000604482015260640161063e565b610e038b8b8b611ace565b5060019a9950505050505050505050565b60005473ffffffffffffffffffffffffffffffffffffffff163314610e95576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f63616c6c6572206973206e6f7420746865206f776e6572000000000000000000604482015260640161063e565b4260025411610f00576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f50726f74656374696f6e3a20546f206c61746500000000000000000000000000604482015260640161063e565b6002819055610f11816107086128a7565b6003556002546040519081527feb0dd367985442b0f5a817b2cee27fa94416adda70f365044808a6552418fec69060200160405180910390a17f25ae26aca5f366a617b1a046565a1a5aab86756f3d81b81ec1b2574b0015c59f6003546040516107e191815260200190565b60005473ffffffffffffffffffffffffffffffffffffffff163314610ffe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f63616c6c6572206973206e6f7420746865206f776e6572000000000000000000604482015260640161063e565b4260035411611069576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f50726f74656374696f6e3a20546f206c61746500000000000000000000000000604482015260640161063e565b60048190556040518181527ff81e49436a9468d4e5a18ec3a66d9a51fd5eb03de3ddddd43bd85f6ae1b072b3906020016107e1565b606061056660408051808201909152600381527f534e500000000000000000000000000000000000000000000000000000000000602082015290565b60005473ffffffffffffffffffffffffffffffffffffffff16331461115b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f63616c6c6572206973206e6f7420746865206f776e6572000000000000000000604482015260640161063e565b73ffffffffffffffffffffffffffffffffffffffff82166111d8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f5a65726f20616464726573730000000000000000000000000000000000000000604482015260640161063e565b73ffffffffffffffffffffffffffffffffffffffff82166000818152600560205260409081902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055517fc1f37bd5d85be2239236c010011c8837e596c2c28d94d45893872fb5064e75ce90610b7390841515815260200190565b33600090815260086020908152604080832073ffffffffffffffffffffffffffffffffffffffff861684529091528120548281101561131b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f000000000000000000000000000000000000000000000000000000606482015260840161063e565b61132a338561067e8685612937565b5060019392505050565b6000610578338484611ace565b60005473ffffffffffffffffffffffffffffffffffffffff1633146113c2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f63616c6c6572206973206e6f7420746865206f776e6572000000000000000000604482015260640161063e565b80156114db5773ffffffffffffffffffffffffffffffffffffffff8216611445576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f7a65726f20616464726573730000000000000000000000000000000000000000604482015260640161063e565b6000805460405173ffffffffffffffffffffffffffffffffffffffff808616939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a36000805473ffffffffffffffffffffffffffffffffffffffff84167fffffffffffffffffffffffff0000000000000000000000000000000000000000918216179091556001805490911690555050565b6001805473ffffffffffffffffffffffffffffffffffffffff84167fffffffffffffffffffffffff00000000000000000000000000000000000000009091161790555050565b73ffffffffffffffffffffffffffffffffffffffff87166115c4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332305065726d69743a205065726d69742066726f6d207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161063e565b8342111561162e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e65000000604482015260640161063e565b73ffffffffffffffffffffffffffffffffffffffff8716600090815260096020526040812080547f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9918a918a918a9190866116888361294e565b9091555060408051602081019690965273ffffffffffffffffffffffffffffffffffffffff94851690860152929091166060840152608083015260a082015260c0810186905260e00160405160208183030381529060405280519060200120905060006116f4826123a8565b9050600061170482878787612417565b90508973ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461179b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e61747572650000604482015260640161063e565b6117a68a8a8a61191b565b50505050505050505050565b60005473ffffffffffffffffffffffffffffffffffffffff163314611833576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f63616c6c6572206973206e6f7420746865206f776e6572000000000000000000604482015260640161063e565b6103e881111561189f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f466565206973206f757473696465206f662072616e676520302d313030300000604482015260640161063e565b600b8190556040518181527fe396b37908dcee506ba44e86c1f6cc8bddf91651189816a834568b4f54901f57906020016107e1565b60408051808201909152600f81527f53796e61707365204e6574776f726b0000000000000000000000000000000000602082015290565b6b019d971e4fe8401e7400000090565b73ffffffffffffffffffffffffffffffffffffffff83166119bd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161063e565b73ffffffffffffffffffffffffffffffffffffffff8216611a60576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015260840161063e565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526008602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b828282426002541115611b895760005473ffffffffffffffffffffffffffffffffffffffff84811691161480611b1e575060005473ffffffffffffffffffffffffffffffffffffffff8381169116145b611b84576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f50726f74656374696f6e3a205472616e73666572732064697361626c65640000604482015260640161063e565b611e14565b60015474010000000000000000000000000000000000000000900460ff1615611e14576000426003541115611c2c57600454821115611c24576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f50726f74656374696f6e3a204c696d6974206578636565646564000000000000604482015260640161063e565b50603c611c30565b50601e5b73ffffffffffffffffffffffffffffffffffffffff831660009081526005602052604090205460ff16611d215773ffffffffffffffffffffffffffffffffffffffff83166000908152600660205260409020544290611c909083906128a7565b1115611cf8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f50726f74656374696f6e3a20312074782f6d696e20616c6c6f77656400000000604482015260640161063e565b73ffffffffffffffffffffffffffffffffffffffff831660009081526006602052604090204290555b73ffffffffffffffffffffffffffffffffffffffff841660009081526005602052604090205460ff16611e125773ffffffffffffffffffffffffffffffffffffffff84166000908152600660205260409020544290611d819083906128a7565b1115611de9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f50726f74656374696f6e3a20312074782f6d696e20616c6c6f77656400000000604482015260640161063e565b73ffffffffffffffffffffffffffffffffffffffff841660009081526006602052604090204290555b505b73ffffffffffffffffffffffffffffffffffffffff8616611eb7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161063e565b73ffffffffffffffffffffffffffffffffffffffff8516611f5a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015260840161063e565b60008411611fc4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f5472616e7366657220616d6f756e742069732030000000000000000000000000604482015260640161063e565b73ffffffffffffffffffffffffffffffffffffffff8616600090815260076020526040902054841115612079576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e63650000000000000000000000000000000000000000000000000000606482015260840161063e565b600c5460009073ffffffffffffffffffffffffffffffffffffffff16158015906120a557506000600b54115b80156120d7575073ffffffffffffffffffffffffffffffffffffffff87166000908152600a602052604090205460ff16155b8015612109575073ffffffffffffffffffffffffffffffffffffffff86166000908152600a602052604090205460ff16155b156121bd57612710600b548661211f91906128fa565b61212991906128bf565b600c5473ffffffffffffffffffffffffffffffffffffffff166000908152600760205260408120805492935083929091906121659084906128a7565b9091555050600c5460405182815273ffffffffffffffffffffffffffffffffffffffff918216918916907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35b60006121c98287612937565b73ffffffffffffffffffffffffffffffffffffffff8916600090815260076020526040812080549293508892909190612203908490612937565b909155505073ffffffffffffffffffffffffffffffffffffffff87166000908152600760205260408120805483929061223d9084906128a7565b925050819055508673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516122a391815260200190565b60405180910390a35050505050505050565b60007f000000000000000000000000000000000000000000000000000000000000000146141561230457507f7050a071dd403ffd45d0899cac6ff7bb8a0282c00fe5f68f5c40b791fc4378d790565b50604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6020808301919091527fc860b82e6700404d6a21da8d370df0121fcab77f3d630a34d819822be0646608828401527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012090565b60006124116123b56122b5565b836040517f19010000000000000000000000000000000000000000000000000000000000006020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b92915050565b60007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08211156124c9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60448201527f7565000000000000000000000000000000000000000000000000000000000000606482015260840161063e565b8360ff16601b14806124de57508360ff16601c145b61256a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c60448201527f7565000000000000000000000000000000000000000000000000000000000000606482015260840161063e565b6040805160008082526020820180845288905260ff871692820192909252606081018590526080810184905260019060a0016020604051602081039080840390855afa1580156125be573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff8116612666576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604482015260640161063e565b95945050505050565b803573ffffffffffffffffffffffffffffffffffffffff8116811461269357600080fd5b919050565b8035801515811461269357600080fd5b6000602082840312156126ba57600080fd5b6126c38261266f565b9392505050565b600080604083850312156126dd57600080fd5b6126e68361266f565b91506126f46020840161266f565b90509250929050565b60008060006060848603121561271257600080fd5b61271b8461266f565b92506127296020850161266f565b9150604084013590509250925092565b600080600080600080600060e0888a03121561275457600080fd5b61275d8861266f565b965061276b6020890161266f565b95506040880135945060608801359350608088013560ff8116811461278f57600080fd5b9699959850939692959460a0840135945060c09093013592915050565b600080604083850312156127bf57600080fd5b6127c88361266f565b91506126f460208401612698565b600080604083850312156127e957600080fd5b6127f28361266f565b946020939093013593505050565b60006020828403121561281257600080fd5b6126c382612698565b60006020828403121561282d57600080fd5b5035919050565b600060208083528351808285015260005b8181101561286157858101830151858201604001528201612845565b81811115612873576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b600082198211156128ba576128ba612987565b500190565b6000826128f5577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561293257612932612987565b500290565b60008282101561294957612949612987565b500390565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561298057612980612987565b5060010190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fdfea2646970667358221220be8cc3e2cae14b43bca69a25d5cd346e5a6fa5e9e09c9c84dbb01b9ebbf3ab9b64736f6c63430008060033

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

0000000000000000000000006471ec553527eaec9b717dd8b6ca3cef6596e2cb

-----Decoded View---------------
Arg [0] : _admin (address): 0x6471eC553527eaeC9b717DD8B6CA3CEf6596e2CB

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000006471ec553527eaec9b717dd8b6ca3cef6596e2cb


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.