{
  "contractName": "ITickerRegistry",
  "abi": [
    {
      "constant": false,
      "inputs": [
        {
          "name": "_symbol",
          "type": "string"
        },
        {
          "name": "_owner",
          "type": "address"
        },
        {
          "name": "_tokenName",
          "type": "string"
        }
      ],
      "name": "checkValidity",
      "outputs": [
        {
          "name": "",
          "type": "bool"
        }
      ],
      "payable": false,
      "stateMutability": "nonpayable",
      "type": "function"
    },
    {
      "constant": true,
      "inputs": [
        {
          "name": "_symbol",
          "type": "string"
        }
      ],
      "name": "getDetails",
      "outputs": [
        {
          "name": "",
          "type": "address"
        },
        {
          "name": "",
          "type": "uint256"
        },
        {
          "name": "",
          "type": "string"
        },
        {
          "name": "",
          "type": "bytes32"
        },
        {
          "name": "",
          "type": "bool"
        }
      ],
      "payable": false,
      "stateMutability": "view",
      "type": "function"
    },
    {
      "constant": false,
      "inputs": [
        {
          "name": "_symbol",
          "type": "string"
        },
        {
          "name": "_owner",
          "type": "address"
        },
        {
          "name": "_tokenName",
          "type": "string"
        },
        {
          "name": "_swarmHash",
          "type": "bytes32"
        }
      ],
      "name": "isReserved",
      "outputs": [
        {
          "name": "",
          "type": "bool"
        }
      ],
      "payable": false,
      "stateMutability": "nonpayable",
      "type": "function"
    }
  ],
  "bytecode": "0x",
  "deployedBytecode": "0x",
  "sourceMap": "",
  "deployedSourceMap": "",
  "source": "pragma solidity ^0.4.24;\n\n/**\n * @title Interface for the polymath ticker registry contract\n */\ncontract ITickerRegistry {\n    /**\n    * @notice Check the validity of the symbol\n    * @param _symbol token symbol\n    * @param _owner address of the owner\n    * @param _tokenName Name of the token\n    * @return bool\n    */\n    function checkValidity(string _symbol, address _owner, string _tokenName) public returns(bool);\n\n    /**\n    * @notice Returns the owner and timestamp for a given symbol\n    * @param _symbol symbol\n    */\n    function getDetails(string _symbol) public view returns (address, uint256, string, bytes32, bool);\n\n    /**\n     * @notice Check the symbol is reserved or not\n     * @param _symbol Symbol of the token\n     * @return bool\n     */\n     function isReserved(string _symbol, address _owner, string _tokenName, bytes32 _swarmHash) public returns(bool);\n\n}\n",
  "sourcePath": "/Users/satyamagrawal/Repositories/testing-package/polymath-core/contracts/interfaces/ITickerRegistry.sol",
  "ast": {
    "absolutePath": "/Users/satyamagrawal/Repositories/testing-package/polymath-core/contracts/interfaces/ITickerRegistry.sol",
    "exportedSymbols": {
      "ITickerRegistry": [
        10283
      ]
    },
    "id": 10284,
    "nodeType": "SourceUnit",
    "nodes": [
      {
        "id": 10243,
        "literals": [
          "solidity",
          "^",
          "0.4",
          ".24"
        ],
        "nodeType": "PragmaDirective",
        "src": "0:24:21"
      },
      {
        "baseContracts": [],
        "contractDependencies": [],
        "contractKind": "contract",
        "documentation": "@title Interface for the polymath ticker registry contract",
        "fullyImplemented": false,
        "id": 10283,
        "linearizedBaseContracts": [
          10283
        ],
        "name": "ITickerRegistry",
        "nodeType": "ContractDefinition",
        "nodes": [
          {
            "body": null,
            "documentation": "@notice Check the validity of the symbol\n@param _symbol token symbol\n@param _owner address of the owner\n@param _tokenName Name of the token\n@return bool",
            "id": 10254,
            "implemented": false,
            "isConstructor": false,
            "isDeclaredConst": false,
            "modifiers": [],
            "name": "checkValidity",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 10250,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 10245,
                  "name": "_symbol",
                  "nodeType": "VariableDeclaration",
                  "scope": 10254,
                  "src": "348:14:21",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_string_memory_ptr",
                    "typeString": "string"
                  },
                  "typeName": {
                    "id": 10244,
                    "name": "string",
                    "nodeType": "ElementaryTypeName",
                    "src": "348:6:21",
                    "typeDescriptions": {
                      "typeIdentifier": "t_string_storage_ptr",
                      "typeString": "string"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 10247,
                  "name": "_owner",
                  "nodeType": "VariableDeclaration",
                  "scope": 10254,
                  "src": "364:14:21",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 10246,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "364:7:21",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 10249,
                  "name": "_tokenName",
                  "nodeType": "VariableDeclaration",
                  "scope": 10254,
                  "src": "380:17:21",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_string_memory_ptr",
                    "typeString": "string"
                  },
                  "typeName": {
                    "id": 10248,
                    "name": "string",
                    "nodeType": "ElementaryTypeName",
                    "src": "380:6:21",
                    "typeDescriptions": {
                      "typeIdentifier": "t_string_storage_ptr",
                      "typeString": "string"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "347:51:21"
            },
            "payable": false,
            "returnParameters": {
              "id": 10253,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 10252,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 10254,
                  "src": "414:4:21",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bool",
                    "typeString": "bool"
                  },
                  "typeName": {
                    "id": 10251,
                    "name": "bool",
                    "nodeType": "ElementaryTypeName",
                    "src": "414:4:21",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bool",
                      "typeString": "bool"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "413:6:21"
            },
            "scope": 10283,
            "src": "325:95:21",
            "stateMutability": "nonpayable",
            "superFunction": null,
            "visibility": "public"
          },
          {
            "body": null,
            "documentation": "@notice Returns the owner and timestamp for a given symbol\n@param _symbol symbol",
            "id": 10269,
            "implemented": false,
            "isConstructor": false,
            "isDeclaredConst": true,
            "modifiers": [],
            "name": "getDetails",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 10257,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 10256,
                  "name": "_symbol",
                  "nodeType": "VariableDeclaration",
                  "scope": 10269,
                  "src": "554:14:21",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_string_memory_ptr",
                    "typeString": "string"
                  },
                  "typeName": {
                    "id": 10255,
                    "name": "string",
                    "nodeType": "ElementaryTypeName",
                    "src": "554:6:21",
                    "typeDescriptions": {
                      "typeIdentifier": "t_string_storage_ptr",
                      "typeString": "string"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "553:16:21"
            },
            "payable": false,
            "returnParameters": {
              "id": 10268,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 10259,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 10269,
                  "src": "591:7:21",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 10258,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "591:7:21",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 10261,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 10269,
                  "src": "600:7:21",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 10260,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "600:7:21",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 10263,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 10269,
                  "src": "609:6:21",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_string_memory_ptr",
                    "typeString": "string"
                  },
                  "typeName": {
                    "id": 10262,
                    "name": "string",
                    "nodeType": "ElementaryTypeName",
                    "src": "609:6:21",
                    "typeDescriptions": {
                      "typeIdentifier": "t_string_storage_ptr",
                      "typeString": "string"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 10265,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 10269,
                  "src": "617:7:21",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 10264,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "617:7:21",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 10267,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 10269,
                  "src": "626:4:21",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bool",
                    "typeString": "bool"
                  },
                  "typeName": {
                    "id": 10266,
                    "name": "bool",
                    "nodeType": "ElementaryTypeName",
                    "src": "626:4:21",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bool",
                      "typeString": "bool"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "590:41:21"
            },
            "scope": 10283,
            "src": "534:98:21",
            "stateMutability": "view",
            "superFunction": null,
            "visibility": "public"
          },
          {
            "body": null,
            "documentation": "@notice Check the symbol is reserved or not\n@param _symbol Symbol of the token\n@return bool",
            "id": 10282,
            "implemented": false,
            "isConstructor": false,
            "isDeclaredConst": false,
            "modifiers": [],
            "name": "isReserved",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 10278,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 10271,
                  "name": "_symbol",
                  "nodeType": "VariableDeclaration",
                  "scope": 10282,
                  "src": "788:14:21",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_string_memory_ptr",
                    "typeString": "string"
                  },
                  "typeName": {
                    "id": 10270,
                    "name": "string",
                    "nodeType": "ElementaryTypeName",
                    "src": "788:6:21",
                    "typeDescriptions": {
                      "typeIdentifier": "t_string_storage_ptr",
                      "typeString": "string"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 10273,
                  "name": "_owner",
                  "nodeType": "VariableDeclaration",
                  "scope": 10282,
                  "src": "804:14:21",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 10272,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "804:7:21",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 10275,
                  "name": "_tokenName",
                  "nodeType": "VariableDeclaration",
                  "scope": 10282,
                  "src": "820:17:21",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_string_memory_ptr",
                    "typeString": "string"
                  },
                  "typeName": {
                    "id": 10274,
                    "name": "string",
                    "nodeType": "ElementaryTypeName",
                    "src": "820:6:21",
                    "typeDescriptions": {
                      "typeIdentifier": "t_string_storage_ptr",
                      "typeString": "string"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 10277,
                  "name": "_swarmHash",
                  "nodeType": "VariableDeclaration",
                  "scope": 10282,
                  "src": "839:18:21",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 10276,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "839:7:21",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "787:71:21"
            },
            "payable": false,
            "returnParameters": {
              "id": 10281,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 10280,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 10282,
                  "src": "874:4:21",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bool",
                    "typeString": "bool"
                  },
                  "typeName": {
                    "id": 10279,
                    "name": "bool",
                    "nodeType": "ElementaryTypeName",
                    "src": "874:4:21",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bool",
                      "typeString": "bool"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "873:6:21"
            },
            "scope": 10283,
            "src": "768:112:21",
            "stateMutability": "nonpayable",
            "superFunction": null,
            "visibility": "public"
          }
        ],
        "scope": 10284,
        "src": "96:787:21"
      }
    ],
    "src": "0:884:21"
  },
  "legacyAST": {
    "absolutePath": "/Users/satyamagrawal/Repositories/testing-package/polymath-core/contracts/interfaces/ITickerRegistry.sol",
    "exportedSymbols": {
      "ITickerRegistry": [
        10283
      ]
    },
    "id": 10284,
    "nodeType": "SourceUnit",
    "nodes": [
      {
        "id": 10243,
        "literals": [
          "solidity",
          "^",
          "0.4",
          ".24"
        ],
        "nodeType": "PragmaDirective",
        "src": "0:24:21"
      },
      {
        "baseContracts": [],
        "contractDependencies": [],
        "contractKind": "contract",
        "documentation": "@title Interface for the polymath ticker registry contract",
        "fullyImplemented": false,
        "id": 10283,
        "linearizedBaseContracts": [
          10283
        ],
        "name": "ITickerRegistry",
        "nodeType": "ContractDefinition",
        "nodes": [
          {
            "body": null,
            "documentation": "@notice Check the validity of the symbol\n@param _symbol token symbol\n@param _owner address of the owner\n@param _tokenName Name of the token\n@return bool",
            "id": 10254,
            "implemented": false,
            "isConstructor": false,
            "isDeclaredConst": false,
            "modifiers": [],
            "name": "checkValidity",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 10250,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 10245,
                  "name": "_symbol",
                  "nodeType": "VariableDeclaration",
                  "scope": 10254,
                  "src": "348:14:21",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_string_memory_ptr",
                    "typeString": "string"
                  },
                  "typeName": {
                    "id": 10244,
                    "name": "string",
                    "nodeType": "ElementaryTypeName",
                    "src": "348:6:21",
                    "typeDescriptions": {
                      "typeIdentifier": "t_string_storage_ptr",
                      "typeString": "string"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 10247,
                  "name": "_owner",
                  "nodeType": "VariableDeclaration",
                  "scope": 10254,
                  "src": "364:14:21",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 10246,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "364:7:21",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 10249,
                  "name": "_tokenName",
                  "nodeType": "VariableDeclaration",
                  "scope": 10254,
                  "src": "380:17:21",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_string_memory_ptr",
                    "typeString": "string"
                  },
                  "typeName": {
                    "id": 10248,
                    "name": "string",
                    "nodeType": "ElementaryTypeName",
                    "src": "380:6:21",
                    "typeDescriptions": {
                      "typeIdentifier": "t_string_storage_ptr",
                      "typeString": "string"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "347:51:21"
            },
            "payable": false,
            "returnParameters": {
              "id": 10253,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 10252,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 10254,
                  "src": "414:4:21",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bool",
                    "typeString": "bool"
                  },
                  "typeName": {
                    "id": 10251,
                    "name": "bool",
                    "nodeType": "ElementaryTypeName",
                    "src": "414:4:21",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bool",
                      "typeString": "bool"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "413:6:21"
            },
            "scope": 10283,
            "src": "325:95:21",
            "stateMutability": "nonpayable",
            "superFunction": null,
            "visibility": "public"
          },
          {
            "body": null,
            "documentation": "@notice Returns the owner and timestamp for a given symbol\n@param _symbol symbol",
            "id": 10269,
            "implemented": false,
            "isConstructor": false,
            "isDeclaredConst": true,
            "modifiers": [],
            "name": "getDetails",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 10257,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 10256,
                  "name": "_symbol",
                  "nodeType": "VariableDeclaration",
                  "scope": 10269,
                  "src": "554:14:21",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_string_memory_ptr",
                    "typeString": "string"
                  },
                  "typeName": {
                    "id": 10255,
                    "name": "string",
                    "nodeType": "ElementaryTypeName",
                    "src": "554:6:21",
                    "typeDescriptions": {
                      "typeIdentifier": "t_string_storage_ptr",
                      "typeString": "string"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "553:16:21"
            },
            "payable": false,
            "returnParameters": {
              "id": 10268,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 10259,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 10269,
                  "src": "591:7:21",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 10258,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "591:7:21",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 10261,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 10269,
                  "src": "600:7:21",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 10260,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "600:7:21",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 10263,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 10269,
                  "src": "609:6:21",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_string_memory_ptr",
                    "typeString": "string"
                  },
                  "typeName": {
                    "id": 10262,
                    "name": "string",
                    "nodeType": "ElementaryTypeName",
                    "src": "609:6:21",
                    "typeDescriptions": {
                      "typeIdentifier": "t_string_storage_ptr",
                      "typeString": "string"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 10265,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 10269,
                  "src": "617:7:21",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 10264,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "617:7:21",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 10267,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 10269,
                  "src": "626:4:21",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bool",
                    "typeString": "bool"
                  },
                  "typeName": {
                    "id": 10266,
                    "name": "bool",
                    "nodeType": "ElementaryTypeName",
                    "src": "626:4:21",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bool",
                      "typeString": "bool"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "590:41:21"
            },
            "scope": 10283,
            "src": "534:98:21",
            "stateMutability": "view",
            "superFunction": null,
            "visibility": "public"
          },
          {
            "body": null,
            "documentation": "@notice Check the symbol is reserved or not\n@param _symbol Symbol of the token\n@return bool",
            "id": 10282,
            "implemented": false,
            "isConstructor": false,
            "isDeclaredConst": false,
            "modifiers": [],
            "name": "isReserved",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 10278,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 10271,
                  "name": "_symbol",
                  "nodeType": "VariableDeclaration",
                  "scope": 10282,
                  "src": "788:14:21",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_string_memory_ptr",
                    "typeString": "string"
                  },
                  "typeName": {
                    "id": 10270,
                    "name": "string",
                    "nodeType": "ElementaryTypeName",
                    "src": "788:6:21",
                    "typeDescriptions": {
                      "typeIdentifier": "t_string_storage_ptr",
                      "typeString": "string"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 10273,
                  "name": "_owner",
                  "nodeType": "VariableDeclaration",
                  "scope": 10282,
                  "src": "804:14:21",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 10272,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "804:7:21",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 10275,
                  "name": "_tokenName",
                  "nodeType": "VariableDeclaration",
                  "scope": 10282,
                  "src": "820:17:21",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_string_memory_ptr",
                    "typeString": "string"
                  },
                  "typeName": {
                    "id": 10274,
                    "name": "string",
                    "nodeType": "ElementaryTypeName",
                    "src": "820:6:21",
                    "typeDescriptions": {
                      "typeIdentifier": "t_string_storage_ptr",
                      "typeString": "string"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 10277,
                  "name": "_swarmHash",
                  "nodeType": "VariableDeclaration",
                  "scope": 10282,
                  "src": "839:18:21",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 10276,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "839:7:21",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "787:71:21"
            },
            "payable": false,
            "returnParameters": {
              "id": 10281,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 10280,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 10282,
                  "src": "874:4:21",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bool",
                    "typeString": "bool"
                  },
                  "typeName": {
                    "id": 10279,
                    "name": "bool",
                    "nodeType": "ElementaryTypeName",
                    "src": "874:4:21",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bool",
                      "typeString": "bool"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "873:6:21"
            },
            "scope": 10283,
            "src": "768:112:21",
            "stateMutability": "nonpayable",
            "superFunction": null,
            "visibility": "public"
          }
        ],
        "scope": 10284,
        "src": "96:787:21"
      }
    ],
    "src": "0:884:21"
  },
  "compiler": {
    "name": "solc",
    "version": "0.4.24+commit.e67f0147.Emscripten.clang"
  },
  "networks": {},
  "schemaVersion": "2.0.1",
  "updatedAt": "2018-08-21T09:48:12.405Z"
}