false
true
0

Contract Address Details

0x386c36961149Ff797FA71F8C830D130bBE69F1B6

Token
Richard's Top Hat 🎩 (RTH)
Creator
0x284a3f–cbe55f at 0xf683b7–350ba8
Balance
0 PLS ( )
Tokens
Fetching tokens...
Transactions
243 Transactions
Transfers
0 Transfers
Gas Used
0
Last Balance Update
26216023
Warning! Contract bytecode has been changed and doesn't match the verified one. Therefore, interaction with this smart contract may be risky.
Contract name:
RichardsTopHat




Optimization enabled
false
Compiler version
v0.8.20+commit.a1b79de6




EVM Version
default




Verified at
2024-02-04T02:26:34.077462Z

Constructor Arguments

0x00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000001652696368617264277320546f702048617420f09f8ea90000000000000000000000000000000000000000000000000000000000000000000000000000000000035254480000000000000000000000000000000000000000000000000000000000

Arg [0] (string) : Richard's Top Hat 🎩
Arg [1] (string) : RTH

              

Contract source code

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.0.0/contracts/utils/Context.sol



pragma solidity ^0.8.0;

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.0.0/contracts/token/ERC20/IERC20.sol



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.0.0/contracts/token/ERC20/ERC20.sol



pragma solidity ^0.8.0;



/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
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;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The defaut value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

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

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

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

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) 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;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        _approve(_msgSender(), spender, currentAllowance - subtractedValue);

        return true;
    }

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

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal 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);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "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);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal 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);
    }

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

// File: contracts/SampleERC20.sol


pragma solidity ^0.8.20;


contract RichardsTopHat is ERC20 {
    constructor(string memory name, string memory symbol) ERC20(name, symbol) {
        _mint(msg.sender, 13371337 * 10 ** uint(decimals()));
    }
}
        

Contract ABI

[{"type":"constructor","stateMutability":"nonpayable","inputs":[{"type":"string","name":"name","internalType":"string"},{"type":"string","name":"symbol","internalType":"string"}]},{"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":"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":"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":"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":"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":"string","name":"","internalType":"string"}],"name":"name","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":"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"}]}]
              

Contract Creation Code

