Feature Tip: Add private address tag to any address under My Name Tag !
Overview
Max Total Supply
23,127.1995974013713 MEME
Holders
669 (0.00%)
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MEME
Compiler Version
v0.8.7+commit.e28d00a7
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Capped.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; interface MEMEINU { function balanceOf(address account) external view returns (uint256); function burnFrom(address account, uint256 amount) external; } contract MEME is ERC20, ERC20Capped, Ownable, ReentrancyGuard { using SafeMath for uint256; uint256 private _swapPrice; address payable private _treassurey; address public constant ADDR_MEMEOG = 0xD5525D397898e5502075Ea5E830d8914f6F0affe; //meme og address address public constant ADDR_MEMEINU = 0x74B988156925937bD4E082f0eD7429Da8eAea8Db; //meme inu address uint256 public constant MEMEOG_SUPPLY = 1035510357683; //will be set after snapshot IERC20 public memeOg = IERC20(ADDR_MEMEOG); MEMEINU public memeInu = MEMEINU(ADDR_MEMEINU); address public cSigner; mapping(address => uint256) public memeInuSwapped; mapping(address => uint256) public memeOGSwapped; //event event Swap(address sender, uint256 amount, uint256 received); constructor(address _signer) ERC20("MEME", "MEME") ERC20Capped(28000 * (10**uint256(18))) { cSigner = _signer; ERC20._mint(address(this), MEMEOG_SUPPLY * (10**uint256(10))); } function _swapInu( address _sender, uint256 _swapAmount, uint256 _maxAmount, bytes memory _sig ) private { require(_signerAddress(_sig, _maxAmount) == cSigner, "invalid signer"); require( memeInu.balanceOf(_sender) >= _swapAmount, "swap amount exceeds balance" ); uint256 swappedAmount = memeInuSwapped[_sender].add(_swapAmount); require(swappedAmount <= _maxAmount, "swapped amount exceeds"); //burn inu memeInu.burnFrom(_sender, _swapAmount); //mint newtoken uint256 amountAfterSwap = _swapAmount / (10**uint256(5)); _mint(_sender, amountAfterSwap); memeInuSwapped[_sender] = swappedAmount; emit Swap(_sender, _swapAmount, amountAfterSwap); } function _swapOG(address _sender, uint256 _swapAmount) private { require( memeOg.balanceOf(_sender) >= _swapAmount, "swap amount exceeds balance" ); //transfer meme og to contract memeOg.transferFrom(_sender, address(this), _swapAmount); memeOGSwapped[_sender] = memeOGSwapped[_sender].add(_swapAmount); //transfer newtoken to the sender uint256 amountToSwap = _swapAmount * (10**uint256(10)); _transfer(address(this), _sender, amountToSwap); emit Swap(_sender, _swapAmount, amountToSwap); } function swap( bool _isInu, uint256 _swapAmount, uint256 _maxAmount, bytes memory _sig ) public payable nonReentrant { require(msg.value == _swapPrice, "invalid swapPrice"); require(_msgSender() != address(0), "swap from the zero address"); if (msg.value > 0 && _treassurey != address(0)) _treassurey.transfer(msg.value); _isInu ? _swapInu(_msgSender(), _swapAmount, _maxAmount, _sig) : _swapOG(_msgSender(), _swapAmount); } function swapBack(uint256 _swapAmount) public payable nonReentrant { require(msg.value == _swapPrice, "invalid swapPrice"); require(_msgSender() != address(0), "swap from the zero address"); require( memeOGSwapped[_msgSender()] >= _swapAmount, "swap amount exceeds" ); require( balanceOf(_msgSender()) >= _swapAmount, "swap amount exceeds balance" ); if (msg.value > 0 && _treassurey != address(0)) _treassurey.transfer(msg.value); //transfer meme og back to the sender memeOg.transfer(_msgSender(), _swapAmount); memeOGSwapped[_msgSender()] = memeOGSwapped[_msgSender()].sub( _swapAmount ); //transfer newtoken back to the contract uint256 amountToSwapBack = _swapAmount * (10**uint256(10)); _transfer(_msgSender(), address(this), amountToSwapBack); emit Swap(_msgSender(), amountToSwapBack, _swapAmount); } function burnFrom(address account, uint256 amount) public virtual { uint256 currentAllowance = allowance(account, _msgSender()); require(currentAllowance >= amount, "burn amount exceeds allowance"); unchecked { _approve(account, _msgSender(), currentAllowance - amount); } _burn(account, amount); } function setSigner(address _signer) public onlyOwner { cSigner = _signer; } function setSwapPrice(uint256 swapPrice_) public onlyOwner { _swapPrice = swapPrice_; } function getSwapPrice() public view returns (uint256) { return _swapPrice; } function setTreassurey(address payable treassurey_) public onlyOwner { _treassurey = treassurey_; } function getTreassurey() public view returns (address) { return _treassurey; } function _mint(address account, uint256 amount) internal virtual override(ERC20, ERC20Capped) { require(ERC20.totalSupply() + amount <= cap(), "cap exceeded"); super._mint(account, amount); } function _signerAddress(bytes memory _sig, uint256 _amount) private view returns (address) { bytes32 message = keccak256(abi.encodePacked(msg.sender, _amount)); return _recoverSigner(message, _sig); } function _recoverSigner(bytes32 _message, bytes memory _sig) private pure returns (address) { uint8 v; bytes32 r; bytes32 s; (v, r, s) = _splitSignature(_sig); return ecrecover(_message, v, r, s); } function _splitSignature(bytes memory _sig) private pure returns ( uint8, bytes32, bytes32 ) { require(_sig.length == 65); bytes32 r; bytes32 s; uint8 v; assembly { // first 32 bytes, after the length prefix r := mload(add(_sig, 32)) // second 32 bytes s := mload(add(_sig, 64)) // final byte (first byte of the next 32 bytes) v := byte(0, mload(add(_sig, 96))) } return (v, r, s); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @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 Contracts guidelines: functions revert * instead 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) 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 default 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_) { _name = name_; _symbol = symbol_; } /** * @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 (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: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, 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}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, 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}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, 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) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, 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) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; } _balances[to] += amount; emit Transfer(from, to, amount); _afterTokenTransfer(from, to, 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: * * - `account` 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); _afterTokenTransfer(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"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(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 Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/ERC20Capped.sol) pragma solidity ^0.8.0; import "../ERC20.sol"; /** * @dev Extension of {ERC20} that adds a cap to the supply of tokens. */ abstract contract ERC20Capped is ERC20 { uint256 private immutable _cap; /** * @dev Sets the value of the `cap`. This value is immutable, it can only be * set once during construction. */ constructor(uint256 cap_) { require(cap_ > 0, "ERC20Capped: cap is 0"); _cap = cap_; } /** * @dev Returns the cap on the token's total supply. */ function cap() public view virtual returns (uint256) { return _cap; } /** * @dev See {ERC20-_mint}. */ function _mint(address account, uint256 amount) internal virtual override { require(ERC20.totalSupply() + amount <= cap(), "ERC20Capped: cap exceeded"); super._mint(account, amount); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ 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 (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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 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 `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount ) external returns (bool); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_signer","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"received","type":"uint256"}],"name":"Swap","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"ADDR_MEMEINU","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ADDR_MEMEOG","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MEMEOG_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cSigner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getSwapPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTreassurey","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"memeInu","outputs":[{"internalType":"contract MEMEINU","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"memeInuSwapped","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"memeOGSwapped","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"memeOg","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_signer","type":"address"}],"name":"setSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"swapPrice_","type":"uint256"}],"name":"setSwapPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"treassurey_","type":"address"}],"name":"setTreassurey","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isInu","type":"bool"},{"internalType":"uint256","name":"_swapAmount","type":"uint256"},{"internalType":"uint256","name":"_maxAmount","type":"uint256"},{"internalType":"bytes","name":"_sig","type":"bytes"}],"name":"swap","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_swapAmount","type":"uint256"}],"name":"swapBack","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a060405273d5525d397898e5502075ea5e830d8914f6f0affe600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507374b988156925937bd4e082f0ed7429da8eaea8db600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620000bb57600080fd5b5060405162004859380380620048598339818101604052810190620000e19190620005ae565b6012600a620000f1919062000769565b616d60620001009190620008a6565b6040518060400160405280600481526020017f4d454d45000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4d454d4500000000000000000000000000000000000000000000000000000000815250816003908051906020019062000184929190620004e7565b5080600490805190602001906200019d929190620004e7565b50505060008111620001e6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001dd906200063f565b60405180910390fd5b8060808181525050506200020f620002036200029660201b60201c565b6200029e60201b60201c565b600160068190555080600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200028f30600a806200026c919062000769565b64f1193a1eb36200027e9190620008a6565b6200036460201b6200169f1760201c565b5062000a57565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620003d7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003ce9062000661565b60405180910390fd5b620003eb60008383620004dd60201b60201c565b8060026000828254620003ff9190620006b1565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620004569190620006b1565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620004bd919062000683565b60405180910390a3620004d960008383620004e260201b60201c565b5050565b505050565b505050565b828054620004f59062000945565b90600052602060002090601f01602090048101928262000519576000855562000565565b82601f106200053457805160ff191683800117855562000565565b8280016001018555821562000565579182015b828111156200056457825182559160200191906001019062000547565b5b50905062000574919062000578565b5090565b5b808211156200059357600081600090555060010162000579565b5090565b600081519050620005a88162000a3d565b92915050565b600060208284031215620005c757620005c6620009d9565b5b6000620005d78482850162000597565b91505092915050565b6000620005ef601583620006a0565b9150620005fc82620009eb565b602082019050919050565b600062000616601f83620006a0565b9150620006238262000a14565b602082019050919050565b62000639816200093b565b82525050565b600060208201905081810360008301526200065a81620005e0565b9050919050565b600060208201905081810360008301526200067c8162000607565b9050919050565b60006020820190506200069a60008301846200062e565b92915050565b600082825260208201905092915050565b6000620006be826200093b565b9150620006cb836200093b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200070357620007026200097b565b5b828201905092915050565b6000808291508390505b600185111562000760578086048111156200073857620007376200097b565b5b6001851615620007485780820291505b80810290506200075885620009de565b945062000718565b94509492505050565b600062000776826200093b565b915062000783836200093b565b9250620007b27fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620007ba565b905092915050565b600082620007cc57600190506200089f565b81620007dc57600090506200089f565b8160018114620007f55760028114620008005762000836565b60019150506200089f565b60ff8411156200081557620008146200097b565b5b8360020a9150848211156200082f576200082e6200097b565b5b506200089f565b5060208310610133831016604e8410600b8410161715620008705782820a9050838111156200086a57620008696200097b565b5b6200089f565b6200087f84848460016200070e565b925090508184048111156200089957620008986200097b565b5b81810290505b9392505050565b6000620008b3826200093b565b9150620008c0836200093b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620008fc57620008fb6200097b565b5b828202905092915050565b600062000914826200091b565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060028204905060018216806200095e57607f821691505b60208210811415620009755762000974620009aa565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b60008160011c9050919050565b7f45524332304361707065643a2063617020697320300000000000000000000000600082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b62000a488162000907565b811462000a5457600080fd5b50565b608051613de662000a736000396000610ad20152613de66000f3fe6080604052600436106101d85760003560e01c80636b3b481011610102578063a9059cbb11610095578063db0e973a11610064578063db0e973a146106bc578063dd62ed3e146106e7578063f2fde38b14610724578063f4052c1d1461074d576101d8565b8063a9059cbb1461060d578063af4bf4d91461064a578063b43eb7d314610675578063c1ebb47b146106a0576101d8565b806379cc6790116100d157806379cc6790146105515780638da5cb5b1461057a57806395d89b41146105a5578063a457c2d7146105d0576101d8565b80636b3b4810146104ab5780636c19e783146104d457806370a08231146104fd578063715018a61461053a576101d8565b80632f2849811161017a57806354e1ff321161014957806354e1ff32146103dd5780635760cc5d1461041a5780636281087e146104455780636543b3b014610482576101d8565b80632f2849811461031f578063313ce5671461034a578063355274ea1461037557806339509351146103a0576101d8565b806318160ddd116101b657806318160ddd146102705780631cd52f841461029b57806323b872dd146102c65780632ebf528a14610303576101d8565b806306fdde03146101dd578063095ea7b3146102085780630b7cd2db14610245575b600080fd5b3480156101e957600080fd5b506101f2610778565b6040516101ff9190612fe1565b60405180910390f35b34801561021457600080fd5b5061022f600480360381019061022a9190612951565b61080a565b60405161023c9190612f4b565b60405180910390f35b34801561025157600080fd5b5061025a61082d565b6040516102679190612e99565b60405180910390f35b34801561027c57600080fd5b50610285610857565b60405161029291906132c3565b60405180910390f35b3480156102a757600080fd5b506102b0610861565b6040516102bd9190612e99565b60405180910390f35b3480156102d257600080fd5b506102ed60048036038101906102e891906128fe565b610879565b6040516102fa9190612f4b565b60405180910390f35b61031d600480360381019061031891906129be565b6108a8565b005b34801561032b57600080fd5b50610334610abc565b60405161034191906132c3565b60405180910390f35b34801561035657600080fd5b5061035f610ac5565b60405161036c91906132de565b60405180910390f35b34801561038157600080fd5b5061038a610ace565b60405161039791906132c3565b60405180910390f35b3480156103ac57600080fd5b506103c760048036038101906103c29190612951565b610af6565b6040516103d49190612f4b565b60405180910390f35b3480156103e957600080fd5b5061040460048036038101906103ff9190612864565b610b2d565b60405161041191906132c3565b60405180910390f35b34801561042657600080fd5b5061042f610b45565b60405161043c9190612e99565b60405180910390f35b34801561045157600080fd5b5061046c60048036038101906104679190612864565b610b6b565b60405161047991906132c3565b60405180910390f35b34801561048e57600080fd5b506104a960048036038101906104a49190612891565b610b83565b005b3480156104b757600080fd5b506104d260048036038101906104cd9190612a41565b610c43565b005b3480156104e057600080fd5b506104fb60048036038101906104f69190612864565b610cc9565b005b34801561050957600080fd5b50610524600480360381019061051f9190612864565b610d89565b60405161053191906132c3565b60405180910390f35b34801561054657600080fd5b5061054f610dd1565b005b34801561055d57600080fd5b5061057860048036038101906105739190612951565b610e59565b005b34801561058657600080fd5b5061058f610ed4565b60405161059c9190612e99565b60405180910390f35b3480156105b157600080fd5b506105ba610efe565b6040516105c79190612fe1565b60405180910390f35b3480156105dc57600080fd5b506105f760048036038101906105f29190612951565b610f90565b6040516106049190612f4b565b60405180910390f35b34801561061957600080fd5b50610634600480360381019061062f9190612951565b611007565b6040516106419190612f4b565b60405180910390f35b34801561065657600080fd5b5061065f61102a565b60405161066c9190612fab565b60405180910390f35b34801561068157600080fd5b5061068a611050565b6040516106979190612fc6565b60405180910390f35b6106ba60048036038101906106b59190612a41565b611076565b005b3480156106c857600080fd5b506106d16114fe565b6040516106de91906132c3565b60405180910390f35b3480156106f357600080fd5b5061070e600480360381019061070991906128be565b611508565b60405161071b91906132c3565b60405180910390f35b34801561073057600080fd5b5061074b60048036038101906107469190612864565b61158f565b005b34801561075957600080fd5b50610762611687565b60405161076f9190612e99565b60405180910390f35b606060038054610787906136ec565b80601f01602080910402602001604051908101604052809291908181526020018280546107b3906136ec565b80156108005780601f106107d557610100808354040283529160200191610800565b820191906000526020600020905b8154815290600101906020018083116107e357829003601f168201915b5050505050905090565b6000806108156117ff565b9050610822818585611807565b600191505092915050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600254905090565b7374b988156925937bd4e082f0ed7429da8eaea8db81565b6000806108846117ff565b90506108918582856119d2565b61089c858585611a5e565b60019150509392505050565b600260065414156108ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e590613223565b60405180910390fd5b6002600681905550600754341461093a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093190613203565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1661095a6117ff565b73ffffffffffffffffffffffffffffffffffffffff1614156109b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a890613163565b60405180910390fd5b600034118015610a105750600073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b15610a7f57600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f19350505050158015610a7d573d6000803e3d6000fd5b505b83610a9a57610a95610a8f6117ff565b84611cdf565b610aae565b610aad610aa56117ff565b848484611f7a565b5b600160068190555050505050565b64f1193a1eb381565b60006012905090565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b600080610b016117ff565b9050610b22818585610b138589611508565b610b1d919061336b565b611807565b600191505092915050565b600c6020528060005260406000206000915090505481565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d6020528060005260406000206000915090505481565b610b8b6117ff565b73ffffffffffffffffffffffffffffffffffffffff16610ba9610ed4565b73ffffffffffffffffffffffffffffffffffffffff1614610bff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf690613123565b60405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610c4b6117ff565b73ffffffffffffffffffffffffffffffffffffffff16610c69610ed4565b73ffffffffffffffffffffffffffffffffffffffff1614610cbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb690613123565b60405180910390fd5b8060078190555050565b610cd16117ff565b73ffffffffffffffffffffffffffffffffffffffff16610cef610ed4565b73ffffffffffffffffffffffffffffffffffffffff1614610d45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3c90613123565b60405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610dd96117ff565b73ffffffffffffffffffffffffffffffffffffffff16610df7610ed4565b73ffffffffffffffffffffffffffffffffffffffff1614610e4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4490613123565b60405180910390fd5b610e5760006122d6565b565b6000610e6c83610e676117ff565b611508565b905081811015610eb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea8906131e3565b60405180910390fd5b610ec583610ebd6117ff565b848403611807565b610ecf838361239c565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610f0d906136ec565b80601f0160208091040260200160405190810160405280929190818152602001828054610f39906136ec565b8015610f865780601f10610f5b57610100808354040283529160200191610f86565b820191906000526020600020905b815481529060010190602001808311610f6957829003601f168201915b5050505050905090565b600080610f9b6117ff565b90506000610fa98286611508565b905083811015610fee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe590613283565b60405180910390fd5b610ffb8286868403611807565b60019250505092915050565b6000806110126117ff565b905061101f818585611a5e565b600191505092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600260065414156110bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b390613223565b60405180910390fd5b60026006819055506007543414611108576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ff90613203565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff166111286117ff565b73ffffffffffffffffffffffffffffffffffffffff16141561117f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117690613163565b60405180910390fd5b80600d600061118c6117ff565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015611208576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ff90613243565b60405180910390fd5b806112196112146117ff565b610d89565b101561125a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125190613263565b60405180910390fd5b6000341180156112b95750600073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b1561132857600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f19350505050158015611326573d6000803e3d6000fd5b505b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb61136e6117ff565b836040518363ffffffff1660e01b815260040161138c929190612eeb565b602060405180830381600087803b1580156113a657600080fd5b505af11580156113ba573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113de9190612991565b5061143881600d60006113ef6117ff565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461257390919063ffffffff16565b600d60006114446117ff565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600a806114919190613445565b8261149c9190613563565b90506114b06114a96117ff565b3083611a5e565b7f77f92a1b6a1a11de8ca49515ad4c1fad45632dd3442167d74b90b304a3c7a7586114d96117ff565b82846040516114ea93929190612f14565b60405180910390a150600160068190555050565b6000600754905090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6115976117ff565b73ffffffffffffffffffffffffffffffffffffffff166115b5610ed4565b73ffffffffffffffffffffffffffffffffffffffff161461160b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160290613123565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561167b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167290613043565b60405180910390fd5b611684816122d6565b50565b73d5525d397898e5502075ea5e830d8914f6f0affe81565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561170f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611706906132a3565b60405180910390fd5b61171b60008383612589565b806002600082825461172d919061336b565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611782919061336b565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516117e791906132c3565b60405180910390a36117fb6000838361258e565b5050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611877576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186e906131c3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118de90613063565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516119c591906132c3565b60405180910390a3505050565b60006119de8484611508565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611a585781811015611a4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a41906130c3565b60405180910390fd5b611a578484848403611807565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611ace576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac590613183565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3590613003565b60405180910390fd5b611b49838383612589565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611bcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc6906130e3565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c62919061336b565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611cc691906132c3565b60405180910390a3611cd984848461258e565b50505050565b80600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff1660e01b8152600401611d3b9190612e99565b60206040518083038186803b158015611d5357600080fd5b505afa158015611d67573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d8b9190612a6e565b1015611dcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc390613263565b60405180910390fd5b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd8330846040518463ffffffff1660e01b8152600401611e2b93929190612eb4565b602060405180830381600087803b158015611e4557600080fd5b505af1158015611e59573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e7d9190612991565b50611ed081600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461259390919063ffffffff16565b600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600a80611f229190613445565b82611f2d9190613563565b9050611f3a308483611a5e565b7f77f92a1b6a1a11de8ca49515ad4c1fad45632dd3442167d74b90b304a3c7a758838383604051611f6d93929190612f14565b60405180910390a1505050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611fbd82846125a9565b73ffffffffffffffffffffffffffffffffffffffff1614612013576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200a90613083565b60405180910390fd5b82600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231866040518263ffffffff1660e01b815260040161206f9190612e99565b60206040518083038186803b15801561208757600080fd5b505afa15801561209b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120bf9190612a6e565b1015612100576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f790613263565b60405180910390fd5b600061215484600c60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461259390919063ffffffff16565b905082811115612199576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219090613103565b60405180910390fd5b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166379cc679086866040518363ffffffff1660e01b81526004016121f6929190612eeb565b600060405180830381600087803b15801561221057600080fd5b505af1158015612224573d6000803e3d6000fd5b5050505060006005600a6122389190613445565b8561224391906133c1565b905061224f86826125ea565b81600c60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055507f77f92a1b6a1a11de8ca49515ad4c1fad45632dd3442167d74b90b304a3c7a7588686836040516122c693929190612f14565b60405180910390a1505050505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561240c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240390613143565b60405180910390fd5b61241882600083612589565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561249e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249590613023565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546124f591906135bd565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161255a91906132c3565b60405180910390a361256e8360008461258e565b505050565b6000818361258191906135bd565b905092915050565b505050565b505050565b600081836125a1919061336b565b905092915050565b60008033836040516020016125bf929190612e6d565b6040516020818303038152906040528051906020012090506125e18185612654565b91505092915050565b6125f2610ace565b816125fb610857565b612605919061336b565b1115612646576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263d906130a3565b60405180910390fd5b61265082826126c9565b5050565b60008060008061266385612733565b809350819450829550505050600186848484604051600081526020016040526040516126929493929190612f66565b6020604051602081039080840390855afa1580156126b4573d6000803e3d6000fd5b50505060206040510351935050505092915050565b6126d1610ace565b816126da610857565b6126e4919061336b565b1115612725576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271c906131a3565b60405180910390fd5b61272f828261169f565b5050565b6000806000604184511461274657600080fd5b60008060006020870151925060408701519150606087015160001a90508083839550955095505050509193909250565b60006127896127848461331e565b6132f9565b9050828152602081018484840111156127a5576127a461383e565b5b6127b08482856136aa565b509392505050565b6000813590506127c781613d54565b92915050565b6000813590506127dc81613d6b565b92915050565b6000813590506127f181613d82565b92915050565b60008151905061280681613d82565b92915050565b600082601f83011261282157612820613839565b5b8135612831848260208601612776565b91505092915050565b60008135905061284981613d99565b92915050565b60008151905061285e81613d99565b92915050565b60006020828403121561287a57612879613848565b5b6000612888848285016127b8565b91505092915050565b6000602082840312156128a7576128a6613848565b5b60006128b5848285016127cd565b91505092915050565b600080604083850312156128d5576128d4613848565b5b60006128e3858286016127b8565b92505060206128f4858286016127b8565b9150509250929050565b60008060006060848603121561291757612916613848565b5b6000612925868287016127b8565b9350506020612936868287016127b8565b92505060406129478682870161283a565b9150509250925092565b6000806040838503121561296857612967613848565b5b6000612976858286016127b8565b92505060206129878582860161283a565b9150509250929050565b6000602082840312156129a7576129a6613848565b5b60006129b5848285016127f7565b91505092915050565b600080600080608085870312156129d8576129d7613848565b5b60006129e6878288016127e2565b94505060206129f78782880161283a565b9350506040612a088782880161283a565b925050606085013567ffffffffffffffff811115612a2957612a28613843565b5b612a358782880161280c565b91505092959194509250565b600060208284031215612a5757612a56613848565b5b6000612a658482850161283a565b91505092915050565b600060208284031215612a8457612a83613848565b5b6000612a928482850161284f565b91505092915050565b612aa4816135f1565b82525050565b612abb612ab6826135f1565b61374f565b82525050565b612aca81613615565b82525050565b612ad981613621565b82525050565b612ae881613662565b82525050565b612af781613674565b82525050565b6000612b088261334f565b612b12818561335a565b9350612b228185602086016136b9565b612b2b8161384d565b840191505092915050565b6000612b4360238361335a565b9150612b4e82613878565b604082019050919050565b6000612b6660228361335a565b9150612b71826138c7565b604082019050919050565b6000612b8960268361335a565b9150612b9482613916565b604082019050919050565b6000612bac60228361335a565b9150612bb782613965565b604082019050919050565b6000612bcf600e8361335a565b9150612bda826139b4565b602082019050919050565b6000612bf2600c8361335a565b9150612bfd826139dd565b602082019050919050565b6000612c15601d8361335a565b9150612c2082613a06565b602082019050919050565b6000612c3860268361335a565b9150612c4382613a2f565b604082019050919050565b6000612c5b60168361335a565b9150612c6682613a7e565b602082019050919050565b6000612c7e60208361335a565b9150612c8982613aa7565b602082019050919050565b6000612ca160218361335a565b9150612cac82613ad0565b604082019050919050565b6000612cc4601a8361335a565b9150612ccf82613b1f565b602082019050919050565b6000612ce760258361335a565b9150612cf282613b48565b604082019050919050565b6000612d0a60198361335a565b9150612d1582613b97565b602082019050919050565b6000612d2d60248361335a565b9150612d3882613bc0565b604082019050919050565b6000612d50601d8361335a565b9150612d5b82613c0f565b602082019050919050565b6000612d7360118361335a565b9150612d7e82613c38565b602082019050919050565b6000612d96601f8361335a565b9150612da182613c61565b602082019050919050565b6000612db960138361335a565b9150612dc482613c8a565b602082019050919050565b6000612ddc601b8361335a565b9150612de782613cb3565b602082019050919050565b6000612dff60258361335a565b9150612e0a82613cdc565b604082019050919050565b6000612e22601f8361335a565b9150612e2d82613d2b565b602082019050919050565b612e418161364b565b82525050565b612e58612e538261364b565b613773565b82525050565b612e6781613655565b82525050565b6000612e798285612aaa565b601482019150612e898284612e47565b6020820191508190509392505050565b6000602082019050612eae6000830184612a9b565b92915050565b6000606082019050612ec96000830186612a9b565b612ed66020830185612a9b565b612ee36040830184612e38565b949350505050565b6000604082019050612f006000830185612a9b565b612f0d6020830184612e38565b9392505050565b6000606082019050612f296000830186612a9b565b612f366020830185612e38565b612f436040830184612e38565b949350505050565b6000602082019050612f606000830184612ac1565b92915050565b6000608082019050612f7b6000830187612ad0565b612f886020830186612e5e565b612f956040830185612ad0565b612fa26060830184612ad0565b95945050505050565b6000602082019050612fc06000830184612adf565b92915050565b6000602082019050612fdb6000830184612aee565b92915050565b60006020820190508181036000830152612ffb8184612afd565b905092915050565b6000602082019050818103600083015261301c81612b36565b9050919050565b6000602082019050818103600083015261303c81612b59565b9050919050565b6000602082019050818103600083015261305c81612b7c565b9050919050565b6000602082019050818103600083015261307c81612b9f565b9050919050565b6000602082019050818103600083015261309c81612bc2565b9050919050565b600060208201905081810360008301526130bc81612be5565b9050919050565b600060208201905081810360008301526130dc81612c08565b9050919050565b600060208201905081810360008301526130fc81612c2b565b9050919050565b6000602082019050818103600083015261311c81612c4e565b9050919050565b6000602082019050818103600083015261313c81612c71565b9050919050565b6000602082019050818103600083015261315c81612c94565b9050919050565b6000602082019050818103600083015261317c81612cb7565b9050919050565b6000602082019050818103600083015261319c81612cda565b9050919050565b600060208201905081810360008301526131bc81612cfd565b9050919050565b600060208201905081810360008301526131dc81612d20565b9050919050565b600060208201905081810360008301526131fc81612d43565b9050919050565b6000602082019050818103600083015261321c81612d66565b9050919050565b6000602082019050818103600083015261323c81612d89565b9050919050565b6000602082019050818103600083015261325c81612dac565b9050919050565b6000602082019050818103600083015261327c81612dcf565b9050919050565b6000602082019050818103600083015261329c81612df2565b9050919050565b600060208201905081810360008301526132bc81612e15565b9050919050565b60006020820190506132d86000830184612e38565b92915050565b60006020820190506132f36000830184612e5e565b92915050565b6000613303613314565b905061330f828261371e565b919050565b6000604051905090565b600067ffffffffffffffff8211156133395761333861380a565b5b6133428261384d565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b60006133768261364b565b91506133818361364b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156133b6576133b561377d565b5b828201905092915050565b60006133cc8261364b565b91506133d78361364b565b9250826133e7576133e66137ac565b5b828204905092915050565b6000808291508390505b600185111561343c578086048111156134185761341761377d565b5b60018516156134275780820291505b80810290506134358561386b565b94506133fc565b94509492505050565b60006134508261364b565b915061345b8361364b565b92506134887fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484613490565b905092915050565b6000826134a0576001905061355c565b816134ae576000905061355c565b81600181146134c457600281146134ce576134fd565b600191505061355c565b60ff8411156134e0576134df61377d565b5b8360020a9150848211156134f7576134f661377d565b5b5061355c565b5060208310610133831016604e8410600b84101617156135325782820a90508381111561352d5761352c61377d565b5b61355c565b61353f84848460016133f2565b925090508184048111156135565761355561377d565b5b81810290505b9392505050565b600061356e8261364b565b91506135798361364b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156135b2576135b161377d565b5b828202905092915050565b60006135c88261364b565b91506135d38361364b565b9250828210156135e6576135e561377d565b5b828203905092915050565b60006135fc8261362b565b9050919050565b600061360e8261362b565b9050919050565b60008115159050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b600061366d82613686565b9050919050565b600061367f82613686565b9050919050565b600061369182613698565b9050919050565b60006136a38261362b565b9050919050565b82818337600083830152505050565b60005b838110156136d75780820151818401526020810190506136bc565b838111156136e6576000848401525b50505050565b6000600282049050600182168061370457607f821691505b60208210811415613718576137176137db565b5b50919050565b6137278261384d565b810181811067ffffffffffffffff821117156137465761374561380a565b5b80604052505050565b600061375a82613761565b9050919050565b600061376c8261385e565b9050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b60008160011c9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f696e76616c6964207369676e6572000000000000000000000000000000000000600082015250565b7f6361702065786365656465640000000000000000000000000000000000000000600082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f7377617070656420616d6f756e74206578636565647300000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f737761702066726f6d20746865207a65726f2061646472657373000000000000600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332304361707065643a2063617020657863656564656400000000000000600082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f6275726e20616d6f756e74206578636565647320616c6c6f77616e6365000000600082015250565b7f696e76616c696420737761705072696365000000000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f7377617020616d6f756e74206578636565647300000000000000000000000000600082015250565b7f7377617020616d6f756e7420657863656564732062616c616e63650000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b613d5d816135f1565b8114613d6857600080fd5b50565b613d7481613603565b8114613d7f57600080fd5b50565b613d8b81613615565b8114613d9657600080fd5b50565b613da28161364b565b8114613dad57600080fd5b5056fea26469706673582212201fe75652c836b5bf123386835c6786d21ee10281491d607399fefe0f4dd8fde364736f6c63430008070033000000000000000000000000d45bb3ef501c0d704e62370f21b2c0004aceb3d1
Deployed Bytecode
0x6080604052600436106101d85760003560e01c80636b3b481011610102578063a9059cbb11610095578063db0e973a11610064578063db0e973a146106bc578063dd62ed3e146106e7578063f2fde38b14610724578063f4052c1d1461074d576101d8565b8063a9059cbb1461060d578063af4bf4d91461064a578063b43eb7d314610675578063c1ebb47b146106a0576101d8565b806379cc6790116100d157806379cc6790146105515780638da5cb5b1461057a57806395d89b41146105a5578063a457c2d7146105d0576101d8565b80636b3b4810146104ab5780636c19e783146104d457806370a08231146104fd578063715018a61461053a576101d8565b80632f2849811161017a57806354e1ff321161014957806354e1ff32146103dd5780635760cc5d1461041a5780636281087e146104455780636543b3b014610482576101d8565b80632f2849811461031f578063313ce5671461034a578063355274ea1461037557806339509351146103a0576101d8565b806318160ddd116101b657806318160ddd146102705780631cd52f841461029b57806323b872dd146102c65780632ebf528a14610303576101d8565b806306fdde03146101dd578063095ea7b3146102085780630b7cd2db14610245575b600080fd5b3480156101e957600080fd5b506101f2610778565b6040516101ff9190612fe1565b60405180910390f35b34801561021457600080fd5b5061022f600480360381019061022a9190612951565b61080a565b60405161023c9190612f4b565b60405180910390f35b34801561025157600080fd5b5061025a61082d565b6040516102679190612e99565b60405180910390f35b34801561027c57600080fd5b50610285610857565b60405161029291906132c3565b60405180910390f35b3480156102a757600080fd5b506102b0610861565b6040516102bd9190612e99565b60405180910390f35b3480156102d257600080fd5b506102ed60048036038101906102e891906128fe565b610879565b6040516102fa9190612f4b565b60405180910390f35b61031d600480360381019061031891906129be565b6108a8565b005b34801561032b57600080fd5b50610334610abc565b60405161034191906132c3565b60405180910390f35b34801561035657600080fd5b5061035f610ac5565b60405161036c91906132de565b60405180910390f35b34801561038157600080fd5b5061038a610ace565b60405161039791906132c3565b60405180910390f35b3480156103ac57600080fd5b506103c760048036038101906103c29190612951565b610af6565b6040516103d49190612f4b565b60405180910390f35b3480156103e957600080fd5b5061040460048036038101906103ff9190612864565b610b2d565b60405161041191906132c3565b60405180910390f35b34801561042657600080fd5b5061042f610b45565b60405161043c9190612e99565b60405180910390f35b34801561045157600080fd5b5061046c60048036038101906104679190612864565b610b6b565b60405161047991906132c3565b60405180910390f35b34801561048e57600080fd5b506104a960048036038101906104a49190612891565b610b83565b005b3480156104b757600080fd5b506104d260048036038101906104cd9190612a41565b610c43565b005b3480156104e057600080fd5b506104fb60048036038101906104f69190612864565b610cc9565b005b34801561050957600080fd5b50610524600480360381019061051f9190612864565b610d89565b60405161053191906132c3565b60405180910390f35b34801561054657600080fd5b5061054f610dd1565b005b34801561055d57600080fd5b5061057860048036038101906105739190612951565b610e59565b005b34801561058657600080fd5b5061058f610ed4565b60405161059c9190612e99565b60405180910390f35b3480156105b157600080fd5b506105ba610efe565b6040516105c79190612fe1565b60405180910390f35b3480156105dc57600080fd5b506105f760048036038101906105f29190612951565b610f90565b6040516106049190612f4b565b60405180910390f35b34801561061957600080fd5b50610634600480360381019061062f9190612951565b611007565b6040516106419190612f4b565b60405180910390f35b34801561065657600080fd5b5061065f61102a565b60405161066c9190612fab565b60405180910390f35b34801561068157600080fd5b5061068a611050565b6040516106979190612fc6565b60405180910390f35b6106ba60048036038101906106b59190612a41565b611076565b005b3480156106c857600080fd5b506106d16114fe565b6040516106de91906132c3565b60405180910390f35b3480156106f357600080fd5b5061070e600480360381019061070991906128be565b611508565b60405161071b91906132c3565b60405180910390f35b34801561073057600080fd5b5061074b60048036038101906107469190612864565b61158f565b005b34801561075957600080fd5b50610762611687565b60405161076f9190612e99565b60405180910390f35b606060038054610787906136ec565b80601f01602080910402602001604051908101604052809291908181526020018280546107b3906136ec565b80156108005780601f106107d557610100808354040283529160200191610800565b820191906000526020600020905b8154815290600101906020018083116107e357829003601f168201915b5050505050905090565b6000806108156117ff565b9050610822818585611807565b600191505092915050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600254905090565b7374b988156925937bd4e082f0ed7429da8eaea8db81565b6000806108846117ff565b90506108918582856119d2565b61089c858585611a5e565b60019150509392505050565b600260065414156108ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e590613223565b60405180910390fd5b6002600681905550600754341461093a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093190613203565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1661095a6117ff565b73ffffffffffffffffffffffffffffffffffffffff1614156109b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a890613163565b60405180910390fd5b600034118015610a105750600073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b15610a7f57600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f19350505050158015610a7d573d6000803e3d6000fd5b505b83610a9a57610a95610a8f6117ff565b84611cdf565b610aae565b610aad610aa56117ff565b848484611f7a565b5b600160068190555050505050565b64f1193a1eb381565b60006012905090565b60007f0000000000000000000000000000000000000000000005ede20f01a459800000905090565b600080610b016117ff565b9050610b22818585610b138589611508565b610b1d919061336b565b611807565b600191505092915050565b600c6020528060005260406000206000915090505481565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d6020528060005260406000206000915090505481565b610b8b6117ff565b73ffffffffffffffffffffffffffffffffffffffff16610ba9610ed4565b73ffffffffffffffffffffffffffffffffffffffff1614610bff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf690613123565b60405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610c4b6117ff565b73ffffffffffffffffffffffffffffffffffffffff16610c69610ed4565b73ffffffffffffffffffffffffffffffffffffffff1614610cbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb690613123565b60405180910390fd5b8060078190555050565b610cd16117ff565b73ffffffffffffffffffffffffffffffffffffffff16610cef610ed4565b73ffffffffffffffffffffffffffffffffffffffff1614610d45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3c90613123565b60405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610dd96117ff565b73ffffffffffffffffffffffffffffffffffffffff16610df7610ed4565b73ffffffffffffffffffffffffffffffffffffffff1614610e4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4490613123565b60405180910390fd5b610e5760006122d6565b565b6000610e6c83610e676117ff565b611508565b905081811015610eb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea8906131e3565b60405180910390fd5b610ec583610ebd6117ff565b848403611807565b610ecf838361239c565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610f0d906136ec565b80601f0160208091040260200160405190810160405280929190818152602001828054610f39906136ec565b8015610f865780601f10610f5b57610100808354040283529160200191610f86565b820191906000526020600020905b815481529060010190602001808311610f6957829003601f168201915b5050505050905090565b600080610f9b6117ff565b90506000610fa98286611508565b905083811015610fee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe590613283565b60405180910390fd5b610ffb8286868403611807565b60019250505092915050565b6000806110126117ff565b905061101f818585611a5e565b600191505092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600260065414156110bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b390613223565b60405180910390fd5b60026006819055506007543414611108576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ff90613203565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff166111286117ff565b73ffffffffffffffffffffffffffffffffffffffff16141561117f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117690613163565b60405180910390fd5b80600d600061118c6117ff565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015611208576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ff90613243565b60405180910390fd5b806112196112146117ff565b610d89565b101561125a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125190613263565b60405180910390fd5b6000341180156112b95750600073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b1561132857600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f19350505050158015611326573d6000803e3d6000fd5b505b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb61136e6117ff565b836040518363ffffffff1660e01b815260040161138c929190612eeb565b602060405180830381600087803b1580156113a657600080fd5b505af11580156113ba573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113de9190612991565b5061143881600d60006113ef6117ff565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461257390919063ffffffff16565b600d60006114446117ff565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600a806114919190613445565b8261149c9190613563565b90506114b06114a96117ff565b3083611a5e565b7f77f92a1b6a1a11de8ca49515ad4c1fad45632dd3442167d74b90b304a3c7a7586114d96117ff565b82846040516114ea93929190612f14565b60405180910390a150600160068190555050565b6000600754905090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6115976117ff565b73ffffffffffffffffffffffffffffffffffffffff166115b5610ed4565b73ffffffffffffffffffffffffffffffffffffffff161461160b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160290613123565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561167b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167290613043565b60405180910390fd5b611684816122d6565b50565b73d5525d397898e5502075ea5e830d8914f6f0affe81565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561170f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611706906132a3565b60405180910390fd5b61171b60008383612589565b806002600082825461172d919061336b565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611782919061336b565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516117e791906132c3565b60405180910390a36117fb6000838361258e565b5050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611877576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186e906131c3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118de90613063565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516119c591906132c3565b60405180910390a3505050565b60006119de8484611508565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611a585781811015611a4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a41906130c3565b60405180910390fd5b611a578484848403611807565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611ace576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac590613183565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3590613003565b60405180910390fd5b611b49838383612589565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611bcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc6906130e3565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c62919061336b565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611cc691906132c3565b60405180910390a3611cd984848461258e565b50505050565b80600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff1660e01b8152600401611d3b9190612e99565b60206040518083038186803b158015611d5357600080fd5b505afa158015611d67573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d8b9190612a6e565b1015611dcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc390613263565b60405180910390fd5b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd8330846040518463ffffffff1660e01b8152600401611e2b93929190612eb4565b602060405180830381600087803b158015611e4557600080fd5b505af1158015611e59573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e7d9190612991565b50611ed081600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461259390919063ffffffff16565b600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600a80611f229190613445565b82611f2d9190613563565b9050611f3a308483611a5e565b7f77f92a1b6a1a11de8ca49515ad4c1fad45632dd3442167d74b90b304a3c7a758838383604051611f6d93929190612f14565b60405180910390a1505050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611fbd82846125a9565b73ffffffffffffffffffffffffffffffffffffffff1614612013576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200a90613083565b60405180910390fd5b82600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231866040518263ffffffff1660e01b815260040161206f9190612e99565b60206040518083038186803b15801561208757600080fd5b505afa15801561209b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120bf9190612a6e565b1015612100576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f790613263565b60405180910390fd5b600061215484600c60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461259390919063ffffffff16565b905082811115612199576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219090613103565b60405180910390fd5b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166379cc679086866040518363ffffffff1660e01b81526004016121f6929190612eeb565b600060405180830381600087803b15801561221057600080fd5b505af1158015612224573d6000803e3d6000fd5b5050505060006005600a6122389190613445565b8561224391906133c1565b905061224f86826125ea565b81600c60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055507f77f92a1b6a1a11de8ca49515ad4c1fad45632dd3442167d74b90b304a3c7a7588686836040516122c693929190612f14565b60405180910390a1505050505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561240c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240390613143565b60405180910390fd5b61241882600083612589565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561249e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249590613023565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546124f591906135bd565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161255a91906132c3565b60405180910390a361256e8360008461258e565b505050565b6000818361258191906135bd565b905092915050565b505050565b505050565b600081836125a1919061336b565b905092915050565b60008033836040516020016125bf929190612e6d565b6040516020818303038152906040528051906020012090506125e18185612654565b91505092915050565b6125f2610ace565b816125fb610857565b612605919061336b565b1115612646576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263d906130a3565b60405180910390fd5b61265082826126c9565b5050565b60008060008061266385612733565b809350819450829550505050600186848484604051600081526020016040526040516126929493929190612f66565b6020604051602081039080840390855afa1580156126b4573d6000803e3d6000fd5b50505060206040510351935050505092915050565b6126d1610ace565b816126da610857565b6126e4919061336b565b1115612725576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271c906131a3565b60405180910390fd5b61272f828261169f565b5050565b6000806000604184511461274657600080fd5b60008060006020870151925060408701519150606087015160001a90508083839550955095505050509193909250565b60006127896127848461331e565b6132f9565b9050828152602081018484840111156127a5576127a461383e565b5b6127b08482856136aa565b509392505050565b6000813590506127c781613d54565b92915050565b6000813590506127dc81613d6b565b92915050565b6000813590506127f181613d82565b92915050565b60008151905061280681613d82565b92915050565b600082601f83011261282157612820613839565b5b8135612831848260208601612776565b91505092915050565b60008135905061284981613d99565b92915050565b60008151905061285e81613d99565b92915050565b60006020828403121561287a57612879613848565b5b6000612888848285016127b8565b91505092915050565b6000602082840312156128a7576128a6613848565b5b60006128b5848285016127cd565b91505092915050565b600080604083850312156128d5576128d4613848565b5b60006128e3858286016127b8565b92505060206128f4858286016127b8565b9150509250929050565b60008060006060848603121561291757612916613848565b5b6000612925868287016127b8565b9350506020612936868287016127b8565b92505060406129478682870161283a565b9150509250925092565b6000806040838503121561296857612967613848565b5b6000612976858286016127b8565b92505060206129878582860161283a565b9150509250929050565b6000602082840312156129a7576129a6613848565b5b60006129b5848285016127f7565b91505092915050565b600080600080608085870312156129d8576129d7613848565b5b60006129e6878288016127e2565b94505060206129f78782880161283a565b9350506040612a088782880161283a565b925050606085013567ffffffffffffffff811115612a2957612a28613843565b5b612a358782880161280c565b91505092959194509250565b600060208284031215612a5757612a56613848565b5b6000612a658482850161283a565b91505092915050565b600060208284031215612a8457612a83613848565b5b6000612a928482850161284f565b91505092915050565b612aa4816135f1565b82525050565b612abb612ab6826135f1565b61374f565b82525050565b612aca81613615565b82525050565b612ad981613621565b82525050565b612ae881613662565b82525050565b612af781613674565b82525050565b6000612b088261334f565b612b12818561335a565b9350612b228185602086016136b9565b612b2b8161384d565b840191505092915050565b6000612b4360238361335a565b9150612b4e82613878565b604082019050919050565b6000612b6660228361335a565b9150612b71826138c7565b604082019050919050565b6000612b8960268361335a565b9150612b9482613916565b604082019050919050565b6000612bac60228361335a565b9150612bb782613965565b604082019050919050565b6000612bcf600e8361335a565b9150612bda826139b4565b602082019050919050565b6000612bf2600c8361335a565b9150612bfd826139dd565b602082019050919050565b6000612c15601d8361335a565b9150612c2082613a06565b602082019050919050565b6000612c3860268361335a565b9150612c4382613a2f565b604082019050919050565b6000612c5b60168361335a565b9150612c6682613a7e565b602082019050919050565b6000612c7e60208361335a565b9150612c8982613aa7565b602082019050919050565b6000612ca160218361335a565b9150612cac82613ad0565b604082019050919050565b6000612cc4601a8361335a565b9150612ccf82613b1f565b602082019050919050565b6000612ce760258361335a565b9150612cf282613b48565b604082019050919050565b6000612d0a60198361335a565b9150612d1582613b97565b602082019050919050565b6000612d2d60248361335a565b9150612d3882613bc0565b604082019050919050565b6000612d50601d8361335a565b9150612d5b82613c0f565b602082019050919050565b6000612d7360118361335a565b9150612d7e82613c38565b602082019050919050565b6000612d96601f8361335a565b9150612da182613c61565b602082019050919050565b6000612db960138361335a565b9150612dc482613c8a565b602082019050919050565b6000612ddc601b8361335a565b9150612de782613cb3565b602082019050919050565b6000612dff60258361335a565b9150612e0a82613cdc565b604082019050919050565b6000612e22601f8361335a565b9150612e2d82613d2b565b602082019050919050565b612e418161364b565b82525050565b612e58612e538261364b565b613773565b82525050565b612e6781613655565b82525050565b6000612e798285612aaa565b601482019150612e898284612e47565b6020820191508190509392505050565b6000602082019050612eae6000830184612a9b565b92915050565b6000606082019050612ec96000830186612a9b565b612ed66020830185612a9b565b612ee36040830184612e38565b949350505050565b6000604082019050612f006000830185612a9b565b612f0d6020830184612e38565b9392505050565b6000606082019050612f296000830186612a9b565b612f366020830185612e38565b612f436040830184612e38565b949350505050565b6000602082019050612f606000830184612ac1565b92915050565b6000608082019050612f7b6000830187612ad0565b612f886020830186612e5e565b612f956040830185612ad0565b612fa26060830184612ad0565b95945050505050565b6000602082019050612fc06000830184612adf565b92915050565b6000602082019050612fdb6000830184612aee565b92915050565b60006020820190508181036000830152612ffb8184612afd565b905092915050565b6000602082019050818103600083015261301c81612b36565b9050919050565b6000602082019050818103600083015261303c81612b59565b9050919050565b6000602082019050818103600083015261305c81612b7c565b9050919050565b6000602082019050818103600083015261307c81612b9f565b9050919050565b6000602082019050818103600083015261309c81612bc2565b9050919050565b600060208201905081810360008301526130bc81612be5565b9050919050565b600060208201905081810360008301526130dc81612c08565b9050919050565b600060208201905081810360008301526130fc81612c2b565b9050919050565b6000602082019050818103600083015261311c81612c4e565b9050919050565b6000602082019050818103600083015261313c81612c71565b9050919050565b6000602082019050818103600083015261315c81612c94565b9050919050565b6000602082019050818103600083015261317c81612cb7565b9050919050565b6000602082019050818103600083015261319c81612cda565b9050919050565b600060208201905081810360008301526131bc81612cfd565b9050919050565b600060208201905081810360008301526131dc81612d20565b9050919050565b600060208201905081810360008301526131fc81612d43565b9050919050565b6000602082019050818103600083015261321c81612d66565b9050919050565b6000602082019050818103600083015261323c81612d89565b9050919050565b6000602082019050818103600083015261325c81612dac565b9050919050565b6000602082019050818103600083015261327c81612dcf565b9050919050565b6000602082019050818103600083015261329c81612df2565b9050919050565b600060208201905081810360008301526132bc81612e15565b9050919050565b60006020820190506132d86000830184612e38565b92915050565b60006020820190506132f36000830184612e5e565b92915050565b6000613303613314565b905061330f828261371e565b919050565b6000604051905090565b600067ffffffffffffffff8211156133395761333861380a565b5b6133428261384d565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b60006133768261364b565b91506133818361364b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156133b6576133b561377d565b5b828201905092915050565b60006133cc8261364b565b91506133d78361364b565b9250826133e7576133e66137ac565b5b828204905092915050565b6000808291508390505b600185111561343c578086048111156134185761341761377d565b5b60018516156134275780820291505b80810290506134358561386b565b94506133fc565b94509492505050565b60006134508261364b565b915061345b8361364b565b92506134887fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484613490565b905092915050565b6000826134a0576001905061355c565b816134ae576000905061355c565b81600181146134c457600281146134ce576134fd565b600191505061355c565b60ff8411156134e0576134df61377d565b5b8360020a9150848211156134f7576134f661377d565b5b5061355c565b5060208310610133831016604e8410600b84101617156135325782820a90508381111561352d5761352c61377d565b5b61355c565b61353f84848460016133f2565b925090508184048111156135565761355561377d565b5b81810290505b9392505050565b600061356e8261364b565b91506135798361364b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156135b2576135b161377d565b5b828202905092915050565b60006135c88261364b565b91506135d38361364b565b9250828210156135e6576135e561377d565b5b828203905092915050565b60006135fc8261362b565b9050919050565b600061360e8261362b565b9050919050565b60008115159050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b600061366d82613686565b9050919050565b600061367f82613686565b9050919050565b600061369182613698565b9050919050565b60006136a38261362b565b9050919050565b82818337600083830152505050565b60005b838110156136d75780820151818401526020810190506136bc565b838111156136e6576000848401525b50505050565b6000600282049050600182168061370457607f821691505b60208210811415613718576137176137db565b5b50919050565b6137278261384d565b810181811067ffffffffffffffff821117156137465761374561380a565b5b80604052505050565b600061375a82613761565b9050919050565b600061376c8261385e565b9050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b60008160011c9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f696e76616c6964207369676e6572000000000000000000000000000000000000600082015250565b7f6361702065786365656465640000000000000000000000000000000000000000600082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f7377617070656420616d6f756e74206578636565647300000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f737761702066726f6d20746865207a65726f2061646472657373000000000000600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332304361707065643a2063617020657863656564656400000000000000600082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f6275726e20616d6f756e74206578636565647320616c6c6f77616e6365000000600082015250565b7f696e76616c696420737761705072696365000000000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f7377617020616d6f756e74206578636565647300000000000000000000000000600082015250565b7f7377617020616d6f756e7420657863656564732062616c616e63650000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b613d5d816135f1565b8114613d6857600080fd5b50565b613d7481613603565b8114613d7f57600080fd5b50565b613d8b81613615565b8114613d9657600080fd5b50565b613da28161364b565b8114613dad57600080fd5b5056fea26469706673582212201fe75652c836b5bf123386835c6786d21ee10281491d607399fefe0f4dd8fde364736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000d45bb3ef501c0d704e62370f21b2c0004aceb3d1
-----Decoded View---------------
Arg [0] : _signer (address): 0xD45Bb3Ef501c0D704E62370f21B2C0004ACeb3D1
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000d45bb3ef501c0d704e62370f21b2c0004aceb3d1
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.