Overview
Max Total Supply
100,000,000 RUNIC
Holders
459 (0.00%)
Market
Price
$0.01 @ 0.000003 ETH (-0.22%)
Onchain Market Cap
$617,155.00
Circulating Supply Market Cap
$0.00
Other Info
Token Contract (WITH 18 Decimals)
Balance
0 RUNICValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
RunicChain
Compiler Version
v0.8.21+commit.d9974bed
Optimization Enabled:
No with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
/** * @title Runic Chain: Bitcoin Layer 2 offers an advanced and robust ecosystem to maximize Bitcoin potential * * Email : [email protected] * Website : https://runic.build * Twitter : https://twitter.com/RunicLayer2 * Telegram : https://t.me/RunicLayer2 * Discord : https://discord.gg/runiclayer2 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.20; import {ERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol"; import {IUniswapV2Router02} from "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol"; import {IUniswapV2Factory} from "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol"; contract RunicChain is Ownable, ERC20 { uint256 public constant TOTAL_SUPPLY = 100_000_000 ether; address public constant V2_ROUTER = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D; address public immutable WETH; address public MARKETING_WALLET; address public INFRASTRUCTURE_WALLET; uint256 public MAX_TOKEN_HOLDING = TOTAL_SUPPLY / 200; // 0.5% uint256 public MAX_TX_SIZE = TOTAL_SUPPLY / 200; // 0.5% mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) private _automatedMarketMakerPairs; uint256 public swapTokenAt = 10_000 ether; bool private _swaping = false; uint256 private _openTradingBlock; constructor( address infrastructure_ ) ERC20("Runic Chain", "RUNIC") Ownable(_msgSender()) { MARKETING_WALLET = _msgSender(); INFRASTRUCTURE_WALLET = infrastructure_; address _factory = IUniswapV2Router02(V2_ROUTER).factory(); address _weth = IUniswapV2Router02(V2_ROUTER).WETH(); address pair = IUniswapV2Factory(_factory).createPair( address(this), _weth ); WETH = _weth; _automatedMarketMakerPairs[pair] = true; _isExcludedFromFees[_msgSender()] = true; _isExcludedFromFees[address(this)] = true; _isExcludedFromFees[address(V2_ROUTER)] = true; _mint(_msgSender(), TOTAL_SUPPLY); _approve(_msgSender(), address(V2_ROUTER), type(uint256).max); } function openTrading(uint256 _incBlock) external { require(_openTradingBlock == 0, "Runic: trading already opened"); _openTradingBlock = block.number + _incBlock; } function setSwapTokensAtAmount(uint256 _newAmount) external onlyOwner { swapTokenAt = _newAmount; } function setMaxTokenHolding(uint256 _newAmount) external onlyOwner { require( _newAmount > TOTAL_SUPPLY / 1000, "Runic: new amount only gt 0.1% or more of total supply" ); MAX_TOKEN_HOLDING = _newAmount; } function setMaxTxSize(uint256 _newAmount) external onlyOwner { require( _newAmount > TOTAL_SUPPLY / 1000, "Runic: new amount only gt 0.1% or more of total supply" ); MAX_TX_SIZE = _newAmount; } function getIsExcludedFromFees( address _address ) external view returns (bool) { return _isExcludedFromFees[_address]; } function excludedFromFees( address _address, bool _value ) external onlyOwner { _isExcludedFromFees[_address] = _value; } function _update( address from, address to, uint256 amount ) internal override { if ( _isExcludedFromFees[from] || _isExcludedFromFees[to] || (!_automatedMarketMakerPairs[to] && !_automatedMarketMakerPairs[from]) || _swaping ) { super._update(from, to, amount); return; } require( _openTradingBlock > 0 && _openTradingBlock < block.number, "Runic: trading disabled" ); if (_automatedMarketMakerPairs[from]) { require(amount <= MAX_TX_SIZE, "Runic: amount exceeds max tx size"); require( balanceOf(to) + amount <= MAX_TOKEN_HOLDING, "Runic: amount exceeds max token holding" ); } if (_automatedMarketMakerPairs[to] && canSwap()) { _swaping = true; _swapTokenForETH(); _swaping = false; } uint256 fee = (amount * 5) / 100; if (fee > 0) { super._update(from, address(this), fee); amount = amount - fee; } super._update(from, to, amount); } function canSwap() private view returns (bool) { return balanceOf(address(this)) >= swapTokenAt; } function burn(uint256 amount) external { _burn(_msgSender(), amount); } receive() external payable {} function _swapTokenForETH() private { address[] memory path = new address[](2); path[0] = address(this); path[1] = WETH; _approve(address(this), V2_ROUTER, swapTokenAt); IUniswapV2Router02(V2_ROUTER) .swapExactTokensForETHSupportingFeeOnTransferTokens( swapTokenAt, 0, path, address(this), block.timestamp ); uint256 balance = address(this).balance; uint256 marketing = (balance * 40) / 100; // 40% uint256 infrastructure = balance - marketing; // 60% sendETH(marketing, MARKETING_WALLET); sendETH(infrastructure, INFRASTRUCTURE_WALLET); } function sendETH(uint256 amount, address to) internal { (bool success, ) = to.call{value: amount}(""); require(success, "Runic: failed to send ETH"); } function setFeeWallet( address _marketing, address _infrastructure ) external { require( _msgSender() == MARKETING_WALLET || _msgSender() == INFRASTRUCTURE_WALLET || _msgSender() == owner(), "Runic: only marketing or infrastructure wallet can set fee wallet" ); MARKETING_WALLET = _marketing; INFRASTRUCTURE_WALLET = _infrastructure; } function setAutomatedMarketMakerPair( address _address, bool _value ) external onlyOwner { _automatedMarketMakerPairs[_address] = _value; } function isAutomatedMarketMakerPair( address _address ) external view returns (bool) { return _automatedMarketMakerPairs[_address]; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; import {Context} from "../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. * * The initial owner is set to the address provided by the deployer. 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; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling 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 { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _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 v5.0.0) (interfaces/draft-IERC6093.sol) pragma solidity ^0.8.20; /** * @dev Standard ERC20 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens. */ interface IERC20Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC20InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC20InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers. * @param spender Address that may be allowed to operate on tokens without being their owner. * @param allowance Amount of tokens a `spender` is allowed to operate with. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC20InvalidApprover(address approver); /** * @dev Indicates a failure with the `spender` to be approved. Used in approvals. * @param spender Address that may be allowed to operate on tokens without being their owner. */ error ERC20InvalidSpender(address spender); } /** * @dev Standard ERC721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20. * Used in balance queries. * @param owner Address of the current owner of a token. */ error ERC721InvalidOwner(address owner); /** * @dev Indicates a `tokenId` whose `owner` is the zero address. * @param tokenId Identifier number of a token. */ error ERC721NonexistentToken(uint256 tokenId); /** * @dev Indicates an error related to the ownership over a particular token. Used in transfers. * @param sender Address whose tokens are being transferred. * @param tokenId Identifier number of a token. * @param owner Address of the current owner of a token. */ error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC721InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC721InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param tokenId Identifier number of a token. */ error ERC721InsufficientApproval(address operator, uint256 tokenId); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC721InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC721InvalidOperator(address operator); } /** * @dev Standard ERC1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens. */ interface IERC1155Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. * @param tokenId Identifier number of a token. */ error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC1155InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC1155InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param owner Address of the current owner of a token. */ error ERC1155MissingApprovalForAll(address operator, address owner); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC1155InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC1155InvalidOperator(address operator); /** * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. * Used in batch transfers. * @param idsLength Length of the array of token identifiers * @param valuesLength Length of the array of token amounts */ error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.20; import {IERC20} from "./IERC20.sol"; import {IERC20Metadata} from "./extensions/IERC20Metadata.sol"; import {Context} from "../../utils/Context.sol"; import {IERC20Errors} from "../../interfaces/draft-IERC6093.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}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * 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. */ abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors { mapping(address account => uint256) private _balances; mapping(address account => mapping(address spender => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * 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 returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's 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 returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual 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 `value`. */ function transfer(address to, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _transfer(owner, to, value); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `value` 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 value) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, value); 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 `value`. * - the caller must have allowance for ``from``'s tokens of at least * `value`. */ function transferFrom(address from, address to, uint256 value) public virtual returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, value); _transfer(from, to, value); return true; } /** * @dev Moves a `value` amount of tokens from `from` to `to`. * * 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. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _transfer(address from, address to, uint256 value) internal { if (from == address(0)) { revert ERC20InvalidSender(address(0)); } if (to == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(from, to, value); } /** * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from` * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding * this function. * * Emits a {Transfer} event. */ function _update(address from, address to, uint256 value) internal virtual { if (from == address(0)) { // Overflow check required: The rest of the code assumes that totalSupply never overflows _totalSupply += value; } else { uint256 fromBalance = _balances[from]; if (fromBalance < value) { revert ERC20InsufficientBalance(from, fromBalance, value); } unchecked { // Overflow not possible: value <= fromBalance <= totalSupply. _balances[from] = fromBalance - value; } } if (to == address(0)) { unchecked { // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply. _totalSupply -= value; } } else { unchecked { // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256. _balances[to] += value; } } emit Transfer(from, to, value); } /** * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0). * Relies on the `_update` mechanism * * Emits a {Transfer} event with `from` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _mint(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(address(0), account, value); } /** * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply. * Relies on the `_update` mechanism. * * Emits a {Transfer} event with `to` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead */ function _burn(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidSender(address(0)); } _update(account, address(0), value); } /** * @dev Sets `value` 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. * * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument. */ function _approve(address owner, address spender, uint256 value) internal { _approve(owner, spender, value, true); } /** * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event. * * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any * `Approval` event during `transferFrom` operations. * * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to * true using the following override: * ``` * function _approve(address owner, address spender, uint256 value, bool) internal virtual override { * super._approve(owner, spender, value, true); * } * ``` * * Requirements are the same as {_approve}. */ function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual { if (owner == address(0)) { revert ERC20InvalidApprover(address(0)); } if (spender == address(0)) { revert ERC20InvalidSpender(address(0)); } _allowances[owner][spender] = value; if (emitEvent) { emit Approval(owner, spender, value); } } /** * @dev Updates `owner` s allowance for `spender` based on spent `value`. * * Does not update the allowance value in case of infinite allowance. * Revert if not enough allowance is available. * * Does not emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 value) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { if (currentAllowance < value) { revert ERC20InsufficientAllowance(spender, currentAllowance, value); } unchecked { _approve(owner, spender, currentAllowance - value, false); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.20; import {IERC20} from "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.20; /** * @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 value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` 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 value) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) pragma solidity ^0.8.20; /** * @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; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } }
pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; }
pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); }
pragma solidity >=0.6.2; import './IUniswapV2Router01.sol'; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; }
{ "evmVersion": "paris", "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":"infrastructure_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"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":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":"INFRASTRUCTURE_WALLET","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MARKETING_WALLET","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOKEN_HOLDING","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TX_SIZE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"V2_ROUTER","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WETH","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"value","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":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_value","type":"bool"}],"name":"excludedFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"getIsExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"isAutomatedMarketMakerPair","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_incBlock","type":"uint256"}],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","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":"_address","type":"address"},{"internalType":"bool","name":"_value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_marketing","type":"address"},{"internalType":"address","name":"_infrastructure","type":"address"}],"name":"setFeeWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newAmount","type":"uint256"}],"name":"setMaxTokenHolding","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newAmount","type":"uint256"}],"name":"setMaxTxSize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newAmount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapTokenAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"value","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":"value","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"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60a060405260c86a52b7d2dcc80cd2e40000006200001e91906200138c565b60085560c86a52b7d2dcc80cd2e40000006200003b91906200138c565b60095569021e19e0c9bab2400000600c556000600d60006101000a81548160ff0219169083151502179055503480156200007457600080fd5b50604051620046ad380380620046ad83398181016040528101906200009a91906200142e565b6040518060400160405280600b81526020017f52756e696320436861696e0000000000000000000000000000000000000000008152506040518060400160405280600581526020017f52554e4943000000000000000000000000000000000000000000000000000000815250620001166200063260201b60201c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036200018b5760006040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040162000182919062001471565b60405180910390fd5b6200019c816200063a60201b60201c565b508160049081620001ae9190620016fe565b508060059081620001c09190620016fe565b505050620001d36200063260201b60201c565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002b6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002dc91906200142e565b90506000737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000340573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200036691906200142e565b905060008273ffffffffffffffffffffffffffffffffffffffff1663c9c6539630846040518363ffffffff1660e01b8152600401620003a7929190620017e5565b6020604051808303816000875af1158015620003c7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003ed91906200142e565b90508173ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250506001600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600a6000620004916200063260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600a60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600a6000737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620005d2620005ba6200063260201b60201c565b6a52b7d2dcc80cd2e4000000620006fe60201b60201c565b62000628620005e66200063260201b60201c565b737a250d5630b4cf539739df2c5dacb4c659f2488d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6200078b60201b60201c565b5050505062001d53565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620007735760006040517fec442f050000000000000000000000000000000000000000000000000000000081526004016200076a919062001471565b60405180910390fd5b6200078760008383620007a560201b60201c565b5050565b620007a0838383600162000b9e60201b60201c565b505050565b600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680620008475750600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80620008f45750600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015620008f35750600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b5b806200090c5750600d60009054906101000a900460ff165b156200092b576200092583838362000d7e60201b60201c565b62000b99565b6000600e541180156200093f575043600e54105b62000981576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009789062001873565b60405180910390fd5b600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161562000a825760095481111562000a1c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a13906200190b565b60405180910390fd5b6008548162000a318462000fb160201b60201c565b62000a3d91906200192d565b111562000a81576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a7890620019de565b60405180910390fd5b5b600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801562000ae8575062000ae762000ffa60201b60201c565b5b1562000b35576001600d60006101000a81548160ff02191690831515021790555062000b196200101760201b60201c565b6000600d60006101000a81548160ff0219169083151502179055505b6000606460058362000b48919062001a00565b62000b5491906200138c565b9050600081111562000b845762000b7384308362000d7e60201b60201c565b808262000b81919062001a4b565b91505b62000b9784848462000d7e60201b60201c565b505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160362000c135760006040517fe602df0500000000000000000000000000000000000000000000000000000000815260040162000c0a919062001471565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000c885760006040517f94280d6200000000000000000000000000000000000000000000000000000000815260040162000c7f919062001471565b60405180910390fd5b81600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550801562000d78578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405162000d6f919062001a97565b60405180910390a35b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000dd457806003600082825462000dc791906200192d565b9250508190555062000eac565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101562000e64578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040162000e5b9392919062001ab4565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000ef7578060036000828254039250508190555062000f45565b80600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000fa4919062001a97565b60405180910390a3505050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600c54620010103062000fb160201b60201c565b1015905090565b6000600267ffffffffffffffff81111562001037576200103662001499565b5b604051908082528060200260200182016040528015620010665781602001602082028036833780820191505090505b509050308160008151811062001081576200108062001af1565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060805181600181518110620010d557620010d462001af1565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506200113830737a250d5630b4cf539739df2c5dacb4c659f2488d600c546200078b60201b60201c565b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947600c5460008430426040518663ffffffff1660e01b81526004016200119295949392919062001c31565b600060405180830381600087803b158015620011ad57600080fd5b505af1158015620011c2573d6000803e3d6000fd5b50505050600047905060006064602883620011de919062001a00565b620011ea91906200138c565b905060008183620011fc919062001a4b565b90506200123282600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166200126c60201b60201c565b6200126681600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166200126c60201b60201c565b50505050565b60008173ffffffffffffffffffffffffffffffffffffffff1683604051620012949062001cca565b60006040518083038185875af1925050503d8060008114620012d3576040519150601f19603f3d011682016040523d82523d6000602084013e620012d8565b606091505b50509050806200131f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620013169062001d31565b60405180910390fd5b505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620013998262001324565b9150620013a68362001324565b925082620013b957620013b86200132e565b5b828204905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620013f682620013c9565b9050919050565b6200140881620013e9565b81146200141457600080fd5b50565b6000815190506200142881620013fd565b92915050565b600060208284031215620014475762001446620013c4565b5b6000620014578482850162001417565b91505092915050565b6200146b81620013e9565b82525050565b600060208201905062001488600083018462001460565b92915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200151057607f821691505b602082108103620015265762001525620014c8565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620015907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262001551565b6200159c868362001551565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620015df620015d9620015d38462001324565b620015b4565b62001324565b9050919050565b6000819050919050565b620015fb83620015be565b620016136200160a82620015e6565b8484546200155e565b825550505050565b600090565b6200162a6200161b565b62001637818484620015f0565b505050565b5b818110156200165f576200165360008262001620565b6001810190506200163d565b5050565b601f821115620016ae5762001678816200152c565b620016838462001541565b8101602085101562001693578190505b620016ab620016a28562001541565b8301826200163c565b50505b505050565b600082821c905092915050565b6000620016d360001984600802620016b3565b1980831691505092915050565b6000620016ee8383620016c0565b9150826002028217905092915050565b62001709826200148e565b67ffffffffffffffff81111562001725576200172462001499565b5b620017318254620014f7565b6200173e82828562001663565b600060209050601f83116001811462001776576000841562001761578287015190505b6200176d8582620016e0565b865550620017dd565b601f19841662001786866200152c565b60005b82811015620017b05784890151825560018201915060208501945060208101905062001789565b86831015620017d05784890151620017cc601f891682620016c0565b8355505b6001600288020188555050505b505050505050565b6000604082019050620017fc600083018562001460565b6200180b602083018462001460565b9392505050565b600082825260208201905092915050565b7f52756e69633a2074726164696e672064697361626c6564000000000000000000600082015250565b60006200185b60178362001812565b9150620018688262001823565b602082019050919050565b600060208201905081810360008301526200188e816200184c565b9050919050565b7f52756e69633a20616d6f756e742065786365656473206d61782074782073697a60008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b6000620018f360218362001812565b9150620019008262001895565b604082019050919050565b600060208201905081810360008301526200192681620018e4565b9050919050565b60006200193a8262001324565b9150620019478362001324565b92508282019050808211156200196257620019616200135d565b5b92915050565b7f52756e69633a20616d6f756e742065786365656473206d617820746f6b656e2060008201527f686f6c64696e6700000000000000000000000000000000000000000000000000602082015250565b6000620019c660278362001812565b9150620019d38262001968565b604082019050919050565b60006020820190508181036000830152620019f981620019b7565b9050919050565b600062001a0d8262001324565b915062001a1a8362001324565b925082820262001a2a8162001324565b9150828204841483151762001a445762001a436200135d565b5b5092915050565b600062001a588262001324565b915062001a658362001324565b925082820390508181111562001a805762001a7f6200135d565b5b92915050565b62001a918162001324565b82525050565b600060208201905062001aae600083018462001a86565b92915050565b600060608201905062001acb600083018662001460565b62001ada602083018562001a86565b62001ae9604083018462001a86565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b600062001b4b62001b4562001b3f8462001b20565b620015b4565b62001324565b9050919050565b62001b5d8162001b2a565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b62001b9a81620013e9565b82525050565b600062001bae838362001b8f565b60208301905092915050565b6000602082019050919050565b600062001bd48262001b63565b62001be0818562001b6e565b935062001bed8362001b7f565b8060005b8381101562001c2457815162001c08888262001ba0565b975062001c158362001bba565b92505060018101905062001bf1565b5085935050505092915050565b600060a08201905062001c48600083018862001a86565b62001c57602083018762001b52565b818103604083015262001c6b818662001bc7565b905062001c7c606083018562001460565b62001c8b608083018462001a86565b9695505050505050565b600081905092915050565b50565b600062001cb260008362001c95565b915062001cbf8262001ca0565b600082019050919050565b600062001cd78262001ca3565b9150819050919050565b7f52756e69633a206661696c656420746f2073656e642045544800000000000000600082015250565b600062001d1960198362001812565b915062001d268262001ce1565b602082019050919050565b6000602082019050818103600083015262001d4c8162001d0a565b9050919050565b60805161293762001d7660003960008181610d7e0152611b8001526129376000f3fe6080604052600436106101d15760003560e01c80638ada032e116100f7578063ad5c464811610095578063c68bb7ba11610064578063c68bb7ba14610687578063d1633649146106b0578063dd62ed3e146106d9578063f2fde38b14610716576101d8565b8063ad5c4648146105dd578063afa4f3b214610608578063c03c2cf914610631578063c6859d071461065c576101d8565b806395d89b41116100d157806395d89b41146105235780639a7a23d61461054e578063a4d560e514610577578063a9059cbb146105a0576101d8565b80638ada032e146104a25780638da5cb5b146104cd578063902d55a5146104f8576101d8565b806342966c681161016f57806373bc5a361161013e57806373bc5a36146103d457806375bbbe78146103ff5780637949a403146104285780637b16cea014610465576101d8565b806342966c681461032c5780634e79019b1461035557806370a0823114610380578063715018a6146103bd576101d8565b806318160ddd116101ab57806318160ddd1461026e57806323b872dd14610299578063313ce567146102d65780633cc587ce14610301576101d8565b806306fdde03146101dd578063095ea7b31461020857806316697fc514610245576101d8565b366101d857005b600080fd5b3480156101e957600080fd5b506101f261073f565b6040516101ff9190611e69565b60405180910390f35b34801561021457600080fd5b5061022f600480360381019061022a9190611f24565b6107d1565b60405161023c9190611f7f565b60405180910390f35b34801561025157600080fd5b5061026c60048036038101906102679190611fc6565b6107f4565b005b34801561027a57600080fd5b50610283610857565b6040516102909190612015565b60405180910390f35b3480156102a557600080fd5b506102c060048036038101906102bb9190612030565b610861565b6040516102cd9190611f7f565b60405180910390f35b3480156102e257600080fd5b506102eb610890565b6040516102f8919061209f565b60405180910390f35b34801561030d57600080fd5b50610316610899565b60405161032391906120c9565b60405180910390f35b34801561033857600080fd5b50610353600480360381019061034e91906120e4565b6108bf565b005b34801561036157600080fd5b5061036a6108d3565b6040516103779190612015565b60405180910390f35b34801561038c57600080fd5b506103a760048036038101906103a29190612111565b6108d9565b6040516103b49190612015565b60405180910390f35b3480156103c957600080fd5b506103d2610922565b005b3480156103e057600080fd5b506103e9610936565b6040516103f69190612015565b60405180910390f35b34801561040b57600080fd5b506104266004803603810190610421919061213e565b61093c565b005b34801561043457600080fd5b5061044f600480360381019061044a9190612111565b610afc565b60405161045c9190611f7f565b60405180910390f35b34801561047157600080fd5b5061048c60048036038101906104879190612111565b610b52565b6040516104999190611f7f565b60405180910390f35b3480156104ae57600080fd5b506104b7610ba8565b6040516104c491906120c9565b60405180910390f35b3480156104d957600080fd5b506104e2610bc0565b6040516104ef91906120c9565b60405180910390f35b34801561050457600080fd5b5061050d610be9565b60405161051a9190612015565b60405180910390f35b34801561052f57600080fd5b50610538610bf8565b6040516105459190611e69565b60405180910390f35b34801561055a57600080fd5b5061057560048036038101906105709190611fc6565b610c8a565b005b34801561058357600080fd5b5061059e600480360381019061059991906120e4565b610ced565b005b3480156105ac57600080fd5b506105c760048036038101906105c29190611f24565b610d59565b6040516105d49190611f7f565b60405180910390f35b3480156105e957600080fd5b506105f2610d7c565b6040516105ff91906120c9565b60405180910390f35b34801561061457600080fd5b5061062f600480360381019061062a91906120e4565b610da0565b005b34801561063d57600080fd5b50610646610db2565b6040516106539190612015565b60405180910390f35b34801561066857600080fd5b50610671610db8565b60405161067e91906120c9565b60405180910390f35b34801561069357600080fd5b506106ae60048036038101906106a991906120e4565b610dde565b005b3480156106bc57600080fd5b506106d760048036038101906106d291906120e4565b610e4a565b005b3480156106e557600080fd5b5061070060048036038101906106fb919061213e565b610ea4565b60405161070d9190612015565b60405180910390f35b34801561072257600080fd5b5061073d60048036038101906107389190612111565b610f2b565b005b60606004805461074e906121ad565b80601f016020809104026020016040519081016040528092919081815260200182805461077a906121ad565b80156107c75780601f1061079c576101008083540402835291602001916107c7565b820191906000526020600020905b8154815290600101906020018083116107aa57829003601f168201915b5050505050905090565b6000806107dc610fb1565b90506107e9818585610fb9565b600191505092915050565b6107fc610fcb565b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600354905090565b60008061086c610fb1565b9050610879858285611052565b6108848585856110e6565b60019150509392505050565b60006012905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6108d06108ca610fb1565b826111da565b50565b60085481565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61092a610fcb565b610934600061125c565b565b600c5481565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661097d610fb1565b73ffffffffffffffffffffffffffffffffffffffff1614806109f35750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166109db610fb1565b73ffffffffffffffffffffffffffffffffffffffff16145b80610a375750610a01610bc0565b73ffffffffffffffffffffffffffffffffffffffff16610a1f610fb1565b73ffffffffffffffffffffffffffffffffffffffff16145b610a76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6d90612276565b60405180910390fd5b81600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6a52b7d2dcc80cd2e400000081565b606060058054610c07906121ad565b80601f0160208091040260200160405190810160405280929190818152602001828054610c33906121ad565b8015610c805780601f10610c5557610100808354040283529160200191610c80565b820191906000526020600020905b815481529060010190602001808311610c6357829003601f168201915b5050505050905090565b610c92610fcb565b80600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b610cf5610fcb565b6103e86a52b7d2dcc80cd2e4000000610d0e91906122f4565b8111610d4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4690612397565b60405180910390fd5b8060088190555050565b600080610d64610fb1565b9050610d718185856110e6565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b610da8610fcb565b80600c8190555050565b60095481565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610de6610fcb565b6103e86a52b7d2dcc80cd2e4000000610dff91906122f4565b8111610e40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3790612397565b60405180910390fd5b8060098190555050565b6000600e5414610e8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8690612403565b60405180910390fd5b8043610e9b9190612423565b600e8190555050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610f33610fcb565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610fa55760006040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610f9c91906120c9565b60405180910390fd5b610fae8161125c565b50565b600033905090565b610fc68383836001611320565b505050565b610fd3610fb1565b73ffffffffffffffffffffffffffffffffffffffff16610ff1610bc0565b73ffffffffffffffffffffffffffffffffffffffff161461105057611014610fb1565b6040517f118cdaa700000000000000000000000000000000000000000000000000000000815260040161104791906120c9565b60405180910390fd5b565b600061105e8484610ea4565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146110e057818110156110d0578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016110c793929190612457565b60405180910390fd5b6110df84848484036000611320565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036111585760006040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260040161114f91906120c9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111ca5760006040517fec442f050000000000000000000000000000000000000000000000000000000081526004016111c191906120c9565b60405180910390fd5b6111d58383836114f7565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361124c5760006040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260040161124391906120c9565b60405180910390fd5b611258826000836114f7565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036113925760006040517fe602df0500000000000000000000000000000000000000000000000000000000815260040161138991906120c9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036114045760006040517f94280d620000000000000000000000000000000000000000000000000000000081526004016113fb91906120c9565b60405180910390fd5b81600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080156114f1578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516114e89190612015565b60405180910390a35b50505050565b600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806115985750600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806116435750600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156116425750600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b5b8061165a5750600d60009054906101000a900460ff165b1561166f5761166a8383836118a4565b61189f565b6000600e54118015611682575043600e54105b6116c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b8906124da565b60405180910390fd5b600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156117b157600954811115611758576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174f9061256c565b60405180910390fd5b60085481611765846108d9565b61176f9190612423565b11156117b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a7906125fe565b60405180910390fd5b5b600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561180e575061180d611acc565b5b15611852576001600d60006101000a81548160ff021916908315150217905550611836611ae1565b6000600d60006101000a81548160ff0219169083151502179055505b60006064600583611863919061261e565b61186d91906122f4565b90506000811115611892576118838430836118a4565b808261188f9190612660565b91505b61189d8484846118a4565b505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036118f65780600360008282546118ea9190612423565b925050819055506119cb565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611983578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161197a93929190612457565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a145780600360008282540392505081905550611a62565b80600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611abf9190612015565b60405180910390a3505050565b6000600c54611ada306108d9565b1015905090565b6000600267ffffffffffffffff811115611afe57611afd612694565b5b604051908082528060200260200182016040528015611b2c5781602001602082028036833780820191505090505b5090503081600081518110611b4457611b436126c3565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000081600181518110611bb357611bb26126c3565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611c0e30737a250d5630b4cf539739df2c5dacb4c659f2488d600c54610fb9565b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947600c5460008430426040518663ffffffff1660e01b8152600401611c669594939291906127f5565b600060405180830381600087803b158015611c8057600080fd5b505af1158015611c94573d6000803e3d6000fd5b50505050600047905060006064602883611cae919061261e565b611cb891906122f4565b905060008183611cc89190612660565b9050611cf682600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611d28565b611d2281600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611d28565b50505050565b60008173ffffffffffffffffffffffffffffffffffffffff1683604051611d4e90612880565b60006040518083038185875af1925050503d8060008114611d8b576040519150601f19603f3d011682016040523d82523d6000602084013e611d90565b606091505b5050905080611dd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcb906128e1565b60405180910390fd5b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611e13578082015181840152602081019050611df8565b60008484015250505050565b6000601f19601f8301169050919050565b6000611e3b82611dd9565b611e458185611de4565b9350611e55818560208601611df5565b611e5e81611e1f565b840191505092915050565b60006020820190508181036000830152611e838184611e30565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611ebb82611e90565b9050919050565b611ecb81611eb0565b8114611ed657600080fd5b50565b600081359050611ee881611ec2565b92915050565b6000819050919050565b611f0181611eee565b8114611f0c57600080fd5b50565b600081359050611f1e81611ef8565b92915050565b60008060408385031215611f3b57611f3a611e8b565b5b6000611f4985828601611ed9565b9250506020611f5a85828601611f0f565b9150509250929050565b60008115159050919050565b611f7981611f64565b82525050565b6000602082019050611f946000830184611f70565b92915050565b611fa381611f64565b8114611fae57600080fd5b50565b600081359050611fc081611f9a565b92915050565b60008060408385031215611fdd57611fdc611e8b565b5b6000611feb85828601611ed9565b9250506020611ffc85828601611fb1565b9150509250929050565b61200f81611eee565b82525050565b600060208201905061202a6000830184612006565b92915050565b60008060006060848603121561204957612048611e8b565b5b600061205786828701611ed9565b935050602061206886828701611ed9565b925050604061207986828701611f0f565b9150509250925092565b600060ff82169050919050565b61209981612083565b82525050565b60006020820190506120b46000830184612090565b92915050565b6120c381611eb0565b82525050565b60006020820190506120de60008301846120ba565b92915050565b6000602082840312156120fa576120f9611e8b565b5b600061210884828501611f0f565b91505092915050565b60006020828403121561212757612126611e8b565b5b600061213584828501611ed9565b91505092915050565b6000806040838503121561215557612154611e8b565b5b600061216385828601611ed9565b925050602061217485828601611ed9565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806121c557607f821691505b6020821081036121d8576121d761217e565b5b50919050565b7f52756e69633a206f6e6c79206d61726b6574696e67206f7220696e667261737460008201527f727563747572652077616c6c65742063616e20736574206665652077616c6c6560208201527f7400000000000000000000000000000000000000000000000000000000000000604082015250565b6000612260604183611de4565b915061226b826121de565b606082019050919050565b6000602082019050818103600083015261228f81612253565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006122ff82611eee565b915061230a83611eee565b92508261231a57612319612296565b5b828204905092915050565b7f52756e69633a206e657720616d6f756e74206f6e6c7920677420302e3125206f60008201527f72206d6f7265206f6620746f74616c20737570706c7900000000000000000000602082015250565b6000612381603683611de4565b915061238c82612325565b604082019050919050565b600060208201905081810360008301526123b081612374565b9050919050565b7f52756e69633a2074726164696e6720616c7265616479206f70656e6564000000600082015250565b60006123ed601d83611de4565b91506123f8826123b7565b602082019050919050565b6000602082019050818103600083015261241c816123e0565b9050919050565b600061242e82611eee565b915061243983611eee565b9250828201905080821115612451576124506122c5565b5b92915050565b600060608201905061246c60008301866120ba565b6124796020830185612006565b6124866040830184612006565b949350505050565b7f52756e69633a2074726164696e672064697361626c6564000000000000000000600082015250565b60006124c4601783611de4565b91506124cf8261248e565b602082019050919050565b600060208201905081810360008301526124f3816124b7565b9050919050565b7f52756e69633a20616d6f756e742065786365656473206d61782074782073697a60008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b6000612556602183611de4565b9150612561826124fa565b604082019050919050565b6000602082019050818103600083015261258581612549565b9050919050565b7f52756e69633a20616d6f756e742065786365656473206d617820746f6b656e2060008201527f686f6c64696e6700000000000000000000000000000000000000000000000000602082015250565b60006125e8602783611de4565b91506125f38261258c565b604082019050919050565b60006020820190508181036000830152612617816125db565b9050919050565b600061262982611eee565b915061263483611eee565b925082820261264281611eee565b91508282048414831517612659576126586122c5565b5b5092915050565b600061266b82611eee565b915061267683611eee565b925082820390508181111561268e5761268d6122c5565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b6000819050919050565b600061272161271c612717846126f2565b6126fc565b611eee565b9050919050565b61273181612706565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61276c81611eb0565b82525050565b600061277e8383612763565b60208301905092915050565b6000602082019050919050565b60006127a282612737565b6127ac8185612742565b93506127b783612753565b8060005b838110156127e85781516127cf8882612772565b97506127da8361278a565b9250506001810190506127bb565b5085935050505092915050565b600060a08201905061280a6000830188612006565b6128176020830187612728565b81810360408301526128298186612797565b905061283860608301856120ba565b6128456080830184612006565b9695505050505050565b600081905092915050565b50565b600061286a60008361284f565b91506128758261285a565b600082019050919050565b600061288b8261285d565b9150819050919050565b7f52756e69633a206661696c656420746f2073656e642045544800000000000000600082015250565b60006128cb601983611de4565b91506128d682612895565b602082019050919050565b600060208201905081810360008301526128fa816128be565b905091905056fea26469706673582212209d520e719524d484acda5116444376ddc2a022a1b8439ed7911d08042af1516164736f6c634300081500330000000000000000000000006939901974d8564c5162ba459426d81e5a3d6f2c
Deployed Bytecode
0x6080604052600436106101d15760003560e01c80638ada032e116100f7578063ad5c464811610095578063c68bb7ba11610064578063c68bb7ba14610687578063d1633649146106b0578063dd62ed3e146106d9578063f2fde38b14610716576101d8565b8063ad5c4648146105dd578063afa4f3b214610608578063c03c2cf914610631578063c6859d071461065c576101d8565b806395d89b41116100d157806395d89b41146105235780639a7a23d61461054e578063a4d560e514610577578063a9059cbb146105a0576101d8565b80638ada032e146104a25780638da5cb5b146104cd578063902d55a5146104f8576101d8565b806342966c681161016f57806373bc5a361161013e57806373bc5a36146103d457806375bbbe78146103ff5780637949a403146104285780637b16cea014610465576101d8565b806342966c681461032c5780634e79019b1461035557806370a0823114610380578063715018a6146103bd576101d8565b806318160ddd116101ab57806318160ddd1461026e57806323b872dd14610299578063313ce567146102d65780633cc587ce14610301576101d8565b806306fdde03146101dd578063095ea7b31461020857806316697fc514610245576101d8565b366101d857005b600080fd5b3480156101e957600080fd5b506101f261073f565b6040516101ff9190611e69565b60405180910390f35b34801561021457600080fd5b5061022f600480360381019061022a9190611f24565b6107d1565b60405161023c9190611f7f565b60405180910390f35b34801561025157600080fd5b5061026c60048036038101906102679190611fc6565b6107f4565b005b34801561027a57600080fd5b50610283610857565b6040516102909190612015565b60405180910390f35b3480156102a557600080fd5b506102c060048036038101906102bb9190612030565b610861565b6040516102cd9190611f7f565b60405180910390f35b3480156102e257600080fd5b506102eb610890565b6040516102f8919061209f565b60405180910390f35b34801561030d57600080fd5b50610316610899565b60405161032391906120c9565b60405180910390f35b34801561033857600080fd5b50610353600480360381019061034e91906120e4565b6108bf565b005b34801561036157600080fd5b5061036a6108d3565b6040516103779190612015565b60405180910390f35b34801561038c57600080fd5b506103a760048036038101906103a29190612111565b6108d9565b6040516103b49190612015565b60405180910390f35b3480156103c957600080fd5b506103d2610922565b005b3480156103e057600080fd5b506103e9610936565b6040516103f69190612015565b60405180910390f35b34801561040b57600080fd5b506104266004803603810190610421919061213e565b61093c565b005b34801561043457600080fd5b5061044f600480360381019061044a9190612111565b610afc565b60405161045c9190611f7f565b60405180910390f35b34801561047157600080fd5b5061048c60048036038101906104879190612111565b610b52565b6040516104999190611f7f565b60405180910390f35b3480156104ae57600080fd5b506104b7610ba8565b6040516104c491906120c9565b60405180910390f35b3480156104d957600080fd5b506104e2610bc0565b6040516104ef91906120c9565b60405180910390f35b34801561050457600080fd5b5061050d610be9565b60405161051a9190612015565b60405180910390f35b34801561052f57600080fd5b50610538610bf8565b6040516105459190611e69565b60405180910390f35b34801561055a57600080fd5b5061057560048036038101906105709190611fc6565b610c8a565b005b34801561058357600080fd5b5061059e600480360381019061059991906120e4565b610ced565b005b3480156105ac57600080fd5b506105c760048036038101906105c29190611f24565b610d59565b6040516105d49190611f7f565b60405180910390f35b3480156105e957600080fd5b506105f2610d7c565b6040516105ff91906120c9565b60405180910390f35b34801561061457600080fd5b5061062f600480360381019061062a91906120e4565b610da0565b005b34801561063d57600080fd5b50610646610db2565b6040516106539190612015565b60405180910390f35b34801561066857600080fd5b50610671610db8565b60405161067e91906120c9565b60405180910390f35b34801561069357600080fd5b506106ae60048036038101906106a991906120e4565b610dde565b005b3480156106bc57600080fd5b506106d760048036038101906106d291906120e4565b610e4a565b005b3480156106e557600080fd5b5061070060048036038101906106fb919061213e565b610ea4565b60405161070d9190612015565b60405180910390f35b34801561072257600080fd5b5061073d60048036038101906107389190612111565b610f2b565b005b60606004805461074e906121ad565b80601f016020809104026020016040519081016040528092919081815260200182805461077a906121ad565b80156107c75780601f1061079c576101008083540402835291602001916107c7565b820191906000526020600020905b8154815290600101906020018083116107aa57829003601f168201915b5050505050905090565b6000806107dc610fb1565b90506107e9818585610fb9565b600191505092915050565b6107fc610fcb565b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600354905090565b60008061086c610fb1565b9050610879858285611052565b6108848585856110e6565b60019150509392505050565b60006012905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6108d06108ca610fb1565b826111da565b50565b60085481565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61092a610fcb565b610934600061125c565b565b600c5481565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661097d610fb1565b73ffffffffffffffffffffffffffffffffffffffff1614806109f35750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166109db610fb1565b73ffffffffffffffffffffffffffffffffffffffff16145b80610a375750610a01610bc0565b73ffffffffffffffffffffffffffffffffffffffff16610a1f610fb1565b73ffffffffffffffffffffffffffffffffffffffff16145b610a76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6d90612276565b60405180910390fd5b81600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6a52b7d2dcc80cd2e400000081565b606060058054610c07906121ad565b80601f0160208091040260200160405190810160405280929190818152602001828054610c33906121ad565b8015610c805780601f10610c5557610100808354040283529160200191610c80565b820191906000526020600020905b815481529060010190602001808311610c6357829003601f168201915b5050505050905090565b610c92610fcb565b80600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b610cf5610fcb565b6103e86a52b7d2dcc80cd2e4000000610d0e91906122f4565b8111610d4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4690612397565b60405180910390fd5b8060088190555050565b600080610d64610fb1565b9050610d718185856110e6565b600191505092915050565b7f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281565b610da8610fcb565b80600c8190555050565b60095481565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610de6610fcb565b6103e86a52b7d2dcc80cd2e4000000610dff91906122f4565b8111610e40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3790612397565b60405180910390fd5b8060098190555050565b6000600e5414610e8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8690612403565b60405180910390fd5b8043610e9b9190612423565b600e8190555050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610f33610fcb565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610fa55760006040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610f9c91906120c9565b60405180910390fd5b610fae8161125c565b50565b600033905090565b610fc68383836001611320565b505050565b610fd3610fb1565b73ffffffffffffffffffffffffffffffffffffffff16610ff1610bc0565b73ffffffffffffffffffffffffffffffffffffffff161461105057611014610fb1565b6040517f118cdaa700000000000000000000000000000000000000000000000000000000815260040161104791906120c9565b60405180910390fd5b565b600061105e8484610ea4565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146110e057818110156110d0578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016110c793929190612457565b60405180910390fd5b6110df84848484036000611320565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036111585760006040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260040161114f91906120c9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111ca5760006040517fec442f050000000000000000000000000000000000000000000000000000000081526004016111c191906120c9565b60405180910390fd5b6111d58383836114f7565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361124c5760006040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260040161124391906120c9565b60405180910390fd5b611258826000836114f7565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036113925760006040517fe602df0500000000000000000000000000000000000000000000000000000000815260040161138991906120c9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036114045760006040517f94280d620000000000000000000000000000000000000000000000000000000081526004016113fb91906120c9565b60405180910390fd5b81600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080156114f1578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516114e89190612015565b60405180910390a35b50505050565b600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806115985750600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806116435750600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156116425750600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b5b8061165a5750600d60009054906101000a900460ff165b1561166f5761166a8383836118a4565b61189f565b6000600e54118015611682575043600e54105b6116c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b8906124da565b60405180910390fd5b600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156117b157600954811115611758576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174f9061256c565b60405180910390fd5b60085481611765846108d9565b61176f9190612423565b11156117b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a7906125fe565b60405180910390fd5b5b600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561180e575061180d611acc565b5b15611852576001600d60006101000a81548160ff021916908315150217905550611836611ae1565b6000600d60006101000a81548160ff0219169083151502179055505b60006064600583611863919061261e565b61186d91906122f4565b90506000811115611892576118838430836118a4565b808261188f9190612660565b91505b61189d8484846118a4565b505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036118f65780600360008282546118ea9190612423565b925050819055506119cb565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611983578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161197a93929190612457565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a145780600360008282540392505081905550611a62565b80600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611abf9190612015565b60405180910390a3505050565b6000600c54611ada306108d9565b1015905090565b6000600267ffffffffffffffff811115611afe57611afd612694565b5b604051908082528060200260200182016040528015611b2c5781602001602082028036833780820191505090505b5090503081600081518110611b4457611b436126c3565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281600181518110611bb357611bb26126c3565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611c0e30737a250d5630b4cf539739df2c5dacb4c659f2488d600c54610fb9565b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947600c5460008430426040518663ffffffff1660e01b8152600401611c669594939291906127f5565b600060405180830381600087803b158015611c8057600080fd5b505af1158015611c94573d6000803e3d6000fd5b50505050600047905060006064602883611cae919061261e565b611cb891906122f4565b905060008183611cc89190612660565b9050611cf682600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611d28565b611d2281600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611d28565b50505050565b60008173ffffffffffffffffffffffffffffffffffffffff1683604051611d4e90612880565b60006040518083038185875af1925050503d8060008114611d8b576040519150601f19603f3d011682016040523d82523d6000602084013e611d90565b606091505b5050905080611dd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcb906128e1565b60405180910390fd5b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611e13578082015181840152602081019050611df8565b60008484015250505050565b6000601f19601f8301169050919050565b6000611e3b82611dd9565b611e458185611de4565b9350611e55818560208601611df5565b611e5e81611e1f565b840191505092915050565b60006020820190508181036000830152611e838184611e30565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611ebb82611e90565b9050919050565b611ecb81611eb0565b8114611ed657600080fd5b50565b600081359050611ee881611ec2565b92915050565b6000819050919050565b611f0181611eee565b8114611f0c57600080fd5b50565b600081359050611f1e81611ef8565b92915050565b60008060408385031215611f3b57611f3a611e8b565b5b6000611f4985828601611ed9565b9250506020611f5a85828601611f0f565b9150509250929050565b60008115159050919050565b611f7981611f64565b82525050565b6000602082019050611f946000830184611f70565b92915050565b611fa381611f64565b8114611fae57600080fd5b50565b600081359050611fc081611f9a565b92915050565b60008060408385031215611fdd57611fdc611e8b565b5b6000611feb85828601611ed9565b9250506020611ffc85828601611fb1565b9150509250929050565b61200f81611eee565b82525050565b600060208201905061202a6000830184612006565b92915050565b60008060006060848603121561204957612048611e8b565b5b600061205786828701611ed9565b935050602061206886828701611ed9565b925050604061207986828701611f0f565b9150509250925092565b600060ff82169050919050565b61209981612083565b82525050565b60006020820190506120b46000830184612090565b92915050565b6120c381611eb0565b82525050565b60006020820190506120de60008301846120ba565b92915050565b6000602082840312156120fa576120f9611e8b565b5b600061210884828501611f0f565b91505092915050565b60006020828403121561212757612126611e8b565b5b600061213584828501611ed9565b91505092915050565b6000806040838503121561215557612154611e8b565b5b600061216385828601611ed9565b925050602061217485828601611ed9565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806121c557607f821691505b6020821081036121d8576121d761217e565b5b50919050565b7f52756e69633a206f6e6c79206d61726b6574696e67206f7220696e667261737460008201527f727563747572652077616c6c65742063616e20736574206665652077616c6c6560208201527f7400000000000000000000000000000000000000000000000000000000000000604082015250565b6000612260604183611de4565b915061226b826121de565b606082019050919050565b6000602082019050818103600083015261228f81612253565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006122ff82611eee565b915061230a83611eee565b92508261231a57612319612296565b5b828204905092915050565b7f52756e69633a206e657720616d6f756e74206f6e6c7920677420302e3125206f60008201527f72206d6f7265206f6620746f74616c20737570706c7900000000000000000000602082015250565b6000612381603683611de4565b915061238c82612325565b604082019050919050565b600060208201905081810360008301526123b081612374565b9050919050565b7f52756e69633a2074726164696e6720616c7265616479206f70656e6564000000600082015250565b60006123ed601d83611de4565b91506123f8826123b7565b602082019050919050565b6000602082019050818103600083015261241c816123e0565b9050919050565b600061242e82611eee565b915061243983611eee565b9250828201905080821115612451576124506122c5565b5b92915050565b600060608201905061246c60008301866120ba565b6124796020830185612006565b6124866040830184612006565b949350505050565b7f52756e69633a2074726164696e672064697361626c6564000000000000000000600082015250565b60006124c4601783611de4565b91506124cf8261248e565b602082019050919050565b600060208201905081810360008301526124f3816124b7565b9050919050565b7f52756e69633a20616d6f756e742065786365656473206d61782074782073697a60008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b6000612556602183611de4565b9150612561826124fa565b604082019050919050565b6000602082019050818103600083015261258581612549565b9050919050565b7f52756e69633a20616d6f756e742065786365656473206d617820746f6b656e2060008201527f686f6c64696e6700000000000000000000000000000000000000000000000000602082015250565b60006125e8602783611de4565b91506125f38261258c565b604082019050919050565b60006020820190508181036000830152612617816125db565b9050919050565b600061262982611eee565b915061263483611eee565b925082820261264281611eee565b91508282048414831517612659576126586122c5565b5b5092915050565b600061266b82611eee565b915061267683611eee565b925082820390508181111561268e5761268d6122c5565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b6000819050919050565b600061272161271c612717846126f2565b6126fc565b611eee565b9050919050565b61273181612706565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61276c81611eb0565b82525050565b600061277e8383612763565b60208301905092915050565b6000602082019050919050565b60006127a282612737565b6127ac8185612742565b93506127b783612753565b8060005b838110156127e85781516127cf8882612772565b97506127da8361278a565b9250506001810190506127bb565b5085935050505092915050565b600060a08201905061280a6000830188612006565b6128176020830187612728565b81810360408301526128298186612797565b905061283860608301856120ba565b6128456080830184612006565b9695505050505050565b600081905092915050565b50565b600061286a60008361284f565b91506128758261285a565b600082019050919050565b600061288b8261285d565b9150819050919050565b7f52756e69633a206661696c656420746f2073656e642045544800000000000000600082015250565b60006128cb601983611de4565b91506128d682612895565b602082019050919050565b600060208201905081810360008301526128fa816128be565b905091905056fea26469706673582212209d520e719524d484acda5116444376ddc2a022a1b8439ed7911d08042af1516164736f6c63430008150033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000006939901974d8564c5162ba459426d81e5a3d6f2c
-----Decoded View---------------
Arg [0] : infrastructure_ (address): 0x6939901974d8564C5162BA459426d81e5A3D6F2c
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000006939901974d8564c5162ba459426d81e5a3d6f2c
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.