Verify & Publish
0x608060405234801562000010575f80fd5b5060405162001d7f38038062001d7f833981810160405281019062000036919062000397565b8181816003908162000049919062000651565b5080600490816200005b919062000651565b505050620000a03362000073620000a860201b60201c565b60ff16600a620000849190620008b2565b62cc07c962000094919062000902565b620000b060201b60201c565b505062000a30565b5f6012905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000121576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200011890620009aa565b60405180910390fd5b620001345f83836200020d60201b60201c565b8060025f828254620001479190620009ca565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546200019b9190620009ca565b925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000201919062000a15565b60405180910390a35050565b505050565b5f604051905090565b5f80fd5b5f80fd5b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b62000273826200022b565b810181811067ffffffffffffffff821117156200029557620002946200023b565b5b80604052505050565b5f620002a962000212565b9050620002b7828262000268565b919050565b5f67ffffffffffffffff821115620002d957620002d86200023b565b5b620002e4826200022b565b9050602081019050919050565b5f5b8381101562000310578082015181840152602081019050620002f3565b5f8484015250505050565b5f620003316200032b84620002bc565b6200029e565b90508281526020810184848401111562000350576200034f62000227565b5b6200035d848285620002f1565b509392505050565b5f82601f8301126200037c576200037b62000223565b5b81516200038e8482602086016200031b565b91505092915050565b5f8060408385031215620003b057620003af6200021b565b5b5f83015167ffffffffffffffff811115620003d057620003cf6200021f565b5b620003de8582860162000365565b925050602083015167ffffffffffffffff8111156200040257620004016200021f565b5b620004108582860162000365565b9150509250929050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200046957607f821691505b6020821081036200047f576200047e62000424565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620004e37fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620004a6565b620004ef8683620004a6565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f62000539620005336200052d8462000507565b62000510565b62000507565b9050919050565b5f819050919050565b620005548362000519565b6200056c620005638262000540565b848454620004b2565b825550505050565b5f90565b6200058262000574565b6200058f81848462000549565b505050565b5b81811015620005b657620005aa5f8262000578565b60018101905062000595565b5050565b601f8211156200060557620005cf8162000485565b620005da8462000497565b81016020851015620005ea578190505b62000602620005f98562000497565b83018262000594565b50505b505050565b5f82821c905092915050565b5f620006275f19846008026200060a565b1980831691505092915050565b5f62000641838362000616565b9150826002028217905092915050565b6200065c826200041a565b67ffffffffffffffff8111156200067857620006776200023b565b5b62000684825462000451565b62000691828285620005ba565b5f60209050601f831160018114620006c7575f8415620006b2578287015190505b620006be858262000634565b8655506200072d565b601f198416620006d78662000485565b5f5b828110156200070057848901518255600182019150602085019450602081019050620006d9565b868310156200072057848901516200071c601f89168262000616565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b6001851115620007bf5780860481111562000797576200079662000735565b5b6001851615620007a75780820291505b8081029050620007b78562000762565b945062000777565b94509492505050565b5f82620007d95760019050620008ab565b81620007e8575f9050620008ab565b81600181146200080157600281146200080c5762000842565b6001915050620008ab565b60ff84111562000821576200082062000735565b5b8360020a9150848211156200083b576200083a62000735565b5b50620008ab565b5060208310610133831016604e8410600b84101617156200087c5782820a90508381111562000876576200087562000735565b5b620008ab565b6200088b84848460016200076e565b92509050818404811115620008a557620008a462000735565b5b81810290505b9392505050565b5f620008be8262000507565b9150620008cb8362000507565b9250620008fa7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620007c8565b905092915050565b5f6200090e8262000507565b91506200091b8362000507565b92508282026200092b8162000507565b9150828204841483151762000945576200094462000735565b5b5092915050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62000992601f836200094c565b91506200099f826200095c565b602082019050919050565b5f6020820190508181035f830152620009c38162000984565b9050919050565b5f620009d68262000507565b9150620009e38362000507565b9250828201905080821115620009fe57620009fd62000735565b5b92915050565b62000a0f8162000507565b82525050565b5f60208201905062000a2a5f83018462000a04565b92915050565b6113418062000a3e5f395ff3fe608060405234801561000f575f80fd5b50600436106100a7575f3560e01c8063395093511161006f578063395093511461016557806370a082311461019557806395d89b41146101c5578063a457c2d7146101e3578063a9059cbb14610213578063dd62ed3e14610243576100a7565b806306fdde03146100ab578063095ea7b3146100c957806318160ddd146100f957806323b872dd14610117578063313ce56714610147575b5f80fd5b6100b3610273565b6040516100c09190610c02565b60405180910390f35b6100e360048036038101906100de9190610cb3565b610303565b6040516100f09190610d0b565b60405180910390f35b610101610320565b60405161010e9190610d33565b60405180910390f35b610131600480360381019061012c9190610d4c565b610329565b60405161013e9190610d0b565b60405180910390f35b61014f610424565b60405161015c9190610db7565b60405180910390f35b61017f600480360381019061017a9190610cb3565b61042c565b60405161018c9190610d0b565b60405180910390f35b6101af60048036038101906101aa9190610dd0565b6104d3565b6040516101bc9190610d33565b60405180910390f35b6101cd610518565b6040516101da9190610c02565b60405180910390f35b6101fd60048036038101906101f89190610cb3565b6105a8565b60405161020a9190610d0b565b60405180910390f35b61022d60048036038101906102289190610cb3565b610697565b60405161023a9190610d0b565b60405180910390f35b61025d60048036038101906102589190610dfb565b6106b4565b60405161026a9190610d33565b60405180910390f35b60606003805461028290610e66565b80601f01602080910402602001604051908101604052809291908181526020018280546102ae90610e66565b80156102f95780601f106102d0576101008083540402835291602001916102f9565b820191905f5260205f20905b8154815290600101906020018083116102dc57829003601f168201915b5050505050905090565b5f61031661030f610736565b848461073d565b6001905092915050565b5f600254905090565b5f610335848484610900565b5f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f61037c610736565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050828110156103fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103f290610f06565b60405180910390fd5b61041885610407610736565b85846104139190610f51565b61073d565b60019150509392505050565b5f6012905090565b5f6104c9610438610736565b848460015f610445610736565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546104c49190610f84565b61073d565b6001905092915050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b60606004805461052790610e66565b80601f016020809104026020016040519081016040528092919081815260200182805461055390610e66565b801561059e5780601f106105755761010080835404028352916020019161059e565b820191905f5260205f20905b81548152906001019060200180831161058157829003601f168201915b5050505050905090565b5f8060015f6105b5610736565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508281101561066f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066690611027565b60405180910390fd5b61068c61067a610736565b8585846106879190610f51565b61073d565b600191505092915050565b5f6106aa6106a3610736565b8484610900565b6001905092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a2906110b5565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610819576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081090611143565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516108f39190610d33565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361096e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610965906111d1565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d39061125f565b60405180910390fd5b6109e7838383610b73565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610a6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a61906112ed565b60405180910390fd5b8181610a769190610f51565b5f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610b019190610f84565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610b659190610d33565b60405180910390a350505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610baf578082015181840152602081019050610b94565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610bd482610b78565b610bde8185610b82565b9350610bee818560208601610b92565b610bf781610bba565b840191505092915050565b5f6020820190508181035f830152610c1a8184610bca565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610c4f82610c26565b9050919050565b610c5f81610c45565b8114610c69575f80fd5b50565b5f81359050610c7a81610c56565b92915050565b5f819050919050565b610c9281610c80565b8114610c9c575f80fd5b50565b5f81359050610cad81610c89565b92915050565b5f8060408385031215610cc957610cc8610c22565b5b5f610cd685828601610c6c565b9250506020610ce785828601610c9f565b9150509250929050565b5f8115159050919050565b610d0581610cf1565b82525050565b5f602082019050610d1e5f830184610cfc565b92915050565b610d2d81610c80565b82525050565b5f602082019050610d465f830184610d24565b92915050565b5f805f60608486031215610d6357610d62610c22565b5b5f610d7086828701610c6c565b9350506020610d8186828701610c6c565b9250506040610d9286828701610c9f565b9150509250925092565b5f60ff82169050919050565b610db181610d9c565b82525050565b5f602082019050610dca5f830184610da8565b92915050565b5f60208284031215610de557610de4610c22565b5b5f610df284828501610c6c565b91505092915050565b5f8060408385031215610e1157610e10610c22565b5b5f610e1e85828601610c6c565b9250506020610e2f85828601610c6c565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680610e7d57607f821691505b602082108103610e9057610e8f610e39565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f610ef0602883610b82565b9150610efb82610e96565b604082019050919050565b5f6020820190508181035f830152610f1d81610ee4565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f610f5b82610c80565b9150610f6683610c80565b9250828203905081811115610f7e57610f7d610f24565b5b92915050565b5f610f8e82610c80565b9150610f9983610c80565b9250828201905080821115610fb157610fb0610f24565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f611011602583610b82565b915061101c82610fb7565b604082019050919050565b5f6020820190508181035f83015261103e81611005565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f61109f602483610b82565b91506110aa82611045565b604082019050919050565b5f6020820190508181035f8301526110cc81611093565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f61112d602283610b82565b9150611138826110d3565b604082019050919050565b5f6020820190508181035f83015261115a81611121565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6111bb602583610b82565b91506111c682611161565b604082019050919050565b5f6020820190508181035f8301526111e8816111af565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611249602383610b82565b9150611254826111ef565b604082019050919050565b5f6020820190508181035f8301526112768161123d565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6112d7602683610b82565b91506112e28261127d565b604082019050919050565b5f6020820190508181035f830152611304816112cb565b905091905056fea264697066735822122078327ca4b79cf209071da767676c2c1de57693c31721b484b25c71546e2c9dbf64736f6c6343000814003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000001652696368617264277320546f702048617420f09f8ea90000000000000000000000000000000000000000000000000000000000000000000000000000000000035254480000000000000000000000000000000000000000000000000000000000

Deployed ByteCode

0x608060405234801561000f575f80fd5b50600436106100a7575f3560e01c8063395093511161006f578063395093511461016557806370a082311461019557806395d89b41146101c5578063a457c2d7146101e3578063a9059cbb14610213578063dd62ed3e14610243576100a7565b806306fdde03146100ab578063095ea7b3146100c957806318160ddd146100f957806323b872dd14610117578063313ce56714610147575b5f80fd5b6100b3610273565b6040516100c09190610c02565b60405180910390f35b6100e360048036038101906100de9190610cb3565b610303565b6040516100f09190610d0b565b60405180910390f35b610101610320565b60405161010e9190610d33565b60405180910390f35b610131600480360381019061012c9190610d4c565b610329565b60405161013e9190610d0b565b60405180910390f35b61014f610424565b60405161015c9190610db7565b60405180910390f35b61017f600480360381019061017a9190610cb3565b61042c565b60405161018c9190610d0b565b60405180910390f35b6101af60048036038101906101aa9190610dd0565b6104d3565b6040516101bc9190610d33565b60405180910390f35b6101cd610518565b6040516101da9190610c02565b60405180910390f35b6101fd60048036038101906101f89190610cb3565b6105a8565b60405161020a9190610d0b565b60405180910390f35b61022d60048036038101906102289190610cb3565b610697565b60405161023a9190610d0b565b60405180910390f35b61025d60048036038101906102589190610dfb565b6106b4565b60405161026a9190610d33565b60405180910390f35b60606003805461028290610e66565b80601f01602080910402602001604051908101604052809291908181526020018280546102ae90610e66565b80156102f95780601f106102d0576101008083540402835291602001916102f9565b820191905f5260205f20905b8154815290600101906020018083116102dc57829003601f168201915b5050505050905090565b5f61031661030f610736565b848461073d565b6001905092915050565b5f600254905090565b5f610335848484610900565b5f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f61037c610736565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050828110156103fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103f290610f06565b60405180910390fd5b61041885610407610736565b85846104139190610f51565b61073d565b60019150509392505050565b5f6012905090565b5f6104c9610438610736565b848460015f610445610736565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546104c49190610f84565b61073d565b6001905092915050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b60606004805461052790610e66565b80601f016020809104026020016040519081016040528092919081815260200182805461055390610e66565b801561059e5780601f106105755761010080835404028352916020019161059e565b820191905f5260205f20905b81548152906001019060200180831161058157829003601f168201915b5050505050905090565b5f8060015f6105b5610736565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508281101561066f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066690611027565b60405180910390fd5b61068c61067a610736565b8585846106879190610f51565b61073d565b600191505092915050565b5f6106aa6106a3610736565b8484610900565b6001905092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a2906110b5565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610819576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081090611143565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516108f39190610d33565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361096e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610965906111d1565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d39061125f565b60405180910390fd5b6109e7838383610b73565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610a6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a61906112ed565b60405180910390fd5b8181610a769190610f51565b5f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610b019190610f84565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610b659190610d33565b60405180910390a350505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610baf578082015181840152602081019050610b94565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610bd482610b78565b610bde8185610b82565b9350610bee818560208601610b92565b610bf781610bba565b840191505092915050565b5f6020820190508181035f830152610c1a8184610bca565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610c4f82610c26565b9050919050565b610c5f81610c45565b8114610c69575f80fd5b50565b5f81359050610c7a81610c56565b92915050565b5f819050919050565b610c9281610c80565b8114610c9c575f80fd5b50565b5f81359050610cad81610c89565b92915050565b5f8060408385031215610cc957610cc8610c22565b5b5f610cd685828601610c6c565b9250506020610ce785828601610c9f565b9150509250929050565b5f8115159050919050565b610d0581610cf1565b82525050565b5f602082019050610d1e5f830184610cfc565b92915050565b610d2d81610c80565b82525050565b5f602082019050610d465f830184610d24565b92915050565b5f805f60608486031215610d6357610d62610c22565b5b5f610d7086828701610c6c565b9350506020610d8186828701610c6c565b9250506040610d9286828701610c9f565b9150509250925092565b5f60ff82169050919050565b610db181610d9c565b82525050565b5f602082019050610dca5f830184610da8565b92915050565b5f60208284031215610de557610de4610c22565b5b5f610df284828501610c6c565b91505092915050565b5f8060408385031215610e1157610e10610c22565b5b5f610e1e85828601610c6c565b9250506020610e2f85828601610c6c565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680610e7d57607f821691505b602082108103610e9057610e8f610e39565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f610ef0602883610b82565b9150610efb82610e96565b604082019050919050565b5f6020820190508181035f830152610f1d81610ee4565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f610f5b82610c80565b9150610f6683610c80565b9250828203905081811115610f7e57610f7d610f24565b5b92915050565b5f610f8e82610c80565b9150610f9983610c80565b9250828201905080821115610fb157610fb0610f24565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f611011602583610b82565b915061101c82610fb7565b604082019050919050565b5f6020820190508181035f83015261103e81611005565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f61109f602483610b82565b91506110aa82611045565b604082019050919050565b5f6020820190508181035f8301526110cc81611093565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f61112d602283610b82565b9150611138826110d3565b604082019050919050565b5f6020820190508181035f83015261115a81611121565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6111bb602583610b82565b91506111c682611161565b604082019050919050565b5f6020820190508181035f8301526111e8816111af565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611249602383610b82565b9150611254826111ef565b604082019050919050565b5f6020820190508181035f8301526112768161123d565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6112d7602683610b82565b91506112e28261127d565b604082019050919050565b5f6020820190508181035f830152611304816112cb565b905091905056fea264697066735822122078327ca4b79cf209071da767676c2c1de57693c31721b484b25c71546e2c9dbf64736f6c63430008140033