diff --git a/.editorconfig b/.editorconfig
new file mode 100644
index 0000000..959c2df
--- /dev/null
+++ b/.editorconfig
@@ -0,0 +1,13 @@
+root = true
+
+[*]
+end_of_line = lf
+
+[*.{ts,css,js,html,svelte}]
+charset = utf-8
+indent_size = 4
+indent_style = space
+
+[*.json]
+indent_size = 4
+indent_style = space
diff --git a/.eslintignore b/.eslintignore
new file mode 100644
index 0000000..bf316b4
--- /dev/null
+++ b/.eslintignore
@@ -0,0 +1,5 @@
+node_modules/
+public/bundle.js
+public/app.js
+public/confMat.js
+public/third_party/
diff --git a/.eslintrc.json b/.eslintrc.json
new file mode 100644
index 0000000..b072fcd
--- /dev/null
+++ b/.eslintrc.json
@@ -0,0 +1,217 @@
+{
+ "env": {
+ "browser": true,
+ "es6": true
+ },
+ "globals": {
+ "ENV": true
+ },
+ "parserOptions": {
+ "sourceType": "module",
+ "ecmaVersion": 2020
+ },
+ "rules": {
+ "jest/no-disabled-tests": "warn",
+ "jest/no-focused-tests": "error",
+ "jest/no-identical-title": "error",
+ "jest/prefer-to-have-length": "warn",
+ "jest/valid-expect": "error",
+ "max-len": [
+ "warn",
+ {
+ "code": 100,
+ "ignoreUrls": true,
+ "ignoreStrings": true,
+ "ignoreTemplateLiterals": true,
+ "ignoreRegExpLiterals": true
+ }
+ ],
+ "indent": [
+ "warn",
+ 4
+ ],
+ "no-unused-vars": [
+ "warn",
+ {
+ "args": "all",
+ "argsIgnorePattern": "^_"
+ }
+ ],
+ "no-console": ["warn", { "allow": ["warn"] }],
+ "linebreak-style": [
+ "warn",
+ "unix"
+ ],
+ "quotes": [
+ "warn",
+ "single"
+ ],
+ "semi": [
+ "warn",
+ "always"
+ ],
+ "no-var": "warn",
+ "prefer-const": "warn",
+ "dot-notation": "warn",
+ "dot-location": [
+ "warn",
+ "property"
+ ],
+ "eqeqeq": [
+ "warn",
+ "smart"
+ ],
+ "no-implicit-coercion": "warn",
+ "no-useless-return": "warn",
+ "array-bracket-newline": [
+ "warn",
+ {
+ "multiline": true
+ }
+ ],
+ "array-bracket-spacing": [
+ "warn",
+ "never"
+ ],
+ "block-spacing": "warn",
+ "brace-style": [
+ "warn",
+ "1tbs",
+ {
+ "allowSingleLine": true
+ }
+ ],
+ "comma-dangle": [
+ "warn",
+ "always-multiline"
+ ],
+ "comma-spacing": [
+ "warn",
+ {
+ "before": false,
+ "after": true
+ }
+ ],
+ "eol-last": "warn",
+ "func-call-spacing": [
+ "warn",
+ "never"
+ ],
+ "function-paren-newline": [
+ "warn",
+ "multiline"
+ ],
+ "implicit-arrow-linebreak": [
+ "warn",
+ "beside"
+ ],
+ "keyword-spacing": "warn",
+ "lines-between-class-members": [
+ "warn",
+ "always",
+ {
+ "exceptAfterSingleLine": true
+ }
+ ],
+ "newline-per-chained-call": [
+ "warn",
+ {
+ "ignoreChainWithDepth": 2
+ }
+ ],
+ "no-multiple-empty-lines": [
+ "warn",
+ {
+ "max": 1,
+ "maxBOF": 2,
+ "maxEOF": 0
+ }
+ ], // FIX for eslint
+ "no-trailing-spaces": "warn",
+ "no-unneeded-ternary": "warn",
+ "no-whitespace-before-property": "warn",
+ "nonblock-statement-body-position": [
+ "warn",
+ "beside"
+ ],
+ "object-curly-spacing": [
+ "warn",
+ "always"
+ ],
+ "one-var": [
+ "warn",
+ "never"
+ ],
+ "operator-assignment": "warn",
+ "operator-linebreak": [
+ "warn",
+ "before"
+ ],
+ "padded-blocks": [
+ "warn",
+ "never"
+ ],
+ "space-before-blocks": "warn",
+ "space-before-function-paren": [
+ "warn",
+ {
+ "anonymous": "always",
+ "named": "never",
+ "asyncArrow": "always"
+ }
+ ],
+ "space-in-parens": "warn",
+ "space-infix-ops": "warn",
+ "arrow-spacing": "warn",
+ "no-confusing-arrow": "warn",
+ "no-useless-rename": "warn",
+ "prefer-numeric-literals": "warn",
+ "prefer-template": "warn",
+ "sort-imports": [
+ "warn",
+ {
+ "ignoreCase": true
+ }
+ ],
+ "camelcase": "warn"
+ },
+ "plugins": [
+ "jest",
+ "json",
+ "svelte3"
+ ],
+ "overrides": [
+ {
+ "files": [
+ "*.svelte"
+ ],
+ "processor": "svelte3/svelte3"
+ },
+ {
+ "files": [
+ "*.ts"
+ ],
+ "extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended", "plugin:json/recommended-with-comments"],
+ "parser": "@typescript-eslint/parser",
+ "plugins": [
+ "@typescript-eslint/eslint-plugin"
+ ],
+ "rules": {
+ "@typescript-eslint/no-explicit-any": ["warn", { "ignoreRestArgs": true }],
+ "@typescript-eslint/indent": ["warn", 4],
+ "@typescript-eslint/ban-ts-comment": ["warn", { "ts-expect-error": "allow-with-description" }],
+ "@typescript-eslint/explicit-function-return-type": [
+ "warn",
+ { "allowExpressions": true }
+ ],
+ "indent": "off",
+ "no-unused-vars": "off",
+ "@typescript-eslint/no-unused-vars": [
+ "warn",
+ { "args": "all", "argsIgnorePattern": "^_" }
+ ],
+ "@typescript-eslint/array-type": ["warn", { "default": "generic" }]
+ }
+ }
+ ]
+}
\ No newline at end of file
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..0c15975
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,70 @@
+# Logs
+logs
+*.log
+npm-debug.log*
+yarn-debug.log*
+yarn-error.log*
+
+# Runtime data
+pids
+*.pid
+*.seed
+*.pid.lock
+
+# Directory for instrumented libs generated by jscoverage/JSCover
+lib-cov
+
+# Coverage directory used by tools like istanbul
+coverage
+
+# nyc test coverage
+.nyc_output
+
+# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
+.grunt
+
+# Bower dependency directory (https://bower.io/)
+bower_components
+
+# node-waf configuration
+.lock-wscript
+
+# Compiled binary addons (https://nodejs.org/api/addons.html)
+build/Release
+
+# Dependency directories
+node_modules/
+jspm_packages/
+
+# TypeScript v1 declaration files
+typings/
+
+# Optional npm cache directory
+.npm
+
+# Optional eslint cache
+.eslintcache
+
+# Optional REPL history
+.node_repl_history
+
+# Output of 'npm pack'
+*.tgz
+
+# Yarn Integrity file
+.yarn-integrity
+
+# dotenv environment variables file
+.env
+
+# next.js build output
+.next
+
+# other weird stuff
+.DS_Store
+
+# Project related files
+node_modules
+public/bundle.*
+public/app.*
+public/confMat.*
diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md
new file mode 100644
index 0000000..c991377
--- /dev/null
+++ b/CODE_OF_CONDUCT.md
@@ -0,0 +1,71 @@
+# Code of Conduct
+
+## Our Pledge
+
+In the interest of fostering an open and welcoming environment, we as
+contributors and maintainers pledge to making participation in our project and
+our community a harassment-free experience for everyone, regardless of age, body
+size, disability, ethnicity, sex characteristics, gender identity and expression,
+level of experience, education, socio-economic status, nationality, personal
+appearance, race, religion, or sexual identity and orientation.
+
+## Our Standards
+
+Examples of behavior that contributes to creating a positive environment
+include:
+
+* Using welcoming and inclusive language
+* Being respectful of differing viewpoints and experiences
+* Gracefully accepting constructive criticism
+* Focusing on what is best for the community
+* Showing empathy towards other community members
+
+Examples of unacceptable behavior by participants include:
+
+* The use of sexualized language or imagery and unwelcome sexual attention or
+ advances
+* Trolling, insulting/derogatory comments, and personal or political attacks
+* Public or private harassment
+* Publishing others' private information, such as a physical or electronic
+ address, without explicit permission
+* Other conduct which could reasonably be considered inappropriate in a
+ professional setting
+
+## Our Responsibilities
+
+Project maintainers are responsible for clarifying the standards of acceptable
+behavior and are expected to take appropriate and fair corrective action in
+response to any instances of unacceptable behavior.
+
+Project maintainers have the right and responsibility to remove, edit, or
+reject comments, commits, code, wiki edits, issues, and other contributions
+that are not aligned to this Code of Conduct, or to ban temporarily or
+permanently any contributor for other behaviors that they deem inappropriate,
+threatening, offensive, or harmful.
+
+## Scope
+
+This Code of Conduct applies within all project spaces, and it also applies when
+an individual is representing the project or its community in public spaces.
+Examples of representing a project or community include using an official
+project e-mail address, posting via an official social media account, or acting
+as an appointed representative at an online or offline event. Representation of
+a project may be further defined and clarified by project maintainers.
+
+## Enforcement
+
+Instances of abusive, harassing, or otherwise unacceptable behavior may be
+reported by contacting the open source team at [opensource-conduct@group.apple.com](mailto:opensource-conduct@group.apple.com). All
+complaints will be reviewed and investigated and will result in a response that
+is deemed necessary and appropriate to the circumstances. The project team is
+obligated to maintain confidentiality with regard to the reporter of an incident.
+Further details of specific enforcement policies may be posted separately.
+
+Project maintainers who do not follow or enforce the Code of Conduct in good
+faith may face temporary or permanent repercussions as determined by other
+members of the project's leadership.
+
+## Attribution
+
+This Code of Conduct is adapted from the [Contributor Covenant](https://www.contributor-covenant.org), version 1.4,
+available at [https://www.contributor-covenant.org/version/1/4/code-of-conduct.html](https://www.contributor-covenant.org/version/1/4/code-of-conduct.html)
\ No newline at end of file
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
new file mode 100644
index 0000000..a79135d
--- /dev/null
+++ b/CONTRIBUTING.md
@@ -0,0 +1,11 @@
+# Contribution Guide
+
+Thanks for your interest in contributing. This project was released to accompany a research paper for purposes of reproducability, and beyond its publication there are limited plans for future development of the repository.
+
+Nonetheless, we welcome new pull requests and issues and will do our best to respond timely.
+
+## Before you get started
+
+By submitting a pull request, you represent that you have the right to license your contribution to Apple and the community, and agree by submitting the patch that your contributions are licensed under the [LICENSE](LICENSE).
+
+We ask that all community members read and observe our [Code of Conduct](CODE_OF_CONDUCT.md).
diff --git a/LICENSE b/LICENSE
new file mode 100644
index 0000000..8ce4f2e
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,39 @@
+Copyright (C) 2020 Apple Inc. All Rights Reserved.
+
+IMPORTANT: This Apple software is supplied to you by Apple
+Inc. ("Apple") in consideration of your agreement to the following
+terms, and your use, installation, modification or redistribution of
+this Apple software constitutes acceptance of these terms. If you do
+not agree with these terms, please do not use, install, modify or
+redistribute this Apple software.
+
+In consideration of your agreement to abide by the following terms, and
+subject to these terms, Apple grants you a personal, non-exclusive
+license, under Apple's copyrights in this original Apple software (the
+"Apple Software"), to use, reproduce, modify and redistribute the Apple
+Software, with or without modifications, in source and/or binary forms;
+provided that if you redistribute the Apple Software in its entirety and
+without modifications, you must retain this notice and the following
+text and disclaimers in all such redistributions of the Apple Software.
+Neither the name, trademarks, service marks or logos of Apple Inc. may
+be used to endorse or promote products derived from the Apple Software
+without specific prior written permission from Apple. Except as
+expressly stated in this notice, no other rights or licenses, express or
+implied, are granted by Apple herein, including but not limited to any
+patent rights that may be infringed by your derivative works or by other
+works in which the Apple Software may be incorporated.
+
+The Apple Software is provided by Apple on an "AS IS" basis. APPLE
+MAKES NO WARRANTIES, EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION
+THE IMPLIED WARRANTIES OF NON-INFRINGEMENT, MERCHANTABILITY AND FITNESS
+FOR A PARTICULAR PURPOSE, REGARDING THE APPLE SOFTWARE OR ITS USE AND
+OPERATION ALONE OR IN COMBINATION WITH YOUR PRODUCTS.
+
+IN NO EVENT SHALL APPLE BE LIABLE FOR ANY SPECIAL, INDIRECT, INCIDENTAL
+OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+INTERRUPTION) ARISING IN ANY WAY OUT OF THE USE, REPRODUCTION,
+MODIFICATION AND/OR DISTRIBUTION OF THE APPLE SOFTWARE, HOWEVER CAUSED
+AND WHETHER UNDER THEORY OF CONTRACT, TORT (INCLUDING NEGLIGENCE),
+STRICT LIABILITY OR OTHERWISE, EVEN IF APPLE HAS BEEN ADVISED OF THE
+POSSIBILITY OF SUCH DAMAGE.
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..381ffb5
--- /dev/null
+++ b/README.md
@@ -0,0 +1,237 @@
+# Neo: Hierarchical Confusion Matrix
+
+The confusion matrix, a ubiquitous visualization for helping people evaluate machine learning models, is a tabular layout that compares predicted class labels against actual class labels over all data instances. Neo is a visual analytics system that enables practitioners to flexibly author and interact with hierarchical and multi-output confusion matrices, visualize derived metrics, renormalize confusions, and share matrix specifications.
+
+This code accompanies the research paper:
+
+**[Neo: Generalizing Confusion Matrix Visualization to Hierarchical and Multi-Output Labels](https://machinelearning.apple.com/research/generalizing-confusion-matrix)**
+Jochen Görtler, Fred Hohman, Dominik Moritz, Kanit Wongsuphasawat, Donghao Ren, Rahul Nair, Marc Kirchner, Kayur Patel
+*ACM Conference on Human Factors in Computing Systems (CHI), 2022.*
+
+
+## Documentation
+
+You can embed our confusion matrix visualization into your own project. There are two ways to use it.
+
+### NPM
+
+Install with `npm install --save @apple/hierarchical-confusion-matrix` or `yarn add @apple/hierarchical-confusion-matrix`.
+
+Then you can import the module in your project
+
+```js
+import confMat from "@apple/hierarchical-confusion-matrix";
+
+const spec = {
+ classes: ['root'],
+}
+
+const confusions = [
+ {
+ actual: ['root:a'],
+ observed: ['root:a'],
+ count: 1,
+ },
+ {
+ actual: ['root:a'],
+ observed: ['root:b'],
+ count: 2,
+ },
+ {
+ actual: ['root:b'],
+ observed: ['root:a'],
+ count: 3,
+ },
+ {
+ actual: ['root:b'],
+ observed: ['root:b'],
+ count: 4,
+ }
+]
+
+confMat.embed('matContainer', spec, confusions);
+```
+
+### Embed the Compiled File
+
+If you prefer to load the compiled JavaScript directly, you have to compile it. To do this, run `yarn install` and copy the `public/confMat.js` into your project. Here is a simple example of a small confusion matrix:
+
+```html
+
+
+
+
+
+ Neo: Hierarchical Confusion Matrix
+
+
+
+
+
+
+
+
+```
+
+### Specification
+
+You can find all the options that you can pass via the `spec` argument in [`src/specification.ts`](src/specification.ts).
+
+### Loaders
+
+The different loaders can be found in [`src/loaders`](src/loaders), which include loading data from `json`, `csv`, `vega`, and a synthetic example `synth` for testing.
+
+### Confusion Data Format Examples
+
+#### Example 1: Conventional Confusions
+The confusions for data with `actual` labels of `fruit:lemon` that are incorrectly predicted as `fruit:apple`, of which there are `count` 1 of them.
+
+```
+{
+ "actual": [
+ "fruit:lemon"
+ ],
+ "observed": [
+ "fruit:apple"
+ ],
+ "count": 1
+}
+```
+
+#### Example 2: Hierarchical Confusions
+The confusions for hierarchical data with `actual` labels of `fruit:citrus:lemon` that are incorrectly predicted as `fruit:pome:apple`, of which there are `count` 2 of them. Note `:` denotes hierarchies.
+
+```
+{
+ "actual": [
+ "fruit:citrus:lemon"
+ ],
+ "observed": [
+ "fruit:pome:apple"
+ ],
+ "count": 2
+}
+```
+
+#### Example 3: Multi-output Confusions
+The confusions for multi-output data with `actual` labels of `fruit:lemon,taste:sweet` that are incorrectly predicted as `fruit:apple,taste:sour`, of which there are `count` 3 of them. Note `,` denotes multi-ouput labels.
+
+```
+{
+ "actual": [
+ "fruit:lemon",
+ "taste:sweet"
+ ],
+ "observed": [
+ "fruit:apple",
+ "taste:sour"
+ ],
+ "count": 3
+}
+```
+
+#### Example 4: Hierarchical and Multi-output Confusions
+The confusions for hierarchical and multi-output data with `actual` labels of `fruit:citrus:lemon,taste:sweet,ripeness:ripe` that are incorrectly predicted as `fruit:pome:apple,taste:sour,ripeness:not-ripe`, of which there are `count` 4 of them.
+
+```
+{
+ "actual": [
+ "fruit:citrus:lemon",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:pome:apple",
+ "taste:sour"
+ "ripeness:not-ripe"
+ ],
+ "count": 4
+}
+```
+
+See [`fruit.json`](public/data/fruit.json) for a complete example of confusions for a hierarchical fruit, taste, and ripeness classification model.
+
+## Development
+
+Build:
+
+```sh
+yarn install
+yarn build
+```
+
+Test:
+
+```sh
+yarn test
+```
+
+Start:
+
+```sh
+yarn start
+```
+
+Dev Server:
+
+```sh
+yarn dev
+```
+
+Lint & Fix:
+
+```sh
+yarn format
+```
+
+## Contributing
+
+When making contributions, refer to the [`CONTRIBUTING`](CONTRIBUTING.md) guidelines and read the [`CODE OF CONDUCT`](CODE_OF_CONDUCT.md).
+
+## BibTeX
+
+To cite our paper, please use:
+
+```bibtex
+@inproceedings{gortler2022neo,
+ title={Neo: Generalizing Confusion Matrix Visualization to Hierarchical and Multi-Output Labels},
+ author={Görtler, Jochen and Hohman, Fred and Moritz, Dominik and Wongsuphasawat, Kanit and Ren, Donghao and Nair, Rahul and Kirchner, Marc and Patel, Kayur},
+ booktitle={Proceedings of the SIGCHI Conference on Human Factors in Computing Systems},
+ year={2022},
+ organization={ACM},
+ doi={10.1145/3491102.3501823}
+}
+```
+
+## License
+
+This code is released under the [`LICENSE`](LICENSE) terms.
diff --git a/babel.config.js b/babel.config.js
new file mode 100644
index 0000000..9d06939
--- /dev/null
+++ b/babel.config.js
@@ -0,0 +1,3 @@
+module.exports = {
+ presets: ['@babel/preset-typescript'],
+};
diff --git a/jest.config.js b/jest.config.js
new file mode 100644
index 0000000..6d6062b
--- /dev/null
+++ b/jest.config.js
@@ -0,0 +1,4 @@
+module.exports = {
+ preset: 'ts-jest',
+ testEnvironment: 'node',
+};
diff --git a/package.json b/package.json
new file mode 100644
index 0000000..3db69b1
--- /dev/null
+++ b/package.json
@@ -0,0 +1,70 @@
+{
+ "name": "@apple/hierarchical-confusion-matrix",
+ "author": "Apple Inc.",
+ "version": "1.0.0",
+ "license": "Apple Sample Code",
+ "main": "public/confMat.js",
+ "files": [
+ "src"
+ ],
+ "devDependencies": {
+ "@babel/core": "^7.17.5",
+ "@babel/preset-typescript": "^7.16.7",
+ "@rollup/plugin-commonjs": "^21.0.2",
+ "@rollup/plugin-json": "^4.1.0",
+ "@rollup/plugin-node-resolve": "^13.1.3",
+ "@rollup/plugin-typescript": "^8.3.1",
+ "@tsconfig/svelte": "^3.0.0",
+ "@types/cwise": "^1.0.4",
+ "@types/d3-array": "^3.0.2",
+ "@types/d3-dsv": "^3.0.0",
+ "@types/d3-scale": "^4.0.2",
+ "@types/jest": "^27.4.1",
+ "@types/lodash": "^4.14.179",
+ "@types/ndarray": "^1.0.11",
+ "@types/node": "^17.0.21",
+ "@typescript-eslint/eslint-plugin": "^5.14.0",
+ "@typescript-eslint/parser": "^5.14.0",
+ "babel-jest": "^27.5.1",
+ "eslint": "^8.10.0",
+ "eslint-plugin-jest": "^26.1.1",
+ "eslint-plugin-json": "^3.1.0",
+ "eslint-plugin-svelte3": "^3.4.1",
+ "gh-pages": "^3.2.3",
+ "jest": "^27.5.1",
+ "npm-run-all": "^4.1.5",
+ "rollup": "^2.70.0",
+ "rollup-plugin-css-only": "^3.1.0",
+ "rollup-plugin-livereload": "^2.0.5",
+ "rollup-plugin-svelte": "^7.1.0",
+ "rollup-plugin-terser": "^7.0.2",
+ "sirv-cli": "^2.0.2",
+ "svelte": "^3.46.4",
+ "svelte-check": "^2.4.5",
+ "svelte-preprocess": "^4.10.4",
+ "ts-jest": "^27.1.3",
+ "tslib": "^2.3.1",
+ "typescript": "^4.6.2"
+ },
+ "scripts": {
+ "build": "rollup -c",
+ "autobuild": "rollup -c -w",
+ "dev": "run-p start:dev autobuild",
+ "start": "sirv public --single",
+ "start:dev": "sirv public --single --dev",
+ "svelte-check": "npx svelte-check",
+ "lint": "eslint --config .eslintrc.json --ext .js,.ts,.json .",
+ "format": "npm run lint -- --fix",
+ "test": "npm run lint && npm run svelte-check && jest",
+ "deploy": "npm run build && gh-pages -d public"
+ },
+ "dependencies": {
+ "d3-array": "^2.11.0",
+ "d3-dsv": "^2.0.0",
+ "d3-scale": "^3.2.3",
+ "lodash": "^4.17.21",
+ "ndarray": "^1.0.19",
+ "ndarray-ops": "^1.2.2",
+ "vega-scale": "^7.1.1"
+ }
+}
diff --git a/public/data/beverages.json b/public/data/beverages.json
new file mode 100644
index 0000000..d27e341
--- /dev/null
+++ b/public/data/beverages.json
@@ -0,0 +1,357 @@
+{
+ "$schema": "https://vega.github.io/schema/vega-lite/v4.0.2.json",
+ "config": {"view": {"continuousHeight": 300, "continuousWidth": 400}},
+ "data": {
+ "values": [
+ {
+ "annotation_text": "[beverage:coke_zero,state:damaged]",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "[beverage:coke_zero,state:damaged]"
+ },
+ {
+ "annotation_text": "[beverage:coke_zero,state:open]",
+ "occurence_log": 1,
+ "occurrence": 2,
+ "reference_text": "[beverage:coke_zero,state:damaged]"
+ },
+ {
+ "annotation_text": "beverage:coke",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "[beverage:coke_zero,state:damaged]"
+ },
+ {
+ "annotation_text": "beverage:coke_zero",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "[beverage:coke_zero,state:damaged]"
+ },
+ {
+ "annotation_text": "beverage:coke_zero_cherry",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "[beverage:coke_zero,state:damaged]"
+ },
+ {
+ "annotation_text": "beverage:dr_pepper",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "[beverage:coke_zero,state:damaged]"
+ },
+ {
+ "annotation_text": "beverage:pepsi",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "[beverage:coke_zero,state:damaged]"
+ },
+ {
+ "annotation_text": "[beverage:coke_zero,state:damaged]",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "[beverage:coke_zero,state:open]"
+ },
+ {
+ "annotation_text": "[beverage:coke_zero,state:open]",
+ "occurence_log": 1,
+ "occurrence": 6,
+ "reference_text": "[beverage:coke_zero,state:open]"
+ },
+ {
+ "annotation_text": "beverage:coke",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "[beverage:coke_zero,state:open]"
+ },
+ {
+ "annotation_text": "beverage:coke_zero",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "[beverage:coke_zero,state:open]"
+ },
+ {
+ "annotation_text": "beverage:coke_zero_cherry",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "[beverage:coke_zero,state:open]"
+ },
+ {
+ "annotation_text": "beverage:dr_pepper",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "[beverage:coke_zero,state:open]"
+ },
+ {
+ "annotation_text": "beverage:pepsi",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "[beverage:coke_zero,state:open]"
+ },
+ {
+ "annotation_text": "[beverage:coke_zero,state:damaged]",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "beverage:coke"
+ },
+ {
+ "annotation_text": "[beverage:coke_zero,state:open]",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "beverage:coke"
+ },
+ {
+ "annotation_text": "beverage:coke",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "beverage:coke"
+ },
+ {
+ "annotation_text": "beverage:coke_zero",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "beverage:coke"
+ },
+ {
+ "annotation_text": "beverage:coke_zero_cherry",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "beverage:coke"
+ },
+ {
+ "annotation_text": "beverage:dr_pepper",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "beverage:coke"
+ },
+ {
+ "annotation_text": "beverage:pepsi",
+ "occurence_log": 1,
+ "occurrence": 3,
+ "reference_text": "beverage:coke"
+ },
+ {
+ "annotation_text": "[beverage:coke_zero,state:damaged]",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "beverage:coke_zero"
+ },
+ {
+ "annotation_text": "[beverage:coke_zero,state:open]",
+ "occurence_log": 1,
+ "occurrence": 2,
+ "reference_text": "beverage:coke_zero"
+ },
+ {
+ "annotation_text": "beverage:coke",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "beverage:coke_zero"
+ },
+ {
+ "annotation_text": "beverage:coke_zero",
+ "occurence_log": 2,
+ "occurrence": 10,
+ "reference_text": "beverage:coke_zero"
+ },
+ {
+ "annotation_text": "beverage:coke_zero_cherry",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "beverage:coke_zero"
+ },
+ {
+ "annotation_text": "beverage:dr_pepper",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "beverage:coke_zero"
+ },
+ {
+ "annotation_text": "beverage:pepsi",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "beverage:coke_zero"
+ },
+ {
+ "annotation_text": "[beverage:coke_zero,state:damaged]",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "beverage:coke_zero_cherry"
+ },
+ {
+ "annotation_text": "[beverage:coke_zero,state:open]",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "beverage:coke_zero_cherry"
+ },
+ {
+ "annotation_text": "beverage:coke",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "beverage:coke_zero_cherry"
+ },
+ {
+ "annotation_text": "beverage:coke_zero",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "beverage:coke_zero_cherry"
+ },
+ {
+ "annotation_text": "beverage:coke_zero_cherry",
+ "occurence_log": 3,
+ "occurrence": 25,
+ "reference_text": "beverage:coke_zero_cherry"
+ },
+ {
+ "annotation_text": "beverage:dr_pepper",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "beverage:coke_zero_cherry"
+ },
+ {
+ "annotation_text": "beverage:pepsi",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "beverage:coke_zero_cherry"
+ },
+ {
+ "annotation_text": "[beverage:coke_zero,state:damaged]",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "beverage:dr_pepper"
+ },
+ {
+ "annotation_text": "[beverage:coke_zero,state:open]",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "beverage:dr_pepper"
+ },
+ {
+ "annotation_text": "beverage:coke",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "beverage:dr_pepper"
+ },
+ {
+ "annotation_text": "beverage:coke_zero",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "beverage:dr_pepper"
+ },
+ {
+ "annotation_text": "beverage:coke_zero_cherry",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "beverage:dr_pepper"
+ },
+ {
+ "annotation_text": "beverage:dr_pepper",
+ "occurence_log": 2,
+ "occurrence": 8,
+ "reference_text": "beverage:dr_pepper"
+ },
+ {
+ "annotation_text": "beverage:pepsi",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "beverage:dr_pepper"
+ },
+ {
+ "annotation_text": "[beverage:coke_zero,state:damaged]",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "beverage:pepsi"
+ },
+ {
+ "annotation_text": "[beverage:coke_zero,state:open]",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "beverage:pepsi"
+ },
+ {
+ "annotation_text": "beverage:coke",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "beverage:pepsi"
+ },
+ {
+ "annotation_text": "beverage:coke_zero",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "beverage:pepsi"
+ },
+ {
+ "annotation_text": "beverage:coke_zero_cherry",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "beverage:pepsi"
+ },
+ {
+ "annotation_text": "beverage:dr_pepper",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "beverage:pepsi"
+ },
+ {
+ "annotation_text": "beverage:pepsi",
+ "occurence_log": 2,
+ "occurrence": 12,
+ "reference_text": "beverage:pepsi"
+ }
+ ]
+ },
+ "height": {"step": 30},
+ "layer": [
+ {
+ "encoding": {
+ "color": {
+ "condition": {"test": "datum['occurrence'] == 0", "value": "white"},
+ "field": "occurrence",
+ "scale": {"scheme": "bluepurple"},
+ "type": "quantitative"
+ },
+ "tooltip": [
+ {"field": "annotation_text", "title": "ann", "type": "nominal"},
+ {"field": "reference_text", "title": "ref", "type": "nominal"},
+ {"field": "occurrence", "title": "occurrence", "type": "quantitative"}
+ ],
+ "x": {
+ "axis": {"labels": true},
+ "field": "annotation_text",
+ "type": "nominal"
+ },
+ "y": {
+ "axis": {"labels": true},
+ "field": "reference_text",
+ "type": "nominal"
+ }
+ },
+ "mark": "rect"
+ },
+ {
+ "encoding": {
+ "color": {
+ "condition": {"test": "datum['occurrence'] < 12.5", "value": "black"},
+ "value": "white"
+ },
+ "text": {"field": "occurrence", "type": "quantitative"},
+ "tooltip": [
+ {"field": "annotation_text", "title": "ann", "type": "nominal"},
+ {"field": "reference_text", "title": "ref", "type": "nominal"},
+ {"field": "occurrence", "title": "occurrence", "type": "quantitative"}
+ ],
+ "x": {
+ "axis": {"labels": true},
+ "field": "annotation_text",
+ "type": "nominal"
+ },
+ "y": {
+ "axis": {"labels": true},
+ "field": "reference_text",
+ "type": "nominal"
+ }
+ },
+ "mark": "text"
+ }
+ ],
+ "width": {"step": 30}
+ }
\ No newline at end of file
diff --git a/public/data/chi-paper/case-study-1.csv b/public/data/chi-paper/case-study-1.csv
new file mode 100644
index 0000000..411449b
--- /dev/null
+++ b/public/data/chi-paper/case-study-1.csv
@@ -0,0 +1,196 @@
+,Ground Truth,Prediction,Count
+193,Checkbox (selected),Missing Prediction,29
+194,Checkbox (selected),Duplicate Prediction,8
+195,Checkbox (selected),Icon,39
+196,Checkbox (selected),Picture,8
+197,Checkbox (selected),Checkbox (selected),38
+198,Checkbox (selected),Checkbox (unselected),5
+199,Checkbox (selected),PageControl,0
+200,Checkbox (selected),Toggle (unselected),0
+201,Checkbox (selected),Text,0
+202,Checkbox (selected),Container,0
+203,Checkbox (selected),Dialog,0
+204,Checkbox (selected),Slider,0
+205,Checkbox (selected),TextField,0
+206,Checkbox (selected),SegmentedControl,0
+207,Checkbox (selected),Toggle (selected),0
+163,Checkbox (unselected),Checkbox (unselected),373
+164,Checkbox (unselected),Missing Prediction,67
+165,Checkbox (unselected),Duplicate Prediction,6
+166,Checkbox (unselected),Picture,23
+167,Checkbox (unselected),Icon,8
+168,Checkbox (unselected),PageControl,0
+169,Checkbox (unselected),Toggle (unselected),0
+170,Checkbox (unselected),Text,0
+171,Checkbox (unselected),Container,0
+172,Checkbox (unselected),Dialog,0
+173,Checkbox (unselected),Slider,0
+174,Checkbox (unselected),TextField,0
+175,Checkbox (unselected),Checkbox (selected),0
+176,Checkbox (unselected),SegmentedControl,0
+177,Checkbox (unselected),Toggle (selected),0
+0,Container,Container,8371
+1,Container,Picture,329
+2,Container,Missing Prediction,2419
+3,Container,Duplicate Prediction,258
+4,Container,SegmentedControl,136
+5,Container,Text,84
+6,Container,TextField,128
+7,Container,Icon,54
+8,Container,Dialog,5
+9,Container,Checkbox (unselected),1
+10,Container,Slider,1
+11,Container,PageControl,0
+12,Container,Toggle (unselected),0
+13,Container,Checkbox (selected),0
+14,Container,Toggle (selected),0
+133,Dialog,Dialog,154
+134,Dialog,Missing Prediction,83
+135,Dialog,Picture,17
+136,Dialog,Duplicate Prediction,8
+137,Dialog,Container,9
+138,Dialog,SegmentedControl,1
+139,Dialog,PageControl,0
+140,Dialog,Toggle (unselected),0
+141,Dialog,Text,0
+142,Dialog,Slider,0
+143,Dialog,Checkbox (unselected),0
+144,Dialog,Icon,0
+145,Dialog,TextField,0
+146,Dialog,Checkbox (selected),0
+147,Dialog,Toggle (selected),0
+45,Icon,Icon,17504
+46,Icon,Missing Prediction,3614
+47,Icon,Duplicate Prediction,264
+48,Icon,Text,207
+49,Icon,Picture,478
+50,Icon,Checkbox (selected),19
+51,Icon,Container,33
+52,Icon,Checkbox (unselected),19
+53,Icon,SegmentedControl,1
+54,Icon,PageControl,0
+55,Icon,Toggle (unselected),0
+56,Icon,Dialog,0
+57,Icon,Slider,0
+58,Icon,TextField,0
+59,Icon,Toggle (selected),0
+103,PageControl,Missing Prediction,132
+104,PageControl,PageControl,311
+105,PageControl,Text,10
+106,PageControl,Picture,1
+107,PageControl,Toggle (unselected),0
+108,PageControl,Container,0
+109,PageControl,Dialog,0
+110,PageControl,Slider,0
+111,PageControl,Checkbox (unselected),0
+112,PageControl,Duplicate Prediction,0
+113,PageControl,Icon,0
+114,PageControl,TextField,0
+115,PageControl,Checkbox (selected),0
+116,PageControl,SegmentedControl,0
+117,PageControl,Toggle (selected),0
+60,Picture,Icon,647
+61,Picture,Duplicate Prediction,302
+62,Picture,Picture,6302
+63,Picture,Text,240
+64,Picture,Missing Prediction,1837
+65,Picture,Container,145
+66,Picture,PageControl,2
+67,Picture,Dialog,2
+68,Picture,Toggle (unselected),1
+69,Picture,Checkbox (unselected),19
+70,Picture,Slider,3
+71,Picture,Checkbox (selected),11
+72,Picture,TextField,2
+73,Picture,SegmentedControl,0
+74,Picture,Toggle (selected),0
+88,SegmentedControl,SegmentedControl,638
+89,SegmentedControl,Missing Prediction,306
+90,SegmentedControl,Duplicate Prediction,29
+91,SegmentedControl,Container,73
+92,SegmentedControl,Icon,2
+93,SegmentedControl,Text,15
+94,SegmentedControl,Toggle (unselected),2
+95,SegmentedControl,PageControl,0
+96,SegmentedControl,Dialog,0
+97,SegmentedControl,Slider,0
+98,SegmentedControl,Checkbox (unselected),0
+99,SegmentedControl,Picture,0
+100,SegmentedControl,TextField,0
+101,SegmentedControl,Checkbox (selected),0
+102,SegmentedControl,Toggle (selected),0
+148,Slider,Missing Prediction,38
+149,Slider,Slider,72
+150,Slider,PageControl,0
+151,Slider,Toggle (unselected),0
+152,Slider,Text,0
+153,Slider,Container,0
+154,Slider,Dialog,0
+155,Slider,Checkbox (unselected),0
+156,Slider,Duplicate Prediction,0
+157,Slider,Icon,0
+158,Slider,Picture,0
+159,Slider,TextField,0
+160,Slider,Checkbox (selected),0
+161,Slider,SegmentedControl,0
+162,Slider,Toggle (selected),0
+15,Text,Text,41599
+16,Text,Missing Prediction,4973
+17,Text,Icon,222
+18,Text,Duplicate Prediction,191
+19,Text,Container,113
+20,Text,SegmentedControl,16
+21,Text,Picture,111
+22,Text,TextField,11
+23,Text,PageControl,0
+24,Text,Toggle (unselected),0
+25,Text,Dialog,0
+26,Text,Slider,0
+27,Text,Checkbox (unselected),0
+28,Text,Checkbox (selected),0
+29,Text,Toggle (selected),0
+30,TextField,Missing Prediction,231
+31,TextField,TextField,1015
+32,TextField,Container,115
+33,TextField,Text,4
+34,TextField,Duplicate Prediction,32
+35,TextField,Picture,9
+36,TextField,SegmentedControl,4
+37,TextField,Slider,1
+38,TextField,PageControl,0
+39,TextField,Toggle (unselected),0
+40,TextField,Dialog,0
+41,TextField,Checkbox (unselected),0
+42,TextField,Icon,0
+43,TextField,Checkbox (selected),0
+44,TextField,Toggle (selected),0
+178,Toggle (selected),Toggle (selected),124
+179,Toggle (selected),Missing Prediction,4
+180,Toggle (selected),Toggle (unselected),1
+181,Toggle (selected),Duplicate Prediction,2
+182,Toggle (selected),Container,2
+183,Toggle (selected),PageControl,0
+184,Toggle (selected),Text,0
+185,Toggle (selected),Dialog,0
+186,Toggle (selected),Slider,0
+187,Toggle (selected),Checkbox (unselected),0
+188,Toggle (selected),Icon,0
+189,Toggle (selected),Picture,0
+190,Toggle (selected),TextField,0
+191,Toggle (selected),Checkbox (selected),0
+192,Toggle (selected),SegmentedControl,0
+118,Toggle (unselected),Toggle (unselected),226
+119,Toggle (unselected),Missing Prediction,11
+120,Toggle (unselected),Picture,4
+121,Toggle (unselected),Container,4
+122,Toggle (unselected),Toggle (selected),1
+123,Toggle (unselected),Duplicate Prediction,1
+124,Toggle (unselected),Icon,1
+125,Toggle (unselected),PageControl,0
+126,Toggle (unselected),Text,0
+127,Toggle (unselected),Dialog,0
+128,Toggle (unselected),Slider,0
+129,Toggle (unselected),Checkbox (unselected),0
+130,Toggle (unselected),TextField,0
+131,Toggle (unselected),Checkbox (selected),0
+132,Toggle (unselected),SegmentedControl,0
\ No newline at end of file
diff --git a/public/data/chi-paper/case-study-2.json b/public/data/chi-paper/case-study-2.json
new file mode 100644
index 0000000..b62e636
--- /dev/null
+++ b/public/data/chi-paper/case-study-2.json
@@ -0,0 +1 @@
+{"data": {"values": [{"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:soft-finned fis:cypriniform fis:cyprinid-cyprin:tench, Tinca tinca", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:soft-finned fis:cypriniform fis:cyprinid-cyprin:tench, Tinca tinca", "oc": 46}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:soft-finned fis:cypriniform fis:cyprinid-cyprin:tench, Tinca tinca", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:heron:bittern", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:soft-finned fis:cypriniform fis:cyprinid-cyprin:tench, Tinca tinca", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:soft-finned fis:salmonid:salmon:coho, cohoe, coho salmon, blue jack, silver salmon, Oncorhynchus kisutch", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:soft-finned fis:cypriniform fis:cyprinid-cyprin:tench, Tinca tinca", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:ganoid-ganoid f:gar, garfish, garpike, billfish, Lepisosteus osseus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:soft-finned fis:cypriniform fis:cyprinid-cyprin:tench, Tinca tinca", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:winder:reel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:soft-finned fis:cypriniform fis:cyprinid-cyprin:goldfish, Carassius auratus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:soft-finned fis:cypriniform fis:cyprinid-cyprin:goldfish, Carassius auratus", "oc": 43}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:soft-finned fis:cypriniform fis:cyprinid-cyprin:goldfish, Carassius auratus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:cartilaginous f:elasmobranch-se:shark:hammerhead, hammerhead shark", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:soft-finned fis:cypriniform fis:cyprinid-cyprin:goldfish, Carassius auratus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:worm:nematode, nematode worm, roundworm", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:soft-finned fis:cypriniform fis:cyprinid-cyprin:goldfish, Carassius auratus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:gastropod-univa:sea slug, nudibranch", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:soft-finned fis:cypriniform fis:cyprinid-cyprin:goldfish, Carassius auratus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:ladybug, ladybeetle, lady beetle, ladybird, ladybird beetle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:soft-finned fis:cypriniform fis:cyprinid-cyprin:goldfish, Carassius auratus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:echinoderm:sea urchin", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:soft-finned fis:cypriniform fis:cyprinid-cyprin:goldfish, Carassius auratus", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:blind-screen:curtain-drape-d:shower curtain", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:soft-finned fis:cypriniform fis:cyprinid-cyprin:goldfish, Carassius auratus", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:sailing vessel-:sailboat-sailin:trimaran", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:cartilaginous f:elasmobranch-se:shark:mackerel shark:great white shark, white shark, man-eater, man-eating shark, Carcharodon carcharias", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:cartilaginous f:elasmobranch-se:shark:mackerel shark:great white shark, white shark, man-eater, man-eating shark, Carcharodon carcharias", "oc": 42}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:cartilaginous f:elasmobranch-se:shark:mackerel shark:great white shark, white shark, man-eater, man-eating shark, Carcharodon carcharias", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:cartilaginous f:elasmobranch-se:shark:requiem shark:tiger shark, Galeocerdo cuvieri", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:cartilaginous f:elasmobranch-se:shark:mackerel shark:great white shark, white shark, man-eater, man-eating shark, Carcharodon carcharias", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:cartilaginous f:elasmobranch-se:shark:hammerhead, hammerhead shark", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:cartilaginous f:elasmobranch-se:shark:mackerel shark:great white shark, white shark, man-eater, man-eating shark, Carcharodon carcharias", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:aquatic mammal:cetacean-cetace:whale:baleen whale-wh:grey whale, gray whale, devilfish, Eschrichtius gibbosus, Eschrichtius robustus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:cartilaginous f:elasmobranch-se:shark:mackerel shark:great white shark, white shark, man-eater, man-eating shark, Carcharodon carcharias", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:aquatic mammal:cetacean-cetace:whale:toothed whale:dolphin:killer whale, killer, orca, grampus, sea wolf, Orcinus orca", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:cartilaginous f:elasmobranch-se:shark:mackerel shark:great white shark, white shark, man-eater, man-eating shark, Carcharodon carcharias", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:padding-cushion:cushion:pillow", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:cartilaginous f:elasmobranch-se:shark:requiem shark:tiger shark, Galeocerdo cuvieri", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:cartilaginous f:elasmobranch-se:shark:mackerel shark:great white shark, white shark, man-eater, man-eating shark, Carcharodon carcharias", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:cartilaginous f:elasmobranch-se:shark:requiem shark:tiger shark, Galeocerdo cuvieri", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:cartilaginous f:elasmobranch-se:shark:requiem shark:tiger shark, Galeocerdo cuvieri", "oc": 37}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:cartilaginous f:elasmobranch-se:shark:requiem shark:tiger shark, Galeocerdo cuvieri", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:cartilaginous f:elasmobranch-se:shark:hammerhead, hammerhead shark", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:cartilaginous f:elasmobranch-se:shark:requiem shark:tiger shark, Galeocerdo cuvieri", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:cartilaginous f:elasmobranch-se:ray:electric ray, crampfish, numbfish, torpedo", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:cartilaginous f:elasmobranch-se:shark:requiem shark:tiger shark, Galeocerdo cuvieri", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:cartilaginous f:elasmobranch-se:ray:stingray", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:cartilaginous f:elasmobranch-se:shark:requiem shark:tiger shark, Galeocerdo cuvieri", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:sea turtle-mari:leatherback turtle, leatherback, leathery turtle, Dermochelys coriacea", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:cartilaginous f:elasmobranch-se:shark:requiem shark:tiger shark, Galeocerdo cuvieri", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:aquatic mammal:sea cow-sirenia:dugong, Dugong dugon", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:cartilaginous f:elasmobranch-se:shark:requiem shark:tiger shark, Galeocerdo cuvieri", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:ganoid-ganoid f:sturgeon", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:cartilaginous f:elasmobranch-se:shark:requiem shark:tiger shark, Galeocerdo cuvieri", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:person-individu:explorer-advent:diver-frogman-u:scuba diver", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:cartilaginous f:elasmobranch-se:shark:hammerhead, hammerhead shark", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:cartilaginous f:elasmobranch-se:shark:requiem shark:tiger shark, Galeocerdo cuvieri", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:cartilaginous f:elasmobranch-se:shark:hammerhead, hammerhead shark", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:cartilaginous f:elasmobranch-se:shark:hammerhead, hammerhead shark", "oc": 40}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:cartilaginous f:elasmobranch-se:shark:hammerhead, hammerhead shark", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:cartilaginous f:elasmobranch-se:ray:stingray", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:cartilaginous f:elasmobranch-se:shark:hammerhead, hammerhead shark", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:parrot:cockatoo:sulphur-crested cockatoo, Kakatoe galerita, Cacatua galerita", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:cartilaginous f:elasmobranch-se:shark:hammerhead, hammerhead shark", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:seabird-sea bir:pelagic bird-oc:albatross, mollymawk", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:cartilaginous f:elasmobranch-se:shark:hammerhead, hammerhead shark", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:soft-finned fis:salmonid:salmon:coho, cohoe, coho salmon, blue jack, silver salmon, Oncorhynchus kisutch", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:cartilaginous f:elasmobranch-se:shark:hammerhead, hammerhead shark", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:ganoid-ganoid f:sturgeon", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:cartilaginous f:elasmobranch-se:shark:hammerhead, hammerhead shark", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:footwear:hosiery-hose:tights-leotards:maillot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:cartilaginous f:elasmobranch-se:shark:hammerhead, hammerhead shark", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:person-individu:explorer-advent:diver-frogman-u:scuba diver", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:cartilaginous f:elasmobranch-se:ray:electric ray, crampfish, numbfish, torpedo", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:cartilaginous f:elasmobranch-se:shark:requiem shark:tiger shark, Galeocerdo cuvieri", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:cartilaginous f:elasmobranch-se:ray:electric ray, crampfish, numbfish, torpedo", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:cartilaginous f:elasmobranch-se:ray:electric ray, crampfish, numbfish, torpedo", "oc": 36}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:cartilaginous f:elasmobranch-se:ray:electric ray, crampfish, numbfish, torpedo", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:cartilaginous f:elasmobranch-se:ray:stingray", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:cartilaginous f:elasmobranch-se:ray:electric ray, crampfish, numbfish, torpedo", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:salamander:ambystomid-amby:spotted salamander, Ambystoma maculatum", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:cartilaginous f:elasmobranch-se:ray:electric ray, crampfish, numbfish, torpedo", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:archosaur-archo:dinosaur:ornithischian-o:ceratopsian-hor:triceratops", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:cartilaginous f:elasmobranch-se:ray:electric ray, crampfish, numbfish, torpedo", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:aquatic mammal:cetacean-cetace:whale:toothed whale:dolphin:killer whale, killer, orca, grampus, sea wolf, Orcinus orca", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:cartilaginous f:elasmobranch-se:ray:electric ray, crampfish, numbfish, torpedo", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:echinoderm:sea cucumber, holothurian", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:cartilaginous f:elasmobranch-se:ray:electric ray, crampfish, numbfish, torpedo", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:ganoid-ganoid f:sturgeon", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:cartilaginous f:elasmobranch-se:ray:electric ray, crampfish, numbfish, torpedo", "at": "root:entity:physical entity:object-physical:geological form:natural elevati:ridge:bar:sandbar, sand bar", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:cartilaginous f:elasmobranch-se:ray:electric ray, crampfish, numbfish, torpedo", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:person-individu:explorer-advent:diver-frogman-u:scuba diver", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:cartilaginous f:elasmobranch-se:ray:stingray", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:cartilaginous f:elasmobranch-se:shark:hammerhead, hammerhead shark", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:cartilaginous f:elasmobranch-se:ray:stingray", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:cartilaginous f:elasmobranch-se:ray:electric ray, crampfish, numbfish, torpedo", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:cartilaginous f:elasmobranch-se:ray:stingray", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:cartilaginous f:elasmobranch-se:ray:stingray", "oc": 41}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:cartilaginous f:elasmobranch-se:ray:stingray", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:litter:stretcher", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:cartilaginous f:elasmobranch-se:ray:stingray", "at": "root:entity:physical entity:object-physical:geological form:natural elevati:ridge:reef:coral reef", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:cartilaginous f:elasmobranch-se:ray:stingray", "at": "root:entity:physical entity:object-physical:geological form:shore:seashore, coast, seacoast, sea-coast", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:cartilaginous f:elasmobranch-se:ray:stingray", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:person-individu:explorer-advent:diver-frogman-u:scuba diver", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:cock", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:cock", "oc": 34}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:cock", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:hen", "oc": 8}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:cock", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:gallinaceous bi:game bird:grouse:black grouse", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:cock", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:gallinaceous bi:game bird:grouse:prairie chicken, prairie grouse, prairie fowl", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:cock", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:parrot:macaw", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:cock", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:metatherian:marsupial-pouch:kangaroo:wallaby, brush kangaroo", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:cock", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:Afghan hound, Afghan", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:cock", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:bannister, banister, balustrade, balusters, handrail", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:cock", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:cannon", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:cock", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:hair spray", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:hen", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:cock", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:hen", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:hen", "oc": 44}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:hen", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:rail:coot:American coot, marsh hen, mud hen, water hen, Fulica americana", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:hen", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:area:patio, terrace", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:ratite-ratite b:ostrich, Struthio camelus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:ratite-ratite b:ostrich, Struthio camelus", "oc": 49}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:ratite-ratite b:ostrich, Struthio camelus", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:chainlink fence", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:finch:brambling, Fringilla montifringilla", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:finch:brambling, Fringilla montifringilla", "oc": 41}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:finch:brambling, Fringilla montifringilla", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:finch:goldfinch, Carduelis carduelis", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:finch:brambling, Fringilla montifringilla", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:finch:junco, snowbird", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:finch:brambling, Fringilla montifringilla", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:thrush:robin, American robin, Turdus migratorius", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:finch:brambling, Fringilla montifringilla", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:gallinaceous bi:game bird:grouse:ruffed grouse, partridge, Bonasa umbellus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:finch:brambling, Fringilla montifringilla", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:gallinaceous bi:game bird:phasianid:quail", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:finch:brambling, Fringilla montifringilla", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:shorebird-shore:sandpiper:red-backed sandpiper, dunlin, Erolia alpina", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:finch:brambling, Fringilla montifringilla", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:outbuilding:shed:apiary, bee house", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:finch:brambling, Fringilla montifringilla", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:roof:tile roof", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:finch:goldfinch, Carduelis carduelis", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:finch:brambling, Fringilla montifringilla", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:finch:goldfinch, Carduelis carduelis", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:finch:goldfinch, Carduelis carduelis", "oc": 49}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:finch:house finch, linnet, Carpodacus mexicanus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:finch:brambling, Fringilla montifringilla", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:finch:house finch, linnet, Carpodacus mexicanus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:finch:house finch, linnet, Carpodacus mexicanus", "oc": 44}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:finch:house finch, linnet, Carpodacus mexicanus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:finch:junco, snowbird", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:finch:house finch, linnet, Carpodacus mexicanus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:water ouzel, dipper", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:finch:house finch, linnet, Carpodacus mexicanus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:bird of prey-ra:hawk:kite", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:finch:house finch, linnet, Carpodacus mexicanus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:piciform bird:jacamar", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:finch:junco, snowbird", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:finch:brambling, Fringilla montifringilla", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:finch:junco, snowbird", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:finch:house finch, linnet, Carpodacus mexicanus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:finch:junco, snowbird", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:finch:junco, snowbird", "oc": 46}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:finch:junco, snowbird", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:fungus:stinkhorn, carrion fungus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:finch:bunting:indigo bunting, indigo finch, indigo bird, Passerina cyanea", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:finch:goldfinch, Carduelis carduelis", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:finch:bunting:indigo bunting, indigo finch, indigo bird, Passerina cyanea", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:finch:house finch, linnet, Carpodacus mexicanus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:finch:bunting:indigo bunting, indigo finch, indigo bird, Passerina cyanea", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:finch:bunting:indigo bunting, indigo finch, indigo bird, Passerina cyanea", "oc": 44}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:finch:bunting:indigo bunting, indigo finch, indigo bird, Passerina cyanea", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:corvine bird:jay", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:finch:bunting:indigo bunting, indigo finch, indigo bird, Passerina cyanea", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:bird of prey-ra:eagle-bird of J:bald eagle, American eagle, Haliaeetus leucocephalus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:finch:bunting:indigo bunting, indigo finch, indigo bird, Passerina cyanea", "at": "root:entity:physical entity:object-physical:geological form:natural elevati:ridge:reef:coral reef", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:finch:bunting:indigo bunting, indigo finch, indigo bird, Passerina cyanea", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:seed:oilseed-oil-ric:rapeseed", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:thrush:robin, American robin, Turdus migratorius", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:finch:goldfinch, Carduelis carduelis", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:thrush:robin, American robin, Turdus migratorius", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:finch:bunting:indigo bunting, indigo finch, indigo bird, Passerina cyanea", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:thrush:robin, American robin, Turdus migratorius", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:thrush:robin, American robin, Turdus migratorius", "oc": 47}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:thrush:robin, American robin, Turdus migratorius", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:birdhouse", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:thrush:nightingale-Lus:bulbul", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:thrush:nightingale-Lus:bulbul", "oc": 44}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:thrush:nightingale-Lus:bulbul", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:bird of prey-ra:vulture", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:thrush:nightingale-Lus:bulbul", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:gallinaceous bi:game bird:grouse:black grouse", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:thrush:nightingale-Lus:bulbul", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:parrot:lory:lorikeet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:thrush:nightingale-Lus:bulbul", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:cuculiform bird:cuckoo:coucal", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:thrush:nightingale-Lus:bulbul", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:piciform bird:jacamar", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:corvine bird:jay", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:finch:brambling, Fringilla montifringilla", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:corvine bird:jay", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:thrush:nightingale-Lus:bulbul", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:corvine bird:jay", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:corvine bird:jay", "oc": 42}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:corvine bird:jay", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:corvine bird:magpie", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:corvine bird:jay", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:apodiform bird:hummingbird", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:corvine bird:jay", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:waterfowl-water:anseriform bird:goose", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:corvine bird:magpie", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:corvine bird:jay", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:corvine bird:magpie", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:corvine bird:magpie", "oc": 44}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:corvine bird:magpie", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:water ouzel, dipper", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:corvine bird:magpie", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:bird of prey-ra:eagle-bird of J:bald eagle, American eagle, Haliaeetus leucocephalus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:corvine bird:magpie", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:gallinule-marsh:purple gallinul:European gallinule, Porphyrio porphyrio", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:corvine bird:magpie", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:antelope:gazelle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:corvine bird:magpie", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:pirate, pirate ship", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:titmouse-tit:chickadee", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:finch:junco, snowbird", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:titmouse-tit:chickadee", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:thrush:nightingale-Lus:bulbul", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:titmouse-tit:chickadee", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:titmouse-tit:chickadee", "oc": 45}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:titmouse-tit:chickadee", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:coraciiform bir:hornbill", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:titmouse-tit:chickadee", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:apodiform bird:hummingbird", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:water ouzel, dipper", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:finch:brambling, Fringilla montifringilla", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:water ouzel, dipper", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:finch:house finch, linnet, Carpodacus mexicanus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:water ouzel, dipper", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:water ouzel, dipper", "oc": 43}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:water ouzel, dipper", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:apodiform bird:hummingbird", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:water ouzel, dipper", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:piciform bird:jacamar", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:water ouzel, dipper", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:gastropod-univa:snail", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:water ouzel, dipper", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:rail:coot:American coot, marsh hen, mud hen, water hen, Fulica americana", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:water ouzel, dipper", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:shorebird-shore:sandpiper:redshank, Tringa totanus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:bird of prey-ra:hawk:kite", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:finch:house finch, linnet, Carpodacus mexicanus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:bird of prey-ra:hawk:kite", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:bird of prey-ra:hawk:kite", "oc": 37}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:bird of prey-ra:hawk:kite", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:bird of prey-ra:eagle-bird of J:bald eagle, American eagle, Haliaeetus leucocephalus", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:bird of prey-ra:hawk:kite", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:bird of prey-ra:vulture", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:bird of prey-ra:hawk:kite", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:gallinaceous bi:game bird:grouse:ruffed grouse, partridge, Bonasa umbellus", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:bird of prey-ra:hawk:kite", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:cuculiform bird:cuckoo:coucal", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:bird of prey-ra:hawk:kite", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:crane", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:bird of prey-ra:hawk:kite", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:bustard", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:bird of prey-ra:hawk:kite", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:bovine:cattle-cows-kin:ox", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:bird of prey-ra:hawk:kite", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:edentate:sloth-tree slot:three-toed sloth, ai, Bradypus tridactylus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:bird of prey-ra:eagle-bird of J:bald eagle, American eagle, Haliaeetus leucocephalus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:bird of prey-ra:hawk:kite", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:bird of prey-ra:eagle-bird of J:bald eagle, American eagle, Haliaeetus leucocephalus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:bird of prey-ra:eagle-bird of J:bald eagle, American eagle, Haliaeetus leucocephalus", "oc": 46}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:bird of prey-ra:eagle-bird of J:bald eagle, American eagle, Haliaeetus leucocephalus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:bird of prey-ra:vulture", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:bird of prey-ra:vulture", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:bird of prey-ra:hawk:kite", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:bird of prey-ra:vulture", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:bird of prey-ra:vulture", "oc": 45}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:bird of prey-ra:vulture", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:spider:tarantula", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:bird of prey-ra:vulture", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:spoonbill", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:bird of prey-ra:vulture", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:komondor", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:bird of prey-ra:vulture", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:howler monkey, howler", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:bird of prey-ra:owl-bird of Min:great grey owl, great gray owl, Strix nebulosa", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:bird of prey-ra:vulture", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:bird of prey-ra:owl-bird of Min:great grey owl, great gray owl, Strix nebulosa", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:bird of prey-ra:owl-bird of Min:great grey owl, great gray owl, Strix nebulosa", "oc": 48}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:bird of prey-ra:owl-bird of Min:great grey owl, great gray owl, Strix nebulosa", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :tracked vehicle:snowmobile", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:salamander:European fire salamander, Salamandra salamandra", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:soft-finned fis:cypriniform fis:cyprinid-cyprin:goldfish, Carassius auratus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:salamander:European fire salamander, Salamandra salamandra", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:salamander:European fire salamander, Salamandra salamandra", "oc": 46}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:salamander:European fire salamander, Salamandra salamandra", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:salamander:newt-triton:common newt, Triturus vulgaris", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:salamander:European fire salamander, Salamandra salamandra", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:salamander:ambystomid-amby:spotted salamander, Ambystoma maculatum", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:salamander:newt-triton:common newt, Triturus vulgaris", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:salamander:European fire salamander, Salamandra salamandra", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:salamander:newt-triton:common newt, Triturus vulgaris", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:salamander:newt-triton:common newt, Triturus vulgaris", "oc": 29}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:salamander:newt-triton:common newt, Triturus vulgaris", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:salamander:newt-triton:eft", "oc": 5}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:salamander:newt-triton:common newt, Triturus vulgaris", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:salamander:ambystomid-amby:spotted salamander, Ambystoma maculatum", "oc": 9}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:salamander:newt-triton:common newt, Triturus vulgaris", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:salamander:ambystomid-amby:axolotl, mud puppy, Ambystoma mexicanum", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:salamander:newt-triton:common newt, Triturus vulgaris", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:thunder snake, worm snake, Carphophis amoenus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:salamander:newt-triton:common newt, Triturus vulgaris", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:water snake", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:salamander:newt-triton:common newt, Triturus vulgaris", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crayfish, crawfish, crawdad, crawdaddy", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:salamander:newt-triton:common newt, Triturus vulgaris", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:orthopterous in:grasshopper, hopper", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:salamander:newt-triton:eft", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:salamander:newt-triton:common newt, Triturus vulgaris", "oc": 6}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:salamander:newt-triton:eft", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:salamander:newt-triton:eft", "oc": 38}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:salamander:newt-triton:eft", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:frog-toad-toad :true frog-ranid:bullfrog, Rana catesbeiana", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:salamander:newt-triton:eft", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:thunder snake, worm snake, Carphophis amoenus", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:salamander:newt-triton:eft", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:ringneck snake, ring-necked snake, ring snake", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:salamander:newt-triton:eft", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:gallinaceous bi:game bird:grouse:ruffed grouse, partridge, Bonasa umbellus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:salamander:newt-triton:eft", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:handwear-hand w:glove:mitten", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:salamander:ambystomid-amby:spotted salamander, Ambystoma maculatum", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:salamander:European fire salamander, Salamandra salamandra", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:salamander:ambystomid-amby:spotted salamander, Ambystoma maculatum", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:salamander:ambystomid-amby:spotted salamander, Ambystoma maculatum", "oc": 44}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:salamander:ambystomid-amby:spotted salamander, Ambystoma maculatum", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:frog-toad-toad :true frog-ranid:bullfrog, Rana catesbeiana", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:salamander:ambystomid-amby:spotted salamander, Ambystoma maculatum", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:lobster:spiny lobster, langouste, rock lobster, crawfish, crayfish, sea crawfish", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:salamander:ambystomid-amby:spotted salamander, Ambystoma maculatum", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :pinscher:miniature pinscher", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:salamander:ambystomid-amby:spotted salamander, Ambystoma maculatum", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:diaper, nappy, napkin", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:salamander:ambystomid-amby:axolotl, mud puppy, Ambystoma mexicanum", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:salamander:newt-triton:common newt, Triturus vulgaris", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:salamander:ambystomid-amby:axolotl, mud puppy, Ambystoma mexicanum", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:salamander:ambystomid-amby:axolotl, mud puppy, Ambystoma mexicanum", "oc": 43}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:salamander:ambystomid-amby:axolotl, mud puppy, Ambystoma mexicanum", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:teiid lizard-te:whiptail, whiptail lizard", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:salamander:ambystomid-amby:axolotl, mud puppy, Ambystoma mexicanum", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:chameleon-chama:African chameleon, Chamaeleo chamaeleon", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:salamander:ambystomid-amby:axolotl, mud puppy, Ambystoma mexicanum", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:spoonbill", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:salamander:ambystomid-amby:axolotl, mud puppy, Ambystoma mexicanum", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:echinoderm:sea cucumber, holothurian", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:salamander:ambystomid-amby:axolotl, mud puppy, Ambystoma mexicanum", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:scientific inst:magnifier:microscope:light microscop:hand glass-simp:loupe, jeweler's loupe", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:frog-toad-toad :true frog-ranid:bullfrog, Rana catesbeiana", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:frog-toad-toad :true frog-ranid:bullfrog, Rana catesbeiana", "oc": 36}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:frog-toad-toad :true frog-ranid:bullfrog, Rana catesbeiana", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:frog-toad-toad :tailed frog, bell toad, ribbed toad, tailed toad, Ascaphus trui", "oc": 6}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:frog-toad-toad :true frog-ranid:bullfrog, Rana catesbeiana", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:sea turtle-mari:loggerhead, loggerhead turtle, Caretta caretta", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:frog-toad-toad :true frog-ranid:bullfrog, Rana catesbeiana", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:crocodilian rep:alligator-gator:American alligator, Alligator mississipiensis", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:frog-toad-toad :true frog-ranid:bullfrog, Rana catesbeiana", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:water snake", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:frog-toad-toad :true frog-ranid:bullfrog, Rana catesbeiana", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:elapid-elapid s:mamba:black mamba-Den:green mamba", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:frog-toad-toad :true frog-ranid:bullfrog, Rana catesbeiana", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crab:fiddler crab", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:frog-toad-toad :true frog-ranid:bullfrog, Rana catesbeiana", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:heron:little blue heron, Egretta caerulea", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:frog-toad-toad :true frog-ranid:bullfrog, Rana catesbeiana", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:lamellicorn bee:scarabaeid beet:dung beetle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:frog-toad-toad :tree frog, tree-frog", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:frog-toad-toad :tree frog, tree-frog", "oc": 41}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:frog-toad-toad :tree frog, tree-frog", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:frog-toad-toad :tailed frog, bell toad, ribbed toad, tailed toad, Ascaphus trui", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:frog-toad-toad :tree frog, tree-frog", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:lacertid lizard:green lizard, Lacerta viridis", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:frog-toad-toad :tree frog, tree-frog", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:homopterous ins:leafhopper", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:frog-toad-toad :tree frog, tree-frog", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:neuropteron-neu:lacewing, lacewing fly", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:frog-toad-toad :tree frog, tree-frog", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:shoe:sandal", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:frog-toad-toad :tree frog, tree-frog", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:artichoke, globe artichoke", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:frog-toad-toad :tailed frog, bell toad, ribbed toad, tailed toad, Ascaphus trui", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:salamander:newt-triton:common newt, Triturus vulgaris", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:frog-toad-toad :tailed frog, bell toad, ribbed toad, tailed toad, Ascaphus trui", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:salamander:newt-triton:eft", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:frog-toad-toad :tailed frog, bell toad, ribbed toad, tailed toad, Ascaphus trui", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:frog-toad-toad :true frog-ranid:bullfrog, Rana catesbeiana", "oc": 7}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:frog-toad-toad :tailed frog, bell toad, ribbed toad, tailed toad, Ascaphus trui", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:frog-toad-toad :tree frog, tree-frog", "oc": 7}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:frog-toad-toad :tailed frog, bell toad, ribbed toad, tailed toad, Ascaphus trui", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:frog-toad-toad :tailed frog, bell toad, ribbed toad, tailed toad, Ascaphus trui", "oc": 21}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:frog-toad-toad :tailed frog, bell toad, ribbed toad, tailed toad, Ascaphus trui", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:iguanid-iguanid:American chameleon, anole, Anolis carolinensis", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:frog-toad-toad :tailed frog, bell toad, ribbed toad, tailed toad, Ascaphus trui", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:agamid-agamid l:frilled lizard, Chlamydosaurus kingi", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:frog-toad-toad :tailed frog, bell toad, ribbed toad, tailed toad, Ascaphus trui", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:water snake", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:frog-toad-toad :tailed frog, bell toad, ribbed toad, tailed toad, Ascaphus trui", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:scorpion", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:frog-toad-toad :tailed frog, bell toad, ribbed toad, tailed toad, Ascaphus trui", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:worm:nematode, nematode worm, roundworm", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:frog-toad-toad :tailed frog, bell toad, ribbed toad, tailed toad, Ascaphus trui", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:hermit crab", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:frog-toad-toad :tailed frog, bell toad, ribbed toad, tailed toad, Ascaphus trui", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:malacostracan c:isopod", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:frog-toad-toad :tailed frog, bell toad, ribbed toad, tailed toad, Ascaphus trui", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:limpkin, Aramus pictus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:frog-toad-toad :tailed frog, bell toad, ribbed toad, tailed toad, Ascaphus trui", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:soft-finned fis:eel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:frog-toad-toad :tailed frog, bell toad, ribbed toad, tailed toad, Ascaphus trui", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:acorn", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:sea turtle-mari:loggerhead, loggerhead turtle, Caretta caretta", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:cartilaginous f:elasmobranch-se:ray:stingray", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:sea turtle-mari:loggerhead, loggerhead turtle, Caretta caretta", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:sea turtle-mari:loggerhead, loggerhead turtle, Caretta caretta", "oc": 38}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:sea turtle-mari:loggerhead, loggerhead turtle, Caretta caretta", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:terrapin", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:sea turtle-mari:loggerhead, loggerhead turtle, Caretta caretta", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:chameleon-chama:African chameleon, Chamaeleo chamaeleon", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:sea turtle-mari:loggerhead, loggerhead turtle, Caretta caretta", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:aquatic mammal:cetacean-cetace:whale:toothed whale:dolphin:killer whale, killer, orca, grampus, sea wolf, Orcinus orca", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:sea turtle-mari:loggerhead, loggerhead turtle, Caretta caretta", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:aquatic mammal:pinniped mammal:seal:eared seal:sea lion", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:sea turtle-mari:loggerhead, loggerhead turtle, Caretta caretta", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:echinoderm:starfish, sea star", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:sea turtle-mari:loggerhead, loggerhead turtle, Caretta caretta", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:sheep:ram, tup", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:sea turtle-mari:loggerhead, loggerhead turtle, Caretta caretta", "at": "root:entity:physical entity:object-physical:geological form:natural elevati:ridge:reef:coral reef", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:sea turtle-mari:loggerhead, loggerhead turtle, Caretta caretta", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:person-individu:explorer-advent:diver-frogman-u:scuba diver", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:sea turtle-mari:leatherback turtle, leatherback, leathery turtle, Dermochelys coriacea", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:cartilaginous f:elasmobranch-se:shark:hammerhead, hammerhead shark", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:sea turtle-mari:leatherback turtle, leatherback, leathery turtle, Dermochelys coriacea", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:sea turtle-mari:loggerhead, loggerhead turtle, Caretta caretta", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:sea turtle-mari:leatherback turtle, leatherback, leathery turtle, Dermochelys coriacea", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:sea turtle-mari:leatherback turtle, leatherback, leathery turtle, Dermochelys coriacea", "oc": 27}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:sea turtle-mari:leatherback turtle, leatherback, leathery turtle, Dermochelys coriacea", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:terrapin", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:sea turtle-mari:leatherback turtle, leatherback, leathery turtle, Dermochelys coriacea", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:box turtle, box tortoise", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:sea turtle-mari:leatherback turtle, leatherback, leathery turtle, Dermochelys coriacea", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:teiid lizard-te:whiptail, whiptail lizard", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:sea turtle-mari:leatherback turtle, leatherback, leathery turtle, Dermochelys coriacea", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:monitor-monitor:Komodo dragon, Komodo lizard, dragon lizard, giant lizard, Varanus komodoensis", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:sea turtle-mari:leatherback turtle, leatherback, leathery turtle, Dermochelys coriacea", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:crocodilian rep:alligator-gator:American alligator, Alligator mississipiensis", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:sea turtle-mari:leatherback turtle, leatherback, leathery turtle, Dermochelys coriacea", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:water snake", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:sea turtle-mari:leatherback turtle, leatherback, leathery turtle, Dermochelys coriacea", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:gastropod-univa:conch", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:sea turtle-mari:leatherback turtle, leatherback, leathery turtle, Dermochelys coriacea", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:aquatic mammal:cetacean-cetace:whale:baleen whale-wh:grey whale, gray whale, devilfish, Eschrichtius gibbosus, Eschrichtius robustus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:sea turtle-mari:leatherback turtle, leatherback, leathery turtle, Dermochelys coriacea", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:cocker spaniel, English cocker spaniel, cocker", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:sea turtle-mari:leatherback turtle, leatherback, leathery turtle, Dermochelys coriacea", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:echinoderm:starfish, sea star", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:sea turtle-mari:leatherback turtle, leatherback, leathery turtle, Dermochelys coriacea", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:echinoderm:sea cucumber, holothurian", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:sea turtle-mari:leatherback turtle, leatherback, leathery turtle, Dermochelys coriacea", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:otter", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:sea turtle-mari:leatherback turtle, leatherback, leathery turtle, Dermochelys coriacea", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:spiny-finned fi:plectognath-ple:puffer, pufferfish, blowfish, globefish", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:sea turtle-mari:leatherback turtle, leatherback, leathery turtle, Dermochelys coriacea", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:swimsuit-swimwe:swimming trunks, bathing trunks", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:sea turtle-mari:leatherback turtle, leatherback, leathery turtle, Dermochelys coriacea", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:receptacle:tray", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:sea turtle-mari:leatherback turtle, leatherback, leathery turtle, Dermochelys coriacea", "at": "root:entity:physical entity:object-physical:geological form:natural elevati:ridge:bar:sandbar, sand bar", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:sea turtle-mari:leatherback turtle, leatherback, leathery turtle, Dermochelys coriacea", "at": "root:entity:physical entity:object-physical:geological form:natural elevati:mountain-mount:volcano", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:mud turtle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:cartilaginous f:elasmobranch-se:ray:stingray", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:mud turtle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:sea turtle-mari:loggerhead, loggerhead turtle, Caretta caretta", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:mud turtle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:mud turtle", "oc": 28}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:mud turtle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:terrapin", "oc": 5}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:mud turtle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:box turtle, box tortoise", "oc": 7}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:mud turtle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:agamid-agamid l:frilled lizard, Chlamydosaurus kingi", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:mud turtle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:monitor-monitor:Komodo dragon, Komodo lizard, dragon lizard, giant lizard, Varanus komodoensis", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:mud turtle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:crocodilian rep:alligator-gator:American alligator, Alligator mississipiensis", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:mud turtle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:water snake", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:mud turtle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crab:rock crab, Cancer irroratus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:mud turtle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:soccer ball", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:terrapin", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:frog-toad-toad :tailed frog, bell toad, ribbed toad, tailed toad, Ascaphus trui", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:terrapin", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:sea turtle-mari:loggerhead, loggerhead turtle, Caretta caretta", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:terrapin", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:mud turtle", "oc": 9}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:terrapin", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:terrapin", "oc": 24}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:terrapin", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:box turtle, box tortoise", "oc": 12}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:terrapin", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:crocodilian rep:alligator-gator:American alligator, Alligator mississipiensis", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:terrapin", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crab:rock crab, Cancer irroratus", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:box turtle, box tortoise", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:mud turtle", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:box turtle, box tortoise", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:terrapin", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:box turtle, box tortoise", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:box turtle, box tortoise", "oc": 44}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:gecko:banded gecko", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:salamander:European fire salamander, Salamandra salamandra", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:gecko:banded gecko", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:salamander:ambystomid-amby:spotted salamander, Ambystoma maculatum", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:gecko:banded gecko", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:gecko:banded gecko", "oc": 40}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:gecko:banded gecko", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:teiid lizard-te:whiptail, whiptail lizard", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:gecko:banded gecko", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:agamid-agamid l:agama", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:gecko:banded gecko", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:venomous lizard:Gila monster, Heloderma suspectum", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:gecko:banded gecko", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:king snake, kingsnake", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:gecko:banded gecko", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:viper:horned viper, cerastes, sand viper, horned asp, Cerastes cornutus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:gecko:banded gecko", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:viper:pit viper:rattlesnake-rat:sidewinder, horned rattlesnake, Crotalus cerastes", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:iguanid-iguanid:common iguana, iguana, Iguana iguana", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:iguanid-iguanid:common iguana, iguana, Iguana iguana", "oc": 40}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:iguanid-iguanid:common iguana, iguana, Iguana iguana", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:lacertid lizard:green lizard, Lacerta viridis", "oc": 7}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:iguanid-iguanid:common iguana, iguana, Iguana iguana", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crab:rock crab, Cancer irroratus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:iguanid-iguanid:common iguana, iguana, Iguana iguana", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:howler monkey, howler", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:iguanid-iguanid:common iguana, iguana, Iguana iguana", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:spider monkey, Ateles geoffroyi", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:iguanid-iguanid:American chameleon, anole, Anolis carolinensis", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:frog-toad-toad :tree frog, tree-frog", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:iguanid-iguanid:American chameleon, anole, Anolis carolinensis", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:iguanid-iguanid:American chameleon, anole, Anolis carolinensis", "oc": 31}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:iguanid-iguanid:American chameleon, anole, Anolis carolinensis", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:anguid lizard:alligator lizard", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:iguanid-iguanid:American chameleon, anole, Anolis carolinensis", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:lacertid lizard:green lizard, Lacerta viridis", "oc": 14}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:iguanid-iguanid:American chameleon, anole, Anolis carolinensis", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:dictyopterous i:mantis, mantid", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:iguanid-iguanid:American chameleon, anole, Anolis carolinensis", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:hook, claw", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:teiid lizard-te:whiptail, whiptail lizard", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:iguanid-iguanid:common iguana, iguana, Iguana iguana", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:teiid lizard-te:whiptail, whiptail lizard", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:teiid lizard-te:whiptail, whiptail lizard", "oc": 41}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:teiid lizard-te:whiptail, whiptail lizard", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:agamid-agamid l:agama", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:teiid lizard-te:whiptail, whiptail lizard", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:anguid lizard:alligator lizard", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:teiid lizard-te:whiptail, whiptail lizard", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:lacertid lizard:green lizard, Lacerta viridis", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:teiid lizard-te:whiptail, whiptail lizard", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:garter snake, grass snake", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:teiid lizard-te:whiptail, whiptail lizard", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:sea snake", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:teiid lizard-te:whiptail, whiptail lizard", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:spider:wolf spider, hunting spider", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:agamid-agamid l:agama", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:salamander:newt-triton:common newt, Triturus vulgaris", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:agamid-agamid l:agama", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:gecko:banded gecko", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:agamid-agamid l:agama", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:teiid lizard-te:whiptail, whiptail lizard", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:agamid-agamid l:agama", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:agamid-agamid l:agama", "oc": 36}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:agamid-agamid l:agama", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:agamid-agamid l:frilled lizard, Chlamydosaurus kingi", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:agamid-agamid l:agama", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:anguid lizard:alligator lizard", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:agamid-agamid l:agama", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:lacertid lizard:green lizard, Lacerta viridis", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:agamid-agamid l:agama", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:parrot:lory:lorikeet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:agamid-agamid l:agama", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crayfish, crawfish, crawdad, crawdaddy", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:agamid-agamid l:frilled lizard, Chlamydosaurus kingi", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:iguanid-iguanid:common iguana, iguana, Iguana iguana", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:agamid-agamid l:frilled lizard, Chlamydosaurus kingi", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:iguanid-iguanid:American chameleon, anole, Anolis carolinensis", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:agamid-agamid l:frilled lizard, Chlamydosaurus kingi", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:teiid lizard-te:whiptail, whiptail lizard", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:agamid-agamid l:frilled lizard, Chlamydosaurus kingi", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:agamid-agamid l:agama", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:agamid-agamid l:frilled lizard, Chlamydosaurus kingi", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:agamid-agamid l:frilled lizard, Chlamydosaurus kingi", "oc": 42}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:agamid-agamid l:frilled lizard, Chlamydosaurus kingi", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:anguid lizard:alligator lizard", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:agamid-agamid l:frilled lizard, Chlamydosaurus kingi", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:chameleon-chama:African chameleon, Chamaeleo chamaeleon", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:agamid-agamid l:frilled lizard, Chlamydosaurus kingi", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:crocodilian rep:alligator-gator:American alligator, Alligator mississipiensis", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:agamid-agamid l:frilled lizard, Chlamydosaurus kingi", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:picket fence, paling", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:anguid lizard:alligator lizard", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:salamander:newt-triton:common newt, Triturus vulgaris", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:anguid lizard:alligator lizard", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:iguanid-iguanid:American chameleon, anole, Anolis carolinensis", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:anguid lizard:alligator lizard", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:teiid lizard-te:whiptail, whiptail lizard", "oc": 6}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:anguid lizard:alligator lizard", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:agamid-agamid l:agama", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:anguid lizard:alligator lizard", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:anguid lizard:alligator lizard", "oc": 26}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:anguid lizard:alligator lizard", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:venomous lizard:Gila monster, Heloderma suspectum", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:anguid lizard:alligator lizard", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:lacertid lizard:green lizard, Lacerta viridis", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:anguid lizard:alligator lizard", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:crocodilian rep:crocodile:African crocodile, Nile crocodile, Crocodylus niloticus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:anguid lizard:alligator lizard", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:thunder snake, worm snake, Carphophis amoenus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:anguid lizard:alligator lizard", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:hognose snake, puff adder, sand viper", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:anguid lizard:alligator lizard", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:night snake, Hypsiglena torquata", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:anguid lizard:alligator lizard", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:constrictor:boa:boa constrictor, Constrictor constrictor", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:anguid lizard:alligator lizard", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:elapid-elapid s:mamba:black mamba-Den:green mamba", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:anguid lizard:alligator lizard", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:gallinaceous bi:game bird:phasianid:pheasant:peafowl-bird of:peacock", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:anguid lizard:alligator lizard", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:phasmid-phasmid:walking stick, walkingstick, stick insect", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:anguid lizard:alligator lizard", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:miniskirt, mini", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:anguid lizard:alligator lizard", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:plow, plough", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:anguid lizard:alligator lizard", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:stone wall", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:venomous lizard:Gila monster, Heloderma suspectum", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:box turtle, box tortoise", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:venomous lizard:Gila monster, Heloderma suspectum", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:anguid lizard:alligator lizard", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:venomous lizard:Gila monster, Heloderma suspectum", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:venomous lizard:Gila monster, Heloderma suspectum", "oc": 37}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:venomous lizard:Gila monster, Heloderma suspectum", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:chameleon-chama:African chameleon, Chamaeleo chamaeleon", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:venomous lizard:Gila monster, Heloderma suspectum", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:monitor-monitor:Komodo dragon, Komodo lizard, dragon lizard, giant lizard, Varanus komodoensis", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:venomous lizard:Gila monster, Heloderma suspectum", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:crocodilian rep:crocodile:African crocodile, Nile crocodile, Crocodylus niloticus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:venomous lizard:Gila monster, Heloderma suspectum", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:viper:pit viper:rattlesnake-rat:diamondback, diamondback rattlesnake, Crotalus adamanteus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:venomous lizard:Gila monster, Heloderma suspectum", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:trilobite", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:venomous lizard:Gila monster, Heloderma suspectum", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:viverrine-viver:mongoose", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:venomous lizard:Gila monster, Heloderma suspectum", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:echinoderm:starfish, sea star", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:venomous lizard:Gila monster, Heloderma suspectum", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bin:ashcan, trash can, garbage can, wastebin, ash bin, ash-bin, ashbin, dustbin, trash barrel, trash bin", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:venomous lizard:Gila monster, Heloderma suspectum", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:birdhouse", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:lacertid lizard:green lizard, Lacerta viridis", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:iguanid-iguanid:common iguana, iguana, Iguana iguana", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:lacertid lizard:green lizard, Lacerta viridis", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:iguanid-iguanid:American chameleon, anole, Anolis carolinensis", "oc": 13}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:lacertid lizard:green lizard, Lacerta viridis", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:agamid-agamid l:agama", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:lacertid lizard:green lizard, Lacerta viridis", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:anguid lizard:alligator lizard", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:lacertid lizard:green lizard, Lacerta viridis", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:lacertid lizard:green lizard, Lacerta viridis", "oc": 24}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:lacertid lizard:green lizard, Lacerta viridis", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:chameleon-chama:African chameleon, Chamaeleo chamaeleon", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:lacertid lizard:green lizard, Lacerta viridis", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:monitor-monitor:Komodo dragon, Komodo lizard, dragon lizard, giant lizard, Varanus komodoensis", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:lacertid lizard:green lizard, Lacerta viridis", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:parrot:lory:lorikeet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:lacertid lizard:green lizard, Lacerta viridis", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:orthopterous in:grasshopper, hopper", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:lacertid lizard:green lizard, Lacerta viridis", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:homopterous ins:cicada, cicala", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:chameleon-chama:African chameleon, Chamaeleo chamaeleon", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:finch:bunting:indigo bunting, indigo finch, indigo bird, Passerina cyanea", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:chameleon-chama:African chameleon, Chamaeleo chamaeleon", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:frog-toad-toad :tailed frog, bell toad, ribbed toad, tailed toad, Ascaphus trui", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:chameleon-chama:African chameleon, Chamaeleo chamaeleon", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:agamid-agamid l:agama", "oc": 5}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:chameleon-chama:African chameleon, Chamaeleo chamaeleon", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:lacertid lizard:green lizard, Lacerta viridis", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:chameleon-chama:African chameleon, Chamaeleo chamaeleon", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:chameleon-chama:African chameleon, Chamaeleo chamaeleon", "oc": 37}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:chameleon-chama:African chameleon, Chamaeleo chamaeleon", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:scorpion", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:chameleon-chama:African chameleon, Chamaeleo chamaeleon", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:neuropteron-neu:lacewing, lacewing fly", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:chameleon-chama:African chameleon, Chamaeleo chamaeleon", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:odonate:damselfly", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:chameleon-chama:African chameleon, Chamaeleo chamaeleon", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:antelope:impala, Aepyceros melampus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:chameleon-chama:African chameleon, Chamaeleo chamaeleon", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:person-individu:contestant:player-particip:ballplayer, baseball player", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:monitor-monitor:Komodo dragon, Komodo lizard, dragon lizard, giant lizard, Varanus komodoensis", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:salamander:newt-triton:common newt, Triturus vulgaris", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:monitor-monitor:Komodo dragon, Komodo lizard, dragon lizard, giant lizard, Varanus komodoensis", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:iguanid-iguanid:common iguana, iguana, Iguana iguana", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:monitor-monitor:Komodo dragon, Komodo lizard, dragon lizard, giant lizard, Varanus komodoensis", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:venomous lizard:Gila monster, Heloderma suspectum", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:monitor-monitor:Komodo dragon, Komodo lizard, dragon lizard, giant lizard, Varanus komodoensis", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:monitor-monitor:Komodo dragon, Komodo lizard, dragon lizard, giant lizard, Varanus komodoensis", "oc": 41}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:monitor-monitor:Komodo dragon, Komodo lizard, dragon lizard, giant lizard, Varanus komodoensis", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:crocodilian rep:alligator-gator:American alligator, Alligator mississipiensis", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:monitor-monitor:Komodo dragon, Komodo lizard, dragon lizard, giant lizard, Varanus komodoensis", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:edentate:armadillo", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:monitor-monitor:Komodo dragon, Komodo lizard, dragon lizard, giant lizard, Varanus komodoensis", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:plow, plough", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:crocodilian rep:crocodile:African crocodile, Nile crocodile, Crocodylus niloticus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:venomous lizard:Gila monster, Heloderma suspectum", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:crocodilian rep:crocodile:African crocodile, Nile crocodile, Crocodylus niloticus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:monitor-monitor:Komodo dragon, Komodo lizard, dragon lizard, giant lizard, Varanus komodoensis", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:crocodilian rep:crocodile:African crocodile, Nile crocodile, Crocodylus niloticus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:crocodilian rep:crocodile:African crocodile, Nile crocodile, Crocodylus niloticus", "oc": 32}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:crocodilian rep:crocodile:African crocodile, Nile crocodile, Crocodylus niloticus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:crocodilian rep:alligator-gator:American alligator, Alligator mississipiensis", "oc": 8}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:crocodilian rep:crocodile:African crocodile, Nile crocodile, Crocodylus niloticus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:prototherian:monotreme-egg-l:platypus, duckbill, duckbilled platypus, duck-billed platypus, Ornithorhynchus anatinus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:crocodilian rep:crocodile:African crocodile, Nile crocodile, Crocodylus niloticus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:hermit crab", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:crocodilian rep:crocodile:African crocodile, Nile crocodile, Crocodylus niloticus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:shorebird-shore:oystercatcher, oyster catcher", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:crocodilian rep:crocodile:African crocodile, Nile crocodile, Crocodylus niloticus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:fox:grey fox, gray fox, Urocyon cinereoargenteus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:crocodilian rep:crocodile:African crocodile, Nile crocodile, Crocodylus niloticus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:bear:ice bear, polar bear, Ursus Maritimus, Thalarctos maritimus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:crocodilian rep:crocodile:African crocodile, Nile crocodile, Crocodylus niloticus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:Old World buffa:water buffalo, water ox, Asiatic buffalo, Bubalus bubalis", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:crocodilian rep:crocodile:African crocodile, Nile crocodile, Crocodylus niloticus", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:neckwear:necktie-tie:bow tie, bow-tie, bowtie", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:crocodilian rep:crocodile:African crocodile, Nile crocodile, Crocodylus niloticus", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:cowboy hat, ten-gallon hat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:crocodilian rep:alligator-gator:American alligator, Alligator mississipiensis", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:salamander:ambystomid-amby:axolotl, mud puppy, Ambystoma mexicanum", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:crocodilian rep:alligator-gator:American alligator, Alligator mississipiensis", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:sea turtle-mari:leatherback turtle, leatherback, leathery turtle, Dermochelys coriacea", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:crocodilian rep:alligator-gator:American alligator, Alligator mississipiensis", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:crocodilian rep:crocodile:African crocodile, Nile crocodile, Crocodylus niloticus", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:crocodilian rep:alligator-gator:American alligator, Alligator mississipiensis", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:crocodilian rep:alligator-gator:American alligator, Alligator mississipiensis", "oc": 43}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:crocodilian rep:alligator-gator:American alligator, Alligator mississipiensis", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:water snake", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:crocodilian rep:alligator-gator:American alligator, Alligator mississipiensis", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:limpkin, Aramus pictus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:archosaur-archo:dinosaur:ornithischian-o:ceratopsian-hor:triceratops", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:archosaur-archo:dinosaur:ornithischian-o:ceratopsian-hor:triceratops", "oc": 47}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:archosaur-archo:dinosaur:ornithischian-o:ceratopsian-hor:triceratops", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:aircraft:lighter-than-ai:balloon", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:archosaur-archo:dinosaur:ornithischian-o:ceratopsian-hor:triceratops", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:butcher shop, meat market", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:archosaur-archo:dinosaur:ornithischian-o:ceratopsian-hor:triceratops", "at": "root:entity:physical entity:object-physical:geological form:shore:lakeside, lakeshore", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:thunder snake, worm snake, Carphophis amoenus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:anguid lizard:alligator lizard", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:thunder snake, worm snake, Carphophis amoenus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:thunder snake, worm snake, Carphophis amoenus", "oc": 37}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:thunder snake, worm snake, Carphophis amoenus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:ringneck snake, ring-necked snake, ring snake", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:thunder snake, worm snake, Carphophis amoenus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:king snake, kingsnake", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:thunder snake, worm snake, Carphophis amoenus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:garter snake, grass snake", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:thunder snake, worm snake, Carphophis amoenus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:scorpion", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:thunder snake, worm snake, Carphophis amoenus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:worm:nematode, nematode worm, roundworm", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:thunder snake, worm snake, Carphophis amoenus", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:glass-drinking :beer glass", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:thunder snake, worm snake, Carphophis amoenus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:fungus:coral fungus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:ringneck snake, ring-necked snake, ring snake", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:salamander:ambystomid-amby:spotted salamander, Ambystoma maculatum", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:ringneck snake, ring-necked snake, ring snake", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:thunder snake, worm snake, Carphophis amoenus", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:ringneck snake, ring-necked snake, ring snake", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:ringneck snake, ring-necked snake, ring snake", "oc": 40}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:ringneck snake, ring-necked snake, ring snake", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:green snake, grass snake", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:ringneck snake, ring-necked snake, ring snake", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:water snake", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:ringneck snake, ring-necked snake, ring snake", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:viper:pit viper:rattlesnake-rat:diamondback, diamondback rattlesnake, Crotalus adamanteus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:ringneck snake, ring-necked snake, ring snake", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:worm:nematode, nematode worm, roundworm", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:ringneck snake, ring-necked snake, ring snake", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:soft-finned fis:salmonid:salmon:coho, cohoe, coho salmon, blue jack, silver salmon, Oncorhynchus kisutch", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:ringneck snake, ring-necked snake, ring snake", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:binoculars, field glasses, opera glasses", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:ringneck snake, ring-necked snake, ring snake", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:sheath:holster", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:hognose snake, puff adder, sand viper", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:gecko:banded gecko", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:hognose snake, puff adder, sand viper", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:thunder snake, worm snake, Carphophis amoenus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:hognose snake, puff adder, sand viper", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:ringneck snake, ring-necked snake, ring snake", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:hognose snake, puff adder, sand viper", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:hognose snake, puff adder, sand viper", "oc": 26}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:hognose snake, puff adder, sand viper", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:king snake, kingsnake", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:hognose snake, puff adder, sand viper", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:garter snake, grass snake", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:hognose snake, puff adder, sand viper", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:water snake", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:hognose snake, puff adder, sand viper", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:night snake, Hypsiglena torquata", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:hognose snake, puff adder, sand viper", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:constrictor:boa:boa constrictor, Constrictor constrictor", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:hognose snake, puff adder, sand viper", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:viper:horned viper, cerastes, sand viper, horned asp, Cerastes cornutus", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:hognose snake, puff adder, sand viper", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:viper:pit viper:rattlesnake-rat:diamondback, diamondback rattlesnake, Crotalus adamanteus", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:hognose snake, puff adder, sand viper", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:viper:pit viper:rattlesnake-rat:sidewinder, horned rattlesnake, Crotalus cerastes", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:green snake, grass snake", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:iguanid-iguanid:American chameleon, anole, Anolis carolinensis", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:green snake, grass snake", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:lacertid lizard:green lizard, Lacerta viridis", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:green snake, grass snake", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:green snake, grass snake", "oc": 30}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:green snake, grass snake", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:vine snake", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:green snake, grass snake", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:elapid-elapid s:mamba:black mamba-Den:green mamba", "oc": 13}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:green snake, grass snake", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:homopterous ins:leafhopper", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:king snake, kingsnake", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:hognose snake, puff adder, sand viper", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:king snake, kingsnake", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:king snake, kingsnake", "oc": 38}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:king snake, kingsnake", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:water snake", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:king snake, kingsnake", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:elapid-elapid s:cobra:Indian cobra, Naja naja", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:king snake, kingsnake", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:sea snake", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:king snake, kingsnake", "at": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:handkerchief, hankie, hanky, hankey", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:king snake, kingsnake", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:knife:letter opener, paper knife, paperknife", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:garter snake, grass snake", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:teiid lizard-te:whiptail, whiptail lizard", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:garter snake, grass snake", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:anguid lizard:alligator lizard", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:garter snake, grass snake", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:thunder snake, worm snake, Carphophis amoenus", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:garter snake, grass snake", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:green snake, grass snake", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:garter snake, grass snake", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:garter snake, grass snake", "oc": 39}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:garter snake, grass snake", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:water snake", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:garter snake, grass snake", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:night snake, Hypsiglena torquata", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:garter snake, grass snake", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:sea snake", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:garter snake, grass snake", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:orthopterous in:cricket", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:water snake", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:crocodilian rep:crocodile:African crocodile, Nile crocodile, Crocodylus niloticus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:water snake", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:thunder snake, worm snake, Carphophis amoenus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:water snake", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:ringneck snake, ring-necked snake, ring snake", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:water snake", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:hognose snake, puff adder, sand viper", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:water snake", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:water snake", "oc": 35}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:water snake", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:night snake, Hypsiglena torquata", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:water snake", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:sea snake", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:water snake", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:gastropod-univa:slug", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:water snake", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:chiton, coat-of-mail shell, sea cradle, polyplacophore", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:water snake", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:connection-conn:attachment-bond:ligament:chain", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:water snake", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:oar:paddle, boat paddle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:water snake", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:runner:ski", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:water snake", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:cucumber, cuke", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:vine snake", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:salamander:newt-triton:common newt, Triturus vulgaris", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:vine snake", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:lacertid lizard:green lizard, Lacerta viridis", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:vine snake", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:green snake, grass snake", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:vine snake", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:garter snake, grass snake", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:vine snake", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:water snake", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:vine snake", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:vine snake", "oc": 29}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:vine snake", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:night snake, Hypsiglena torquata", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:vine snake", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:elapid-elapid s:mamba:black mamba-Den:green mamba", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:vine snake", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:phasmid-phasmid:walking stick, walkingstick, stick insect", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:vine snake", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:soft-finned fis:eel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:vine snake", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:birdhouse", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:vine snake", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:butcher shop, meat market", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:vine snake", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:chest", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:vine snake", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:baby bed-babys :cradle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:vine snake", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:knot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:vine snake", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:stone wall", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:vine snake", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:web site, website, internet site, site", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:night snake, Hypsiglena torquata", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:hen", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:night snake, Hypsiglena torquata", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:thunder snake, worm snake, Carphophis amoenus", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:night snake, Hypsiglena torquata", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:ringneck snake, ring-necked snake, ring snake", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:night snake, Hypsiglena torquata", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:hognose snake, puff adder, sand viper", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:night snake, Hypsiglena torquata", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:green snake, grass snake", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:night snake, Hypsiglena torquata", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:king snake, kingsnake", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:night snake, Hypsiglena torquata", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:garter snake, grass snake", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:night snake, Hypsiglena torquata", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:water snake", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:night snake, Hypsiglena torquata", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:night snake, Hypsiglena torquata", "oc": 12}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:night snake, Hypsiglena torquata", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:constrictor:boa:boa constrictor, Constrictor constrictor", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:night snake, Hypsiglena torquata", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:constrictor:boa:python:rock python, rock snake, Python sebae", "oc": 5}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:night snake, Hypsiglena torquata", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:elapid-elapid s:cobra:Indian cobra, Naja naja", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:night snake, Hypsiglena torquata", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:viper:horned viper, cerastes, sand viper, horned asp, Cerastes cornutus", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:night snake, Hypsiglena torquata", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:viper:pit viper:rattlesnake-rat:diamondback, diamondback rattlesnake, Crotalus adamanteus", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:night snake, Hypsiglena torquata", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:spider:wolf spider, hunting spider", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:night snake, Hypsiglena torquata", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:gastropod-univa:conch", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:night snake, Hypsiglena torquata", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:gastropod-univa:slug", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:night snake, Hypsiglena torquata", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:bicycle-bike-wh:mountain bike, all-terrain bike, off-roader", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:night snake, Hypsiglena torquata", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:shoe shop, shoe-shop, shoe store", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:night snake, Hypsiglena torquata", "at": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:cracker:pretzel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:night snake, Hypsiglena torquata", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:fungus:hen-of-the-woods, hen of the woods, Polyporus frondosus, Grifola frondosa", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:constrictor:boa:boa constrictor, Constrictor constrictor", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:thunder snake, worm snake, Carphophis amoenus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:constrictor:boa:boa constrictor, Constrictor constrictor", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:green snake, grass snake", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:constrictor:boa:boa constrictor, Constrictor constrictor", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:king snake, kingsnake", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:constrictor:boa:boa constrictor, Constrictor constrictor", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:water snake", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:constrictor:boa:boa constrictor, Constrictor constrictor", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:constrictor:boa:boa constrictor, Constrictor constrictor", "oc": 37}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:constrictor:boa:boa constrictor, Constrictor constrictor", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:constrictor:boa:python:rock python, rock snake, Python sebae", "oc": 6}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:constrictor:boa:boa constrictor, Constrictor constrictor", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:screen:mosquito net", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:constrictor:boa:python:rock python, rock snake, Python sebae", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:salamander:ambystomid-amby:axolotl, mud puppy, Ambystoma mexicanum", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:constrictor:boa:python:rock python, rock snake, Python sebae", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:venomous lizard:Gila monster, Heloderma suspectum", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:constrictor:boa:python:rock python, rock snake, Python sebae", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:hognose snake, puff adder, sand viper", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:constrictor:boa:python:rock python, rock snake, Python sebae", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:garter snake, grass snake", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:constrictor:boa:python:rock python, rock snake, Python sebae", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:water snake", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:constrictor:boa:python:rock python, rock snake, Python sebae", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:night snake, Hypsiglena torquata", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:constrictor:boa:python:rock python, rock snake, Python sebae", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:constrictor:boa:boa constrictor, Constrictor constrictor", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:constrictor:boa:python:rock python, rock snake, Python sebae", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:constrictor:boa:python:rock python, rock snake, Python sebae", "oc": 24}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:constrictor:boa:python:rock python, rock snake, Python sebae", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:viper:pit viper:rattlesnake-rat:diamondback, diamondback rattlesnake, Crotalus adamanteus", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:constrictor:boa:python:rock python, rock snake, Python sebae", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:coelenterate-cn:anthozoan-actin:coral:stony coral-mad:brain coral", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:constrictor:boa:python:rock python, rock snake, Python sebae", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:big cat-cat:lion, king of beasts, Panthera leo", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:constrictor:boa:python:rock python, rock snake, Python sebae", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:bear:sloth bear, Melursus ursinus, Ursus ursinus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:constrictor:boa:python:rock python, rock snake, Python sebae", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:handcart-pushca:barrow, garden cart, lawn cart, wheelbarrow", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:constrictor:boa:python:rock python, rock snake, Python sebae", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:swimsuit-swimwe:bikini, two-piece", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:constrictor:boa:python:rock python, rock snake, Python sebae", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:stone wall", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:constrictor:boa:python:rock python, rock snake, Python sebae", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :armored vehicle:tank, army tank, armored combat vehicle, armoured combat vehicle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:elapid-elapid s:cobra:Indian cobra, Naja naja", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:bird of prey-ra:hawk:kite", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:elapid-elapid s:cobra:Indian cobra, Naja naja", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:sea turtle-mari:loggerhead, loggerhead turtle, Caretta caretta", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:elapid-elapid s:cobra:Indian cobra, Naja naja", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:teiid lizard-te:whiptail, whiptail lizard", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:elapid-elapid s:cobra:Indian cobra, Naja naja", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:thunder snake, worm snake, Carphophis amoenus", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:elapid-elapid s:cobra:Indian cobra, Naja naja", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:ringneck snake, ring-necked snake, ring snake", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:elapid-elapid s:cobra:Indian cobra, Naja naja", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:garter snake, grass snake", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:elapid-elapid s:cobra:Indian cobra, Naja naja", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:vine snake", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:elapid-elapid s:cobra:Indian cobra, Naja naja", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:elapid-elapid s:cobra:Indian cobra, Naja naja", "oc": 39}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:elapid-elapid s:cobra:Indian cobra, Naja naja", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:tricycle, trike, velocipede", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:elapid-elapid s:mamba:black mamba-Den:green mamba", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:lacertid lizard:green lizard, Lacerta viridis", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:elapid-elapid s:mamba:black mamba-Den:green mamba", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:green snake, grass snake", "oc": 10}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:elapid-elapid s:mamba:black mamba-Den:green mamba", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:water snake", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:elapid-elapid s:mamba:black mamba-Den:green mamba", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:vine snake", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:elapid-elapid s:mamba:black mamba-Den:green mamba", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:elapid-elapid s:cobra:Indian cobra, Naja naja", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:elapid-elapid s:mamba:black mamba-Den:green mamba", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:elapid-elapid s:mamba:black mamba-Den:green mamba", "oc": 30}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:elapid-elapid s:mamba:black mamba-Den:green mamba", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:phasmid-phasmid:walking stick, walkingstick, stick insect", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:elapid-elapid s:mamba:black mamba-Den:green mamba", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:edentate:sloth-tree slot:three-toed sloth, ai, Bradypus tridactylus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:elapid-elapid s:mamba:black mamba-Den:green mamba", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:howler monkey, howler", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:elapid-elapid s:mamba:black mamba-Den:green mamba", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:pot, flowerpot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:elapid-elapid s:mamba:black mamba-Den:green mamba", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:custard apple", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:sea snake", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:sea turtle-mari:loggerhead, loggerhead turtle, Caretta caretta", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:sea snake", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:ringneck snake, ring-necked snake, ring snake", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:sea snake", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:green snake, grass snake", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:sea snake", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:garter snake, grass snake", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:sea snake", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:water snake", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:sea snake", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:constrictor:boa:boa constrictor, Constrictor constrictor", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:sea snake", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:constrictor:boa:python:rock python, rock snake, Python sebae", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:sea snake", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:sea snake", "oc": 35}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:sea snake", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:gastropod-univa:slug", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:sea snake", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crab:rock crab, Cancer irroratus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:sea snake", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:echinoderm:starfish, sea star", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:sea snake", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:soft-finned fis:eel", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:sea snake", "at": "root:entity:physical entity:object-physical:geological form:natural elevati:ridge:bar:sandbar, sand bar", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:viper:horned viper, cerastes, sand viper, horned asp, Cerastes cornutus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:teiid lizard-te:whiptail, whiptail lizard", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:viper:horned viper, cerastes, sand viper, horned asp, Cerastes cornutus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:hognose snake, puff adder, sand viper", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:viper:horned viper, cerastes, sand viper, horned asp, Cerastes cornutus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:water snake", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:viper:horned viper, cerastes, sand viper, horned asp, Cerastes cornutus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:night snake, Hypsiglena torquata", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:viper:horned viper, cerastes, sand viper, horned asp, Cerastes cornutus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:constrictor:boa:python:rock python, rock snake, Python sebae", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:viper:horned viper, cerastes, sand viper, horned asp, Cerastes cornutus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:viper:horned viper, cerastes, sand viper, horned asp, Cerastes cornutus", "oc": 30}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:viper:horned viper, cerastes, sand viper, horned asp, Cerastes cornutus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:viper:pit viper:rattlesnake-rat:diamondback, diamondback rattlesnake, Crotalus adamanteus", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:viper:horned viper, cerastes, sand viper, horned asp, Cerastes cornutus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:viper:pit viper:rattlesnake-rat:sidewinder, horned rattlesnake, Crotalus cerastes", "oc": 6}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:viper:horned viper, cerastes, sand viper, horned asp, Cerastes cornutus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:hermit crab", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:viper:horned viper, cerastes, sand viper, horned asp, Cerastes cornutus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:weevil", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:viper:horned viper, cerastes, sand viper, horned asp, Cerastes cornutus", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:binoculars, field glasses, opera glasses", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:viper:horned viper, cerastes, sand viper, horned asp, Cerastes cornutus", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:supporting stru:framework:honeycomb", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:viper:horned viper, cerastes, sand viper, horned asp, Cerastes cornutus", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:stone wall", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:viper:pit viper:rattlesnake-rat:diamondback, diamondback rattlesnake, Crotalus adamanteus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:teiid lizard-te:whiptail, whiptail lizard", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:viper:pit viper:rattlesnake-rat:diamondback, diamondback rattlesnake, Crotalus adamanteus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:crocodilian rep:crocodile:African crocodile, Nile crocodile, Crocodylus niloticus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:viper:pit viper:rattlesnake-rat:diamondback, diamondback rattlesnake, Crotalus adamanteus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:hognose snake, puff adder, sand viper", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:viper:pit viper:rattlesnake-rat:diamondback, diamondback rattlesnake, Crotalus adamanteus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:water snake", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:viper:pit viper:rattlesnake-rat:diamondback, diamondback rattlesnake, Crotalus adamanteus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:night snake, Hypsiglena torquata", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:viper:pit viper:rattlesnake-rat:diamondback, diamondback rattlesnake, Crotalus adamanteus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:constrictor:boa:python:rock python, rock snake, Python sebae", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:viper:pit viper:rattlesnake-rat:diamondback, diamondback rattlesnake, Crotalus adamanteus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:elapid-elapid s:cobra:Indian cobra, Naja naja", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:viper:pit viper:rattlesnake-rat:diamondback, diamondback rattlesnake, Crotalus adamanteus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:viper:horned viper, cerastes, sand viper, horned asp, Cerastes cornutus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:viper:pit viper:rattlesnake-rat:diamondback, diamondback rattlesnake, Crotalus adamanteus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:viper:pit viper:rattlesnake-rat:diamondback, diamondback rattlesnake, Crotalus adamanteus", "oc": 30}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:viper:pit viper:rattlesnake-rat:diamondback, diamondback rattlesnake, Crotalus adamanteus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:viper:pit viper:rattlesnake-rat:sidewinder, horned rattlesnake, Crotalus cerastes", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:viper:pit viper:rattlesnake-rat:diamondback, diamondback rattlesnake, Crotalus adamanteus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:Chesapeake Bay retriever", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:viper:pit viper:rattlesnake-rat:diamondback, diamondback rattlesnake, Crotalus adamanteus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:viverrine-viver:mongoose", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:viper:pit viper:rattlesnake-rat:diamondback, diamondback rattlesnake, Crotalus adamanteus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:goat-caprine an:wild goat:ibex, Capra ibex", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:viper:pit viper:rattlesnake-rat:diamondback, diamondback rattlesnake, Crotalus adamanteus", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:power tool:power saw-saw-s:chain saw, chainsaw", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:viper:pit viper:rattlesnake-rat:sidewinder, horned rattlesnake, Crotalus cerastes", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:sea turtle-mari:leatherback turtle, leatherback, leathery turtle, Dermochelys coriacea", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:viper:pit viper:rattlesnake-rat:sidewinder, horned rattlesnake, Crotalus cerastes", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:gecko:banded gecko", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:viper:pit viper:rattlesnake-rat:sidewinder, horned rattlesnake, Crotalus cerastes", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:agamid-agamid l:frilled lizard, Chlamydosaurus kingi", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:viper:pit viper:rattlesnake-rat:sidewinder, horned rattlesnake, Crotalus cerastes", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:anguid lizard:alligator lizard", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:viper:pit viper:rattlesnake-rat:sidewinder, horned rattlesnake, Crotalus cerastes", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:hognose snake, puff adder, sand viper", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:viper:pit viper:rattlesnake-rat:sidewinder, horned rattlesnake, Crotalus cerastes", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:water snake", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:viper:pit viper:rattlesnake-rat:sidewinder, horned rattlesnake, Crotalus cerastes", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:night snake, Hypsiglena torquata", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:viper:pit viper:rattlesnake-rat:sidewinder, horned rattlesnake, Crotalus cerastes", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:viper:horned viper, cerastes, sand viper, horned asp, Cerastes cornutus", "oc": 23}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:viper:pit viper:rattlesnake-rat:sidewinder, horned rattlesnake, Crotalus cerastes", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:viper:pit viper:rattlesnake-rat:diamondback, diamondback rattlesnake, Crotalus adamanteus", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:viper:pit viper:rattlesnake-rat:sidewinder, horned rattlesnake, Crotalus cerastes", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:viper:pit viper:rattlesnake-rat:sidewinder, horned rattlesnake, Crotalus cerastes", "oc": 12}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:viper:pit viper:rattlesnake-rat:sidewinder, horned rattlesnake, Crotalus cerastes", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:scorpion", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:viper:pit viper:rattlesnake-rat:sidewinder, horned rattlesnake, Crotalus cerastes", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:worm:nematode, nematode worm, roundworm", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:viper:pit viper:rattlesnake-rat:sidewinder, horned rattlesnake, Crotalus cerastes", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:edentate:armadillo", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:viper:pit viper:rattlesnake-rat:sidewinder, horned rattlesnake, Crotalus cerastes", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:medical instrum:syringe", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:trilobite", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:constrictor:boa:python:rock python, rock snake, Python sebae", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:trilobite", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:trilobite", "oc": 46}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:trilobite", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:centipede", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:trilobite", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:chiton, coat-of-mail shell, sea cradle, polyplacophore", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:trilobite", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:supporting stru:framework:honeycomb", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:harvestman, daddy longlegs, Phalangium opilio", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:trilobite", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:harvestman, daddy longlegs, Phalangium opilio", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:harvestman, daddy longlegs, Phalangium opilio", "oc": 42}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:harvestman, daddy longlegs, Phalangium opilio", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:spider:wolf spider, hunting spider", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:harvestman, daddy longlegs, Phalangium opilio", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:centipede", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:harvestman, daddy longlegs, Phalangium opilio", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:phasmid-phasmid:walking stick, walkingstick, stick insect", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:harvestman, daddy longlegs, Phalangium opilio", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:screen:window screen", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:harvestman, daddy longlegs, Phalangium opilio", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:acorn", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:scorpion", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:scorpion", "oc": 43}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:scorpion", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:acarine:tick", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:scorpion", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:hymenopterous i:ant, emmet, pismire", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:scorpion", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:echinoderm:starfish, sea star", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:scorpion", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:knife:cleaver, meat cleaver, chopper", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:scorpion", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:trap:mousetrap", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:spider:black and gold garden spider, Argiope aurantia", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:harvestman, daddy longlegs, Phalangium opilio", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:spider:black and gold garden spider, Argiope aurantia", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:spider:black and gold garden spider, Argiope aurantia", "oc": 46}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:spider:black and gold garden spider, Argiope aurantia", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:spider:garden spider, Aranea diademata", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:spider:barn spider, Araneus cavaticus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:harvestman, daddy longlegs, Phalangium opilio", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:spider:barn spider, Araneus cavaticus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:spider:barn spider, Araneus cavaticus", "oc": 20}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:spider:barn spider, Araneus cavaticus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:spider:garden spider, Aranea diademata", "oc": 14}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:spider:barn spider, Araneus cavaticus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:spider:black widow, Latrodectus mactans", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:spider:barn spider, Araneus cavaticus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:spider:wolf spider, hunting spider", "oc": 7}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:spider:barn spider, Araneus cavaticus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:dictyopterous i:mantis, mantid", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:spider:barn spider, Araneus cavaticus", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:trap:web-entanglemen:spider web, spider's web", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:spider:garden spider, Aranea diademata", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:spider:black and gold garden spider, Argiope aurantia", "oc": 12}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:spider:garden spider, Aranea diademata", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:spider:barn spider, Araneus cavaticus", "oc": 5}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:spider:garden spider, Aranea diademata", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:spider:garden spider, Aranea diademata", "oc": 28}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:spider:garden spider, Aranea diademata", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:spider:black widow, Latrodectus mactans", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:spider:garden spider, Aranea diademata", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:gastropod-univa:snail", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:spider:garden spider, Aranea diademata", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:long-horned beetle, longicorn, longicorn beetle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:spider:garden spider, Aranea diademata", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:trap:web-entanglemen:spider web, spider's web", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:spider:black widow, Latrodectus mactans", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:harvestman, daddy longlegs, Phalangium opilio", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:spider:black widow, Latrodectus mactans", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:scorpion", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:spider:black widow, Latrodectus mactans", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:spider:garden spider, Aranea diademata", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:spider:black widow, Latrodectus mactans", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:spider:black widow, Latrodectus mactans", "oc": 43}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:spider:black widow, Latrodectus mactans", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:lamellicorn bee:scarabaeid beet:rhinoceros beetle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:spider:black widow, Latrodectus mactans", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:hymenopterous i:ant, emmet, pismire", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:spider:black widow, Latrodectus mactans", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dish:Petri dish", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:spider:tarantula", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:scorpion", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:spider:tarantula", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:spider:tarantula", "oc": 44}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:spider:tarantula", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:spider:wolf spider, hunting spider", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:spider:tarantula", "at": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:towel:bath towel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:spider:wolf spider, hunting spider", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:iguanid-iguanid:American chameleon, anole, Anolis carolinensis", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:spider:wolf spider, hunting spider", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:spider:black and gold garden spider, Argiope aurantia", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:spider:wolf spider, hunting spider", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:spider:barn spider, Araneus cavaticus", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:spider:wolf spider, hunting spider", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:spider:garden spider, Aranea diademata", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:spider:wolf spider, hunting spider", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:spider:black widow, Latrodectus mactans", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:spider:wolf spider, hunting spider", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:spider:wolf spider, hunting spider", "oc": 38}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:spider:wolf spider, hunting spider", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crayfish, crawfish, crawdad, crawdaddy", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:spider:wolf spider, hunting spider", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:hymenopterous i:ant, emmet, pismire", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:spider:wolf spider, hunting spider", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:phasmid-phasmid:walking stick, walkingstick, stick insect", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:acarine:tick", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:harvestman, daddy longlegs, Phalangium opilio", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:acarine:tick", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:scorpion", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:acarine:tick", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:spider:black and gold garden spider, Argiope aurantia", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:acarine:tick", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:spider:barn spider, Araneus cavaticus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:acarine:tick", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:acarine:tick", "oc": 38}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:acarine:tick", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crayfish, crawfish, crawdad, crawdaddy", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:acarine:tick", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:leaf beetle, chrysomelid", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:acarine:tick", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:lamellicorn bee:scarabaeid beet:rhinoceros beetle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:acarine:tick", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cosmetic:makeup-make-up-:face powder", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:acarine:tick", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:maraca", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:centipede", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:anguid lizard:alligator lizard", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:centipede", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:king snake, kingsnake", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:centipede", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:garter snake, grass snake", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:centipede", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:centipede", "oc": 36}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:centipede", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:gastropod-univa:slug", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:centipede", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:malacostracan c:isopod", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:centipede", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:homopterous ins:cicada, cicala", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:centipede", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:echinoderm:starfish, sea star", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:centipede", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:coil, spiral, volute, whorl, helix", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:centipede", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:screw", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:centipede", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:fungus:basidiomycete-b:agaric", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:gallinaceous bi:game bird:grouse:black grouse", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:bird of prey-ra:vulture", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:gallinaceous bi:game bird:grouse:black grouse", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:gallinaceous bi:game bird:grouse:black grouse", "oc": 43}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:gallinaceous bi:game bird:grouse:black grouse", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:gallinaceous bi:game bird:grouse:ptarmigan", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:gallinaceous bi:game bird:grouse:black grouse", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:gallinaceous bi:game bird:grouse:ruffed grouse, partridge, Bonasa umbellus", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:gallinaceous bi:game bird:grouse:black grouse", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:gallinaceous bi:game bird:grouse:prairie chicken, prairie grouse, prairie fowl", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:gallinaceous bi:game bird:grouse:black grouse", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:gallinaceous bi:game bird:phasianid:partridge", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:gallinaceous bi:game bird:grouse:ptarmigan", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:gallinaceous bi:game bird:grouse:black grouse", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:gallinaceous bi:game bird:grouse:ptarmigan", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:gallinaceous bi:game bird:grouse:ptarmigan", "oc": 42}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:gallinaceous bi:game bird:grouse:ptarmigan", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:gallinaceous bi:game bird:grouse:ruffed grouse, partridge, Bonasa umbellus", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:gallinaceous bi:game bird:grouse:ptarmigan", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:gallinaceous bi:game bird:phasianid:quail", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:gallinaceous bi:game bird:grouse:ptarmigan", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:parrot:cockatoo:sulphur-crested cockatoo, Kakatoe galerita, Cacatua galerita", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:gallinaceous bi:game bird:grouse:ptarmigan", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:stork:black stork, Ciconia nigra", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:gallinaceous bi:game bird:grouse:ptarmigan", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:heron:egret:American egret, great white heron, Egretta albus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:gallinaceous bi:game bird:grouse:ptarmigan", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:runner:ski", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:gallinaceous bi:game bird:grouse:ruffed grouse, partridge, Bonasa umbellus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:thrush:robin, American robin, Turdus migratorius", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:gallinaceous bi:game bird:grouse:ruffed grouse, partridge, Bonasa umbellus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:gallinaceous bi:game bird:grouse:ptarmigan", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:gallinaceous bi:game bird:grouse:ruffed grouse, partridge, Bonasa umbellus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:gallinaceous bi:game bird:grouse:ruffed grouse, partridge, Bonasa umbellus", "oc": 43}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:gallinaceous bi:game bird:grouse:ruffed grouse, partridge, Bonasa umbellus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:gallinaceous bi:game bird:phasianid:quail", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:gallinaceous bi:game bird:grouse:ruffed grouse, partridge, Bonasa umbellus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:gallinaceous bi:game bird:phasianid:partridge", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:gallinaceous bi:game bird:grouse:prairie chicken, prairie grouse, prairie fowl", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:water ouzel, dipper", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:gallinaceous bi:game bird:grouse:prairie chicken, prairie grouse, prairie fowl", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:gallinaceous bi:game bird:grouse:ruffed grouse, partridge, Bonasa umbellus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:gallinaceous bi:game bird:grouse:prairie chicken, prairie grouse, prairie fowl", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:gallinaceous bi:game bird:grouse:prairie chicken, prairie grouse, prairie fowl", "oc": 46}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:gallinaceous bi:game bird:grouse:prairie chicken, prairie grouse, prairie fowl", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:stork:white stork, Ciconia ciconia", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:gallinaceous bi:game bird:grouse:prairie chicken, prairie grouse, prairie fowl", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wild dog:African hunting dog, hyena dog, Cape hunting dog, Lycaon pictus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:gallinaceous bi:game bird:phasianid:pheasant:peafowl-bird of:peacock", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:bird of prey-ra:vulture", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:gallinaceous bi:game bird:phasianid:pheasant:peafowl-bird of:peacock", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:gallinaceous bi:game bird:phasianid:pheasant:peafowl-bird of:peacock", "oc": 45}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:gallinaceous bi:game bird:phasianid:pheasant:peafowl-bird of:peacock", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:parrot:cockatoo:sulphur-crested cockatoo, Kakatoe galerita, Cacatua galerita", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:gallinaceous bi:game bird:phasianid:pheasant:peafowl-bird of:peacock", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:handcart-pushca:shopping cart", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:gallinaceous bi:game bird:phasianid:pheasant:peafowl-bird of:peacock", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:bridge-span:suspension bridge", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:gallinaceous bi:game bird:phasianid:quail", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:thrush:robin, American robin, Turdus migratorius", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:gallinaceous bi:game bird:phasianid:quail", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:gallinaceous bi:game bird:grouse:ruffed grouse, partridge, Bonasa umbellus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:gallinaceous bi:game bird:phasianid:quail", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:gallinaceous bi:game bird:phasianid:quail", "oc": 43}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:gallinaceous bi:game bird:phasianid:quail", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:gallinaceous bi:game bird:phasianid:partridge", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:gallinaceous bi:game bird:phasianid:quail", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:ladybug, ladybeetle, lady beetle, ladybird, ladybird beetle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:gallinaceous bi:game bird:phasianid:quail", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:sombrero", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:gallinaceous bi:game bird:phasianid:partridge", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:finch:bunting:indigo bunting, indigo finch, indigo bird, Passerina cyanea", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:gallinaceous bi:game bird:phasianid:partridge", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:gallinaceous bi:game bird:grouse:ptarmigan", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:gallinaceous bi:game bird:phasianid:partridge", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:gallinaceous bi:game bird:grouse:ruffed grouse, partridge, Bonasa umbellus", "oc": 6}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:gallinaceous bi:game bird:phasianid:partridge", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:gallinaceous bi:game bird:grouse:prairie chicken, prairie grouse, prairie fowl", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:gallinaceous bi:game bird:phasianid:partridge", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:gallinaceous bi:game bird:phasianid:quail", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:gallinaceous bi:game bird:phasianid:partridge", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:gallinaceous bi:game bird:phasianid:partridge", "oc": 38}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:gallinaceous bi:game bird:phasianid:partridge", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:shorebird-shore:sandpiper:redshank, Tringa totanus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:parrot:African grey, African gray, Psittacus erithacus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:parrot:African grey, African gray, Psittacus erithacus", "oc": 48}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:parrot:African grey, African gray, Psittacus erithacus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:lobster:spiny lobster, langouste, rock lobster, crawfish, crayfish, sea crawfish", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:parrot:African grey, African gray, Psittacus erithacus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:spiny-finned fi:percoid fish-pe:damselfish-demo:anemone fish", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:parrot:macaw", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:bird of prey-ra:hawk:kite", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:parrot:macaw", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:parrot:macaw", "oc": 46}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:parrot:macaw", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:spiny-finned fi:plectognath-ple:puffer, pufferfish, blowfish, globefish", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:parrot:macaw", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:attire-garb-dre:hairpiece-false:wig", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:parrot:macaw", "at": "root:entity:abstraction-abs:attribute:shape-form:round shape:sphere:ball-globe-orb:globule:bubble", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:parrot:cockatoo:sulphur-crested cockatoo, Kakatoe galerita, Cacatua galerita", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:bird of prey-ra:hawk:kite", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:parrot:cockatoo:sulphur-crested cockatoo, Kakatoe galerita, Cacatua galerita", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:parrot:cockatoo:sulphur-crested cockatoo, Kakatoe galerita, Cacatua galerita", "oc": 44}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:parrot:cockatoo:sulphur-crested cockatoo, Kakatoe galerita, Cacatua galerita", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:stork:white stork, Ciconia ciconia", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:parrot:cockatoo:sulphur-crested cockatoo, Kakatoe galerita, Cacatua galerita", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:crane", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:parrot:cockatoo:sulphur-crested cockatoo, Kakatoe galerita, Cacatua galerita", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:howler monkey, howler", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:parrot:cockatoo:sulphur-crested cockatoo, Kakatoe galerita, Cacatua galerita", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:picket fence, paling", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:parrot:cockatoo:sulphur-crested cockatoo, Kakatoe galerita, Cacatua galerita", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:movable barrier:door:sliding door", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:parrot:lory:lorikeet", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:parrot:macaw", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:parrot:lory:lorikeet", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:parrot:lory:lorikeet", "oc": 49}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:cuculiform bird:cuckoo:coucal", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:finch:house finch, linnet, Carpodacus mexicanus", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:cuculiform bird:cuckoo:coucal", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:thrush:robin, American robin, Turdus migratorius", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:cuculiform bird:cuckoo:coucal", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:titmouse-tit:chickadee", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:cuculiform bird:cuckoo:coucal", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:gallinaceous bi:game bird:grouse:ptarmigan", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:cuculiform bird:cuckoo:coucal", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:gallinaceous bi:game bird:phasianid:quail", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:cuculiform bird:cuckoo:coucal", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:cuculiform bird:cuckoo:coucal", "oc": 43}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:cuculiform bird:cuckoo:coucal", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:piciform bird:jacamar", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:coraciiform bir:bee eater", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:coraciiform bir:bee eater", "oc": 48}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:coraciiform bir:bee eater", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:piciform bird:jacamar", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:coraciiform bir:hornbill", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:bird of prey-ra:vulture", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:coraciiform bir:hornbill", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:parrot:African grey, African gray, Psittacus erithacus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:coraciiform bir:hornbill", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:parrot:macaw", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:coraciiform bir:hornbill", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:coraciiform bir:hornbill", "oc": 42}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:coraciiform bir:hornbill", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:piciform bird:toucan", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:coraciiform bir:hornbill", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:ladybug, ladybeetle, lady beetle, ladybird, ladybird beetle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:coraciiform bir:hornbill", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:unicycle, monocycle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:apodiform bird:hummingbird", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:thrush:robin, American robin, Turdus migratorius", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:apodiform bird:hummingbird", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:apodiform bird:hummingbird", "oc": 46}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:apodiform bird:hummingbird", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:piciform bird:jacamar", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:apodiform bird:hummingbird", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:basin:washbasin, handbasin, washbowl, lavabo, wash-hand basin", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:apodiform bird:hummingbird", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:acorn", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:piciform bird:jacamar", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:finch:bunting:indigo bunting, indigo finch, indigo bird, Passerina cyanea", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:piciform bird:jacamar", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:thrush:nightingale-Lus:bulbul", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:piciform bird:jacamar", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:bird of prey-ra:hawk:kite", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:piciform bird:jacamar", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:spider:garden spider, Aranea diademata", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:piciform bird:jacamar", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:parrot:macaw", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:piciform bird:jacamar", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:piciform bird:jacamar", "oc": 45}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:piciform bird:toucan", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:parrot:lory:lorikeet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:piciform bird:toucan", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:coraciiform bir:hornbill", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:piciform bird:toucan", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:piciform bird:toucan", "oc": 44}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:piciform bird:toucan", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:lemur:Madagascar cat, ring-tailed lemur, Lemur catta", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:piciform bird:toucan", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:machine-simple :wheel:paddlewheel, paddle wheel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:piciform bird:toucan", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:sports implemen:racket, racquet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:waterfowl-water:anseriform bird:duck:drake", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:ringneck snake, ring-necked snake, ring snake", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:waterfowl-water:anseriform bird:duck:drake", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:waterfowl-water:anseriform bird:duck:drake", "oc": 42}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:waterfowl-water:anseriform bird:duck:drake", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:waterfowl-water:anseriform bird:goose", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:waterfowl-water:anseriform bird:duck:drake", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:rail:coot:American coot, marsh hen, mud hen, water hen, Fulica americana", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:waterfowl-water:anseriform bird:duck:drake", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:shorebird-shore:snipe:dowitcher", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:waterfowl-water:anseriform bird:duck:drake", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:breathing devic:snorkel", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:waterfowl-water:anseriform bird:duck:drake", "at": "root:entity:physical entity:object-physical:geological form:shore:lakeside, lakeshore", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:waterfowl-water:anseriform bird:duck:sea duck:merganser-fish :red-breasted merganser, Mergus serrator", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:waterfowl-water:anseriform bird:duck:drake", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:waterfowl-water:anseriform bird:duck:sea duck:merganser-fish :red-breasted merganser, Mergus serrator", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:waterfowl-water:anseriform bird:duck:sea duck:merganser-fish :red-breasted merganser, Mergus serrator", "oc": 43}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:waterfowl-water:anseriform bird:duck:sea duck:merganser-fish :red-breasted merganser, Mergus serrator", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:waterfowl-water:anseriform bird:goose", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:waterfowl-water:anseriform bird:duck:sea duck:merganser-fish :red-breasted merganser, Mergus serrator", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:stork:black stork, Ciconia nigra", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:waterfowl-water:anseriform bird:duck:sea duck:merganser-fish :red-breasted merganser, Mergus serrator", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:shorebird-shore:sandpiper:redshank, Tringa totanus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:waterfowl-water:anseriform bird:duck:sea duck:merganser-fish :red-breasted merganser, Mergus serrator", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:shorebird-shore:oystercatcher, oyster catcher", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:waterfowl-water:anseriform bird:duck:sea duck:merganser-fish :red-breasted merganser, Mergus serrator", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:sled dog-sledge:malamute, malemute, Alaskan malamute", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:waterfowl-water:anseriform bird:goose", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:corvine bird:magpie", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:waterfowl-water:anseriform bird:goose", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:gallinaceous bi:game bird:grouse:black grouse", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:waterfowl-water:anseriform bird:goose", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:waterfowl-water:anseriform bird:duck:drake", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:waterfowl-water:anseriform bird:goose", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:waterfowl-water:anseriform bird:duck:sea duck:merganser-fish :red-breasted merganser, Mergus serrator", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:waterfowl-water:anseriform bird:goose", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:waterfowl-water:anseriform bird:goose", "oc": 37}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:waterfowl-water:anseriform bird:goose", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:swan:black swan, Cygnus atratus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:waterfowl-water:anseriform bird:goose", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:heron:egret:American egret, great white heron, Egretta albus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:waterfowl-water:anseriform bird:goose", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:crane", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:waterfowl-water:anseriform bird:goose", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:shorebird-shore:plover:turnstone:ruddy turnstone, Arenaria interpres", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:waterfowl-water:anseriform bird:goose", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:shorebird-shore:oystercatcher, oyster catcher", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:waterfowl-water:anseriform bird:goose", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:seabird-sea bir:sphenisciform s:penguin:king penguin, Aptenodytes patagonica", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:waterfowl-water:anseriform bird:goose", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:aquatic mammal:cetacean-cetace:whale:toothed whale:dolphin:killer whale, killer, orca, grampus, sea wolf, Orcinus orca", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:waterfowl-water:anseriform bird:goose", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:wrapping-wrap-w:jacket:book jacket, dust cover, dust jacket, dust wrapper", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:swan:black swan, Cygnus atratus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:waterfowl-water:anseriform bird:goose", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:swan:black swan, Cygnus atratus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:swan:black swan, Cygnus atratus", "oc": 48}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:swan:black swan, Cygnus atratus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:heron:egret:American egret, great white heron, Egretta albus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:tusker", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:tusker", "oc": 28}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:tusker", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:echinoderm:starfish, sea star", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:tusker", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:rodent-gnawer:marmot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:tusker", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:bison", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:tusker", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:pachyderm:elephant:Indian elephant, Elephas maximus", "oc": 11}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:tusker", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:pachyderm:elephant:African elephant, Loxodonta africana", "oc": 7}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:tusker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:outerwear-overc:gown-robe:vestment", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:prototherian:monotreme-egg-l:echidna, spiny anteater, anteater", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:prototherian:monotreme-egg-l:echidna, spiny anteater, anteater", "oc": 50}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:prototherian:monotreme-egg-l:platypus, duckbill, duckbilled platypus, duck-billed platypus, Ornithorhynchus anatinus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:soft-finned fis:cypriniform fis:cyprinid-cyprin:goldfish, Carassius auratus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:prototherian:monotreme-egg-l:platypus, duckbill, duckbilled platypus, duck-billed platypus, Ornithorhynchus anatinus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:frog-toad-toad :true frog-ranid:bullfrog, Rana catesbeiana", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:prototherian:monotreme-egg-l:platypus, duckbill, duckbilled platypus, duck-billed platypus, Ornithorhynchus anatinus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:lacertid lizard:green lizard, Lacerta viridis", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:prototherian:monotreme-egg-l:platypus, duckbill, duckbilled platypus, duck-billed platypus, Ornithorhynchus anatinus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:crocodilian rep:crocodile:African crocodile, Nile crocodile, Crocodylus niloticus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:prototherian:monotreme-egg-l:platypus, duckbill, duckbilled platypus, duck-billed platypus, Ornithorhynchus anatinus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:crocodilian rep:alligator-gator:American alligator, Alligator mississipiensis", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:prototherian:monotreme-egg-l:platypus, duckbill, duckbilled platypus, duck-billed platypus, Ornithorhynchus anatinus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:archosaur-archo:dinosaur:ornithischian-o:ceratopsian-hor:triceratops", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:prototherian:monotreme-egg-l:platypus, duckbill, duckbilled platypus, duck-billed platypus, Ornithorhynchus anatinus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:water snake", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:prototherian:monotreme-egg-l:platypus, duckbill, duckbilled platypus, duck-billed platypus, Ornithorhynchus anatinus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:waterfowl-water:anseriform bird:duck:drake", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:prototherian:monotreme-egg-l:platypus, duckbill, duckbilled platypus, duck-billed platypus, Ornithorhynchus anatinus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:prototherian:monotreme-egg-l:platypus, duckbill, duckbilled platypus, duck-billed platypus, Ornithorhynchus anatinus", "oc": 35}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:prototherian:monotreme-egg-l:platypus, duckbill, duckbilled platypus, duck-billed platypus, Ornithorhynchus anatinus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:chiton, coat-of-mail shell, sea cradle, polyplacophore", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:prototherian:monotreme-egg-l:platypus, duckbill, duckbilled platypus, duck-billed platypus, Ornithorhynchus anatinus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:lamellicorn bee:scarabaeid beet:dung beetle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:prototherian:monotreme-egg-l:platypus, duckbill, duckbilled platypus, duck-billed platypus, Ornithorhynchus anatinus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:hippopotamus, hippo, river horse, Hippopotamus amphibius", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:prototherian:monotreme-egg-l:platypus, duckbill, duckbilled platypus, duck-billed platypus, Ornithorhynchus anatinus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:otter", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:prototherian:monotreme-egg-l:platypus, duckbill, duckbilled platypus, duck-billed platypus, Ornithorhynchus anatinus", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:knife:cleaver, meat cleaver, chopper", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:prototherian:monotreme-egg-l:platypus, duckbill, duckbilled platypus, duck-billed platypus, Ornithorhynchus anatinus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:fungus:stinkhorn, carrion fungus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:metatherian:marsupial-pouch:kangaroo:wallaby, brush kangaroo", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:gallinaceous bi:game bird:phasianid:quail", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:metatherian:marsupial-pouch:kangaroo:wallaby, brush kangaroo", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:prototherian:monotreme-egg-l:platypus, duckbill, duckbilled platypus, duck-billed platypus, Ornithorhynchus anatinus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:metatherian:marsupial-pouch:kangaroo:wallaby, brush kangaroo", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:metatherian:marsupial-pouch:kangaroo:wallaby, brush kangaroo", "oc": 44}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:metatherian:marsupial-pouch:kangaroo:wallaby, brush kangaroo", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:wildcat:lynx, catamount", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:metatherian:marsupial-pouch:kangaroo:wallaby, brush kangaroo", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:lagomorph-gnawi:leporid-leporid:rabbit-coney-co:wood rabbit, cottontail, cottontail rabbit", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:metatherian:marsupial-pouch:kangaroo:wallaby, brush kangaroo", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:rodent-gnawer:porcupine, hedgehog", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:metatherian:marsupial-pouch:kangaroo:wallaby, brush kangaroo", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:edentate:armadillo", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:metatherian:marsupial-pouch:phalanger-oposs:koala, koala bear, kangaroo bear, native bear, Phascolarctos cinereus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:spider:tarantula", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:metatherian:marsupial-pouch:phalanger-oposs:koala, koala bear, kangaroo bear, native bear, Phascolarctos cinereus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:metatherian:marsupial-pouch:phalanger-oposs:koala, koala bear, kangaroo bear, native bear, Phascolarctos cinereus", "oc": 44}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:metatherian:marsupial-pouch:phalanger-oposs:koala, koala bear, kangaroo bear, native bear, Phascolarctos cinereus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:metatherian:marsupial-pouch:wombat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:metatherian:marsupial-pouch:phalanger-oposs:koala, koala bear, kangaroo bear, native bear, Phascolarctos cinereus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:camel:Arabian camel, dromedary, Camelus dromedarius", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:metatherian:marsupial-pouch:phalanger-oposs:koala, koala bear, kangaroo bear, native bear, Phascolarctos cinereus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:edentate:sloth-tree slot:three-toed sloth, ai, Bradypus tridactylus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:metatherian:marsupial-pouch:phalanger-oposs:koala, koala bear, kangaroo bear, native bear, Phascolarctos cinereus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:colobus, colobus monkey", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:metatherian:marsupial-pouch:phalanger-oposs:koala, koala bear, kangaroo bear, native bear, Phascolarctos cinereus", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:greenhouse, nursery, glasshouse", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:metatherian:marsupial-pouch:wombat", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:metatherian:marsupial-pouch:kangaroo:wallaby, brush kangaroo", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:metatherian:marsupial-pouch:wombat", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:metatherian:marsupial-pouch:phalanger-oposs:koala, koala bear, kangaroo bear, native bear, Phascolarctos cinereus", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:metatherian:marsupial-pouch:wombat", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:metatherian:marsupial-pouch:wombat", "oc": 36}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:metatherian:marsupial-pouch:wombat", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:kelpie", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:metatherian:marsupial-pouch:wombat", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:viverrine-viver:mongoose", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:metatherian:marsupial-pouch:wombat", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:swine:wild boar, boar, Sus scrofa", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:metatherian:marsupial-pouch:wombat", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:bison", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:metatherian:marsupial-pouch:wombat", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:weasel", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:metatherian:marsupial-pouch:wombat", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:polecat, fitch, foulmart, foumart, Mustela putorius", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:metatherian:marsupial-pouch:wombat", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:lemur:indri, indris, Indri indri, Indri brevicaudatus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:coelenterate-cn:jellyfish", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:sea snake", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:coelenterate-cn:jellyfish", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:coelenterate-cn:jellyfish", "oc": 43}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:coelenterate-cn:jellyfish", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:odonate:damselfly", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:coelenterate-cn:jellyfish", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:spiny-finned fi:plectognath-ple:puffer, pufferfish, blowfish, globefish", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:coelenterate-cn:jellyfish", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:bonnet, poke bonnet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:coelenterate-cn:jellyfish", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:fountain", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:coelenterate-cn:jellyfish", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:breathing devic:snorkel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:coelenterate-cn:jellyfish", "at": "root:entity:physical entity:object-physical:geological form:natural elevati:ridge:reef:coral reef", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:coelenterate-cn:anthozoan-actin:sea anemone, anemone", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:coelenterate-cn:jellyfish", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:coelenterate-cn:anthozoan-actin:sea anemone, anemone", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:coelenterate-cn:anthozoan-actin:sea anemone, anemone", "oc": 32}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:coelenterate-cn:anthozoan-actin:sea anemone, anemone", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:gastropod-univa:snail", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:coelenterate-cn:anthozoan-actin:sea anemone, anemone", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:chiton, coat-of-mail shell, sea cradle, polyplacophore", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:coelenterate-cn:anthozoan-actin:sea anemone, anemone", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:hermit crab", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:coelenterate-cn:anthozoan-actin:sea anemone, anemone", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:echinoderm:sea cucumber, holothurian", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:coelenterate-cn:anthozoan-actin:sea anemone, anemone", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:spiny-finned fi:percoid fish-pe:damselfish-demo:anemone fish", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:coelenterate-cn:anthozoan-actin:sea anemone, anemone", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:candle, taper, wax light", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:coelenterate-cn:anthozoan-actin:sea anemone, anemone", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:scarf:feather boa, boa", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:coelenterate-cn:anthozoan-actin:sea anemone, anemone", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:fabric-cloth-ma:velvet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:coelenterate-cn:anthozoan-actin:sea anemone, anemone", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:cardoon", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:coelenterate-cn:anthozoan-actin:sea anemone, anemone", "at": "root:entity:physical entity:object-physical:geological form:natural elevati:ridge:reef:coral reef", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:coelenterate-cn:anthozoan-actin:sea anemone, anemone", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:plant-flora-pla:vascular plant-:spermatophyte-p:angiosperm-flow:flower:daisy", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:coelenterate-cn:anthozoan-actin:coral:stony coral-mad:brain coral", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:coelenterate-cn:anthozoan-actin:coral:stony coral-mad:brain coral", "oc": 44}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:coelenterate-cn:anthozoan-actin:coral:stony coral-mad:brain coral", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:echinoderm:sea urchin", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:coelenterate-cn:anthozoan-actin:coral:stony coral-mad:brain coral", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:edentate:armadillo", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:coelenterate-cn:anthozoan-actin:coral:stony coral-mad:brain coral", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:soft-finned fis:eel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:coelenterate-cn:anthozoan-actin:coral:stony coral-mad:brain coral", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:spiny-finned fi:scorpaenoid-sco:scorpaenid-scor:lionfish", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:coelenterate-cn:anthozoan-actin:coral:stony coral-mad:brain coral", "at": "root:entity:physical entity:object-physical:geological form:natural elevati:ridge:reef:coral reef", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:coelenterate-cn:anthozoan-actin:coral:stony coral-mad:brain coral", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:fungus:coral fungus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:worm:flatworm, platyhelminth", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:thunder snake, worm snake, Carphophis amoenus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:worm:flatworm, platyhelminth", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:worm:flatworm, platyhelminth", "oc": 35}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:worm:flatworm, platyhelminth", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:gastropod-univa:slug", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:worm:flatworm, platyhelminth", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:gastropod-univa:sea slug, nudibranch", "oc": 11}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:worm:flatworm, platyhelminth", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:phasmid-phasmid:walking stick, walkingstick, stick insect", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:worm:flatworm, platyhelminth", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:spiny-finned fi:percoid fish-pe:damselfish-demo:anemone fish", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:worm:nematode, nematode worm, roundworm", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:salamander:newt-triton:eft", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:worm:nematode, nematode worm, roundworm", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:vine snake", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:worm:nematode, nematode worm, roundworm", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:worm:nematode, nematode worm, roundworm", "oc": 43}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:worm:nematode, nematode worm, roundworm", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crayfish, crawfish, crawdad, crawdaddy", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:worm:nematode, nematode worm, roundworm", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:neuropteron-neu:lacewing, lacewing fly", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:worm:nematode, nematode worm, roundworm", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:rodent-gnawer:hamster", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:worm:nematode, nematode worm, roundworm", "at": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:cracker:pretzel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:worm:nematode, nematode worm, roundworm", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:fungus:coral fungus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:gastropod-univa:conch", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:sea turtle-mari:leatherback turtle, leatherback, leathery turtle, Dermochelys coriacea", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:gastropod-univa:conch", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:chameleon-chama:African chameleon, Chamaeleo chamaeleon", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:gastropod-univa:conch", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:gastropod-univa:conch", "oc": 34}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:gastropod-univa:conch", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:gastropod-univa:snail", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:gastropod-univa:conch", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:cephalopod-ceph:chambered nautilus, pearly nautilus, nautilus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:gastropod-univa:conch", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:hermit crab", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:gastropod-univa:conch", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:echinoderm:starfish, sea star", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:gastropod-univa:conch", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:clog, geta, patten, sabot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:gastropod-univa:conch", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:diaper, nappy, napkin", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:gastropod-univa:conch", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pot:teapot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:gastropod-univa:conch", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:article:ware:tableware:cutlery-eating :spoon:wooden spoon", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:gastropod-univa:conch", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:pizza, pizza pie", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:gastropod-univa:conch", "at": "root:entity:physical entity:object-physical:geological form:shore:seashore, coast, seacoast, sea-coast", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:gastropod-univa:snail", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:frog-toad-toad :true frog-ranid:bullfrog, Rana catesbeiana", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:gastropod-univa:snail", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:spider:garden spider, Aranea diademata", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:gastropod-univa:snail", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:gastropod-univa:snail", "oc": 40}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:gastropod-univa:snail", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:gastropod-univa:slug", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:gastropod-univa:snail", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:chiton, coat-of-mail shell, sea cradle, polyplacophore", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:gastropod-univa:snail", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:hermit crab", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:gastropod-univa:snail", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:phasmid-phasmid:walking stick, walkingstick, stick insect", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:gastropod-univa:snail", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:odonate:dragonfly, darning needle, devil's darning needle, sewing needle, snake feeder, snake doctor, mosquito hawk, skeeter hawk", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:gastropod-univa:snail", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:fig", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:gastropod-univa:snail", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:plant-flora-pla:vascular plant-:spermatophyte-p:angiosperm-flow:flower:daisy", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:gastropod-univa:slug", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:salamander:newt-triton:common newt, Triturus vulgaris", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:gastropod-univa:slug", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:salamander:newt-triton:eft", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:gastropod-univa:slug", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:frog-toad-toad :tailed frog, bell toad, ribbed toad, tailed toad, Ascaphus trui", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:gastropod-univa:slug", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:crocodilian rep:crocodile:African crocodile, Nile crocodile, Crocodylus niloticus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:gastropod-univa:slug", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:hognose snake, puff adder, sand viper", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:gastropod-univa:slug", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:night snake, Hypsiglena torquata", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:gastropod-univa:slug", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:gastropod-univa:slug", "oc": 36}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:gastropod-univa:slug", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:gastropod-univa:sea slug, nudibranch", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:gastropod-univa:slug", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:hook, claw", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:gastropod-univa:slug", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:shovel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:gastropod-univa:slug", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:snack food:sandwich:hotdog, hot dog, red hot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:gastropod-univa:slug", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:mushroom", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:gastropod-univa:slug", "at": "root:entity:physical entity:matter:substance:food-nutrient:beverage-drink-:coffee-java:espresso", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:gastropod-univa:sea slug, nudibranch", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:sea snake", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:gastropod-univa:sea slug, nudibranch", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:prototherian:monotreme-egg-l:platypus, duckbill, duckbilled platypus, duck-billed platypus, Ornithorhynchus anatinus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:gastropod-univa:sea slug, nudibranch", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:worm:flatworm, platyhelminth", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:gastropod-univa:sea slug, nudibranch", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:worm:nematode, nematode worm, roundworm", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:gastropod-univa:sea slug, nudibranch", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:gastropod-univa:sea slug, nudibranch", "oc": 43}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:gastropod-univa:sea slug, nudibranch", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:echinoderm:starfish, sea star", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:gastropod-univa:sea slug, nudibranch", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:spiny-finned fi:scorpaenoid-sco:scorpaenid-scor:lionfish", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:gastropod-univa:sea slug, nudibranch", "at": "root:entity:physical entity:object-physical:geological form:natural elevati:ridge:reef:coral reef", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:chiton, coat-of-mail shell, sea cradle, polyplacophore", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:worm:flatworm, platyhelminth", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:chiton, coat-of-mail shell, sea cradle, polyplacophore", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:gastropod-univa:snail", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:chiton, coat-of-mail shell, sea cradle, polyplacophore", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:chiton, coat-of-mail shell, sea cradle, polyplacophore", "oc": 41}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:chiton, coat-of-mail shell, sea cradle, polyplacophore", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crab:rock crab, Cancer irroratus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:chiton, coat-of-mail shell, sea cradle, polyplacophore", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:echinoderm:starfish, sea star", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:chiton, coat-of-mail shell, sea cradle, polyplacophore", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:echinoderm:sea cucumber, holothurian", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:chiton, coat-of-mail shell, sea cradle, polyplacophore", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:top-cover:cap:bottlecap", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:chiton, coat-of-mail shell, sea cradle, polyplacophore", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:acorn", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:chiton, coat-of-mail shell, sea cradle, polyplacophore", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:seed:buckeye, horse chestnut, conker", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:cephalopod-ceph:chambered nautilus, pearly nautilus, nautilus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:constrictor:boa:python:rock python, rock snake, Python sebae", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:cephalopod-ceph:chambered nautilus, pearly nautilus, nautilus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:gastropod-univa:conch", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:cephalopod-ceph:chambered nautilus, pearly nautilus, nautilus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:chiton, coat-of-mail shell, sea cradle, polyplacophore", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:cephalopod-ceph:chambered nautilus, pearly nautilus, nautilus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:cephalopod-ceph:chambered nautilus, pearly nautilus, nautilus", "oc": 41}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:cephalopod-ceph:chambered nautilus, pearly nautilus, nautilus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:spiny-finned fi:percoid fish-pe:damselfish-demo:anemone fish", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:cephalopod-ceph:chambered nautilus, pearly nautilus, nautilus", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:bakery, bakeshop, bakehouse", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:cephalopod-ceph:chambered nautilus, pearly nautilus, nautilus", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:clog, geta, patten, sabot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:cephalopod-ceph:chambered nautilus, pearly nautilus, nautilus", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:padding-cushion:cushion:pillow", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:cephalopod-ceph:chambered nautilus, pearly nautilus, nautilus", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:basin:washbasin, handbasin, washbowl, lavabo, wash-hand basin", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:cephalopod-ceph:chambered nautilus, pearly nautilus, nautilus", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:housing-lodging:dwelling-home-d:yurt", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crab:Dungeness crab, Cancer magister", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:frog-toad-toad :tree frog, tree-frog", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crab:Dungeness crab, Cancer magister", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crab:Dungeness crab, Cancer magister", "oc": 40}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crab:Dungeness crab, Cancer magister", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crab:rock crab, Cancer irroratus", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crab:Dungeness crab, Cancer magister", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crab:fiddler crab", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crab:Dungeness crab, Cancer magister", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crab:king crab, Alaska crab, Alaskan king crab, Alaska king crab, Paralithodes camtschatica", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crab:Dungeness crab, Cancer magister", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:ganoid-ganoid f:gar, garfish, garpike, billfish, Lepisosteus osseus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crab:Dungeness crab, Cancer magister", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:ocarina, sweet potato", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crab:Dungeness crab, Cancer magister", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:potpie", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crab:rock crab, Cancer irroratus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:iguanid-iguanid:common iguana, iguana, Iguana iguana", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crab:rock crab, Cancer irroratus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:scorpion", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crab:rock crab, Cancer irroratus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:spider:barn spider, Araneus cavaticus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crab:rock crab, Cancer irroratus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crab:Dungeness crab, Cancer magister", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crab:rock crab, Cancer irroratus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crab:rock crab, Cancer irroratus", "oc": 30}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crab:rock crab, Cancer irroratus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crab:fiddler crab", "oc": 5}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crab:rock crab, Cancer irroratus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crab:king crab, Alaska crab, Alaskan king crab, Alaska king crab, Paralithodes camtschatica", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crab:rock crab, Cancer irroratus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crayfish, crawfish, crawdad, crawdaddy", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crab:rock crab, Cancer irroratus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:hermit crab", "oc": 5}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crab:rock crab, Cancer irroratus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:soft-finned fis:salmonid:salmon:coho, cohoe, coho salmon, blue jack, silver salmon, Oncorhynchus kisutch", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crab:rock crab, Cancer irroratus", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:plunger, plumber's helper", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crab:rock crab, Cancer irroratus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:fungus:basidiomycete-b:agaric", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crab:fiddler crab", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:scorpion", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crab:fiddler crab", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crab:Dungeness crab, Cancer magister", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crab:fiddler crab", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crab:rock crab, Cancer irroratus", "oc": 9}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crab:fiddler crab", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crab:fiddler crab", "oc": 33}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crab:fiddler crab", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crayfish, crawfish, crawdad, crawdaddy", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crab:fiddler crab", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:hermit crab", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crab:fiddler crab", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:clip:hair slide", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crab:king crab, Alaska crab, Alaskan king crab, Alaska king crab, Paralithodes camtschatica", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:acarine:tick", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crab:king crab, Alaska crab, Alaskan king crab, Alaska king crab, Paralithodes camtschatica", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crab:Dungeness crab, Cancer magister", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crab:king crab, Alaska crab, Alaskan king crab, Alaska king crab, Paralithodes camtschatica", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crab:rock crab, Cancer irroratus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crab:king crab, Alaska crab, Alaskan king crab, Alaska king crab, Paralithodes camtschatica", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crab:king crab, Alaska crab, Alaskan king crab, Alaska king crab, Paralithodes camtschatica", "oc": 40}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crab:king crab, Alaska crab, Alaskan king crab, Alaska king crab, Paralithodes camtschatica", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crayfish, crawfish, crawdad, crawdaddy", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crab:king crab, Alaska crab, Alaskan king crab, Alaska king crab, Paralithodes camtschatica", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:fungus:basidiomycete-b:agaric", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crab:king crab, Alaska crab, Alaskan king crab, Alaska king crab, Paralithodes camtschatica", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:ear, spike, capitulum", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:lobster:true lobster:American lobster, Northern lobster, Maine lobster, Homarus americanus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:scorpion", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:lobster:true lobster:American lobster, Northern lobster, Maine lobster, Homarus americanus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crab:Dungeness crab, Cancer magister", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:lobster:true lobster:American lobster, Northern lobster, Maine lobster, Homarus americanus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crab:king crab, Alaska crab, Alaskan king crab, Alaska king crab, Paralithodes camtschatica", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:lobster:true lobster:American lobster, Northern lobster, Maine lobster, Homarus americanus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:lobster:true lobster:American lobster, Northern lobster, Maine lobster, Homarus americanus", "oc": 38}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:lobster:true lobster:American lobster, Northern lobster, Maine lobster, Homarus americanus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:lobster:spiny lobster, langouste, rock lobster, crawfish, crayfish, sea crawfish", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:lobster:true lobster:American lobster, Northern lobster, Maine lobster, Homarus americanus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crayfish, crawfish, crawdad, crawdaddy", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:lobster:true lobster:American lobster, Northern lobster, Maine lobster, Homarus americanus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:long-horned beetle, longicorn, longicorn beetle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:lobster:true lobster:American lobster, Northern lobster, Maine lobster, Homarus americanus", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:entree-main cou:plate", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:lobster:true lobster:American lobster, Northern lobster, Maine lobster, Homarus americanus", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:squash:winter squash:acorn squash", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:lobster:true lobster:American lobster, Northern lobster, Maine lobster, Homarus americanus", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:berry:strawberry", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:lobster:spiny lobster, langouste, rock lobster, crawfish, crayfish, sea crawfish", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:spider:wolf spider, hunting spider", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:lobster:spiny lobster, langouste, rock lobster, crawfish, crayfish, sea crawfish", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:gastropod-univa:sea slug, nudibranch", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:lobster:spiny lobster, langouste, rock lobster, crawfish, crayfish, sea crawfish", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:lobster:spiny lobster, langouste, rock lobster, crawfish, crayfish, sea crawfish", "oc": 41}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:lobster:spiny lobster, langouste, rock lobster, crawfish, crayfish, sea crawfish", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crayfish, crawfish, crawdad, crawdaddy", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:lobster:spiny lobster, langouste, rock lobster, crawfish, crayfish, sea crawfish", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:hermit crab", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:lobster:spiny lobster, langouste, rock lobster, crawfish, crayfish, sea crawfish", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:echinoderm:starfish, sea star", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:lobster:spiny lobster, langouste, rock lobster, crawfish, crayfish, sea crawfish", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:spiny-finned fi:plectognath-ple:puffer, pufferfish, blowfish, globefish", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:lobster:spiny lobster, langouste, rock lobster, crawfish, crayfish, sea crawfish", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:butcher shop, meat market", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:lobster:spiny lobster, langouste, rock lobster, crawfish, crayfish, sea crawfish", "at": "root:entity:physical entity:object-physical:geological form:natural elevati:ridge:reef:coral reef", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crayfish, crawfish, crawdad, crawdaddy", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:cock", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crayfish, crawfish, crawdad, crawdaddy", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:salamander:ambystomid-amby:axolotl, mud puppy, Ambystoma mexicanum", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crayfish, crawfish, crawdad, crawdaddy", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:water snake", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crayfish, crawfish, crawdad, crawdaddy", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:scorpion", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crayfish, crawfish, crawdad, crawdaddy", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:centipede", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crayfish, crawfish, crawdad, crawdaddy", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crab:Dungeness crab, Cancer magister", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crayfish, crawfish, crawdad, crawdaddy", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crab:rock crab, Cancer irroratus", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crayfish, crawfish, crawdad, crawdaddy", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crab:fiddler crab", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crayfish, crawfish, crawdad, crawdaddy", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crab:king crab, Alaska crab, Alaskan king crab, Alaska king crab, Paralithodes camtschatica", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crayfish, crawfish, crawdad, crawdaddy", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:lobster:true lobster:American lobster, Northern lobster, Maine lobster, Homarus americanus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crayfish, crawfish, crawdad, crawdaddy", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:lobster:spiny lobster, langouste, rock lobster, crawfish, crayfish, sea crawfish", "oc": 6}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crayfish, crawfish, crawdad, crawdaddy", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crayfish, crawfish, crawdad, crawdaddy", "oc": 26}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crayfish, crawfish, crawdad, crawdaddy", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:dictyopterous i:cockroach, roach", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crayfish, crawfish, crawdad, crawdaddy", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:ganoid-ganoid f:gar, garfish, garpike, billfish, Lepisosteus osseus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crayfish, crawfish, crawdad, crawdaddy", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:lantern:jack-o'-lantern", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:hermit crab", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:box turtle, box tortoise", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:hermit crab", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:acarine:tick", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:hermit crab", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:gastropod-univa:conch", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:hermit crab", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crab:rock crab, Cancer irroratus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:hermit crab", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:lobster:true lobster:American lobster, Northern lobster, Maine lobster, Homarus americanus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:hermit crab", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:hermit crab", "oc": 41}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:hermit crab", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:lamellicorn bee:scarabaeid beet:dung beetle", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:hermit crab", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:fungus:stinkhorn, carrion fungus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:hermit crab", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:fungus:earthstar", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:malacostracan c:isopod", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:salamander:European fire salamander, Salamandra salamandra", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:malacostracan c:isopod", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:scorpion", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:malacostracan c:isopod", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:centipede", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:malacostracan c:isopod", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:gastropod-univa:snail", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:malacostracan c:isopod", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:gastropod-univa:sea slug, nudibranch", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:malacostracan c:isopod", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crab:rock crab, Cancer irroratus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:malacostracan c:isopod", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:hermit crab", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:malacostracan c:isopod", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:malacostracan c:isopod", "oc": 30}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:malacostracan c:isopod", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:weevil", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:malacostracan c:isopod", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:dictyopterous i:cockroach, roach", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:malacostracan c:isopod", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:echinoderm:sea cucumber, holothurian", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:malacostracan c:isopod", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:bakery, bakeshop, bakehouse", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:malacostracan c:isopod", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:bonnet, poke bonnet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:malacostracan c:isopod", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:mask", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:malacostracan c:isopod", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:applicator-appl:paintbrush", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:malacostracan c:isopod", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:basket-handbask:shopping basket", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:malacostracan c:isopod", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dish:bowl:soup bowl", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:malacostracan c:isopod", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:sofa-couch-loun:convertible-sof:studio couch, day bed", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:malacostracan c:isopod", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:acorn", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:malacostracan c:isopod", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:fungus:coral fungus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:malacostracan c:isopod", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:fungus:hen-of-the-woods, hen of the woods, Polyporus frondosus, Grifola frondosa", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:stork:white stork, Ciconia ciconia", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:bird of prey-ra:eagle-bird of J:bald eagle, American eagle, Haliaeetus leucocephalus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:stork:white stork, Ciconia ciconia", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:stork:white stork, Ciconia ciconia", "oc": 44}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:stork:white stork, Ciconia ciconia", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:stork:black stork, Ciconia nigra", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:stork:white stork, Ciconia ciconia", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:heron:egret:American egret, great white heron, Egretta albus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:stork:white stork, Ciconia ciconia", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:seabird-sea bir:pelecaniform se:pelican", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:stork:white stork, Ciconia ciconia", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:defensive struc:fortification-m:castle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:stork:black stork, Ciconia nigra", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:stork:white stork, Ciconia ciconia", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:stork:black stork, Ciconia nigra", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:stork:black stork, Ciconia nigra", "oc": 44}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:stork:black stork, Ciconia nigra", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:crane", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:stork:black stork, Ciconia nigra", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:gallinule-marsh:purple gallinul:European gallinule, Porphyrio porphyrio", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:stork:black stork, Ciconia nigra", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:shorebird-shore:oystercatcher, oyster catcher", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:stork:black stork, Ciconia nigra", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:collie", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:stork:black stork, Ciconia nigra", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:lagomorph-gnawi:leporid-leporid:hare", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:spoonbill", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:waterfowl-water:anseriform bird:goose", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:spoonbill", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:spoonbill", "oc": 48}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:spoonbill", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:heron:egret:American egret, great white heron, Egretta albus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:flamingo", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:stork:black stork, Ciconia nigra", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:flamingo", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:spoonbill", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:flamingo", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:flamingo", "oc": 46}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:flamingo", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:hymenopterous i:ant, emmet, pismire", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:heron:little blue heron, Egretta caerulea", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:corvine bird:jay", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:heron:little blue heron, Egretta caerulea", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:stork:white stork, Ciconia ciconia", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:heron:little blue heron, Egretta caerulea", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:heron:little blue heron, Egretta caerulea", "oc": 44}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:heron:little blue heron, Egretta caerulea", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:heron:egret:American egret, great white heron, Egretta albus", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:heron:little blue heron, Egretta caerulea", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:crane", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:heron:egret:American egret, great white heron, Egretta albus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:parrot:cockatoo:sulphur-crested cockatoo, Kakatoe galerita, Cacatua galerita", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:heron:egret:American egret, great white heron, Egretta albus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:stork:white stork, Ciconia ciconia", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:heron:egret:American egret, great white heron, Egretta albus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:heron:little blue heron, Egretta caerulea", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:heron:egret:American egret, great white heron, Egretta albus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:heron:egret:American egret, great white heron, Egretta albus", "oc": 45}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:heron:egret:American egret, great white heron, Egretta albus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:seabird-sea bir:pelecaniform se:pelican", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:heron:egret:American egret, great white heron, Egretta albus", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:oar:paddle, boat paddle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:heron:bittern", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:sea turtle-mari:loggerhead, loggerhead turtle, Caretta caretta", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:heron:bittern", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:piciform bird:jacamar", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:heron:bittern", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:waterfowl-water:anseriform bird:goose", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:heron:bittern", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:gastropod-univa:sea slug, nudibranch", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:heron:bittern", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:heron:bittern", "oc": 45}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:heron:bittern", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:shorebird-shore:plover:turnstone:ruddy turnstone, Arenaria interpres", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:crane", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:bird of prey-ra:vulture", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:crane", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:stork:black stork, Ciconia nigra", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:crane", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:spoonbill", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:crane", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:heron:little blue heron, Egretta caerulea", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:crane", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:heron:egret:American egret, great white heron, Egretta albus", "oc": 6}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:crane", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:crane", "oc": 35}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:crane", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:place of worshi:mosque", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:crane", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:aircraft:heavier-than-ai:warplane, military plane", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:limpkin, Aramus pictus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:stork:black stork, Ciconia nigra", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:limpkin, Aramus pictus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:spoonbill", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:limpkin, Aramus pictus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:limpkin, Aramus pictus", "oc": 48}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:gallinule-marsh:purple gallinul:European gallinule, Porphyrio porphyrio", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:gallinule-marsh:purple gallinul:European gallinule, Porphyrio porphyrio", "oc": 49}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:gallinule-marsh:purple gallinul:European gallinule, Porphyrio porphyrio", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:rodent-gnawer:beaver", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:rail:coot:American coot, marsh hen, mud hen, water hen, Fulica americana", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:waterfowl-water:anseriform bird:duck:drake", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:rail:coot:American coot, marsh hen, mud hen, water hen, Fulica americana", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:waterfowl-water:anseriform bird:goose", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:rail:coot:American coot, marsh hen, mud hen, water hen, Fulica americana", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:gallinule-marsh:purple gallinul:European gallinule, Porphyrio porphyrio", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:rail:coot:American coot, marsh hen, mud hen, water hen, Fulica americana", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:rail:coot:American coot, marsh hen, mud hen, water hen, Fulica americana", "oc": 44}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:rail:coot:American coot, marsh hen, mud hen, water hen, Fulica americana", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:shorebird-shore:snipe:dowitcher", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:rail:coot:American coot, marsh hen, mud hen, water hen, Fulica americana", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:aquatic mammal:cetacean-cetace:whale:toothed whale:dolphin:killer whale, killer, orca, grampus, sea wolf, Orcinus orca", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:bustard", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:gallinaceous bi:game bird:grouse:ptarmigan", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:bustard", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:crane", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:bustard", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:bustard", "oc": 46}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:bustard", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:hyena, hyaena", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:bustard", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:domestic cat-ho:Egyptian cat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:shorebird-shore:plover:turnstone:ruddy turnstone, Arenaria interpres", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:finch:brambling, Fringilla montifringilla", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:shorebird-shore:plover:turnstone:ruddy turnstone, Arenaria interpres", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:shorebird-shore:plover:turnstone:ruddy turnstone, Arenaria interpres", "oc": 49}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:shorebird-shore:sandpiper:red-backed sandpiper, dunlin, Erolia alpina", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:corvine bird:jay", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:shorebird-shore:sandpiper:red-backed sandpiper, dunlin, Erolia alpina", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:gallinaceous bi:game bird:phasianid:partridge", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:shorebird-shore:sandpiper:red-backed sandpiper, dunlin, Erolia alpina", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:shorebird-shore:plover:turnstone:ruddy turnstone, Arenaria interpres", "oc": 5}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:shorebird-shore:sandpiper:red-backed sandpiper, dunlin, Erolia alpina", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:shorebird-shore:sandpiper:red-backed sandpiper, dunlin, Erolia alpina", "oc": 41}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:shorebird-shore:sandpiper:red-backed sandpiper, dunlin, Erolia alpina", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:shorebird-shore:snipe:dowitcher", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:shorebird-shore:sandpiper:red-backed sandpiper, dunlin, Erolia alpina", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:burrito", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:shorebird-shore:sandpiper:redshank, Tringa totanus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:corvine bird:jay", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:shorebird-shore:sandpiper:redshank, Tringa totanus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:swan:black swan, Cygnus atratus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:shorebird-shore:sandpiper:redshank, Tringa totanus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:stork:black stork, Ciconia nigra", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:shorebird-shore:sandpiper:redshank, Tringa totanus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:shorebird-shore:sandpiper:redshank, Tringa totanus", "oc": 43}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:shorebird-shore:sandpiper:redshank, Tringa totanus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:shorebird-shore:snipe:dowitcher", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:shorebird-shore:sandpiper:redshank, Tringa totanus", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:roof:tile roof", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:shorebird-shore:snipe:dowitcher", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:shorebird-shore:sandpiper:red-backed sandpiper, dunlin, Erolia alpina", "oc": 5}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:shorebird-shore:snipe:dowitcher", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:shorebird-shore:sandpiper:redshank, Tringa totanus", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:shorebird-shore:snipe:dowitcher", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:shorebird-shore:snipe:dowitcher", "oc": 43}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:shorebird-shore:oystercatcher, oyster catcher", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:coraciiform bir:bee eater", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:shorebird-shore:oystercatcher, oyster catcher", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:shorebird-shore:snipe:dowitcher", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:shorebird-shore:oystercatcher, oyster catcher", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:shorebird-shore:oystercatcher, oyster catcher", "oc": 46}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:shorebird-shore:oystercatcher, oyster catcher", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:seabird-sea bir:pelagic bird-oc:albatross, mollymawk", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:shorebird-shore:oystercatcher, oyster catcher", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:breakwater, groin, groyne, mole, bulwark, seawall, jetty", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:seabird-sea bir:pelecaniform se:pelican", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:bird of prey-ra:hawk:kite", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:seabird-sea bir:pelecaniform se:pelican", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:heron:egret:American egret, great white heron, Egretta albus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:seabird-sea bir:pelecaniform se:pelican", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:seabird-sea bir:pelecaniform se:pelican", "oc": 46}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:seabird-sea bir:pelecaniform se:pelican", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:seabird-sea bir:pelagic bird-oc:albatross, mollymawk", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:seabird-sea bir:pelecaniform se:pelican", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:flat-coated retriever", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:seabird-sea bir:sphenisciform s:penguin:king penguin, Aptenodytes patagonica", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:sea turtle-mari:leatherback turtle, leatherback, leathery turtle, Dermochelys coriacea", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:seabird-sea bir:sphenisciform s:penguin:king penguin, Aptenodytes patagonica", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:piciform bird:toucan", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:seabird-sea bir:sphenisciform s:penguin:king penguin, Aptenodytes patagonica", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:seabird-sea bir:sphenisciform s:penguin:king penguin, Aptenodytes patagonica", "oc": 45}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:seabird-sea bir:sphenisciform s:penguin:king penguin, Aptenodytes patagonica", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:ride:carousel, carrousel, merry-go-round, roundabout, whirligig", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:seabird-sea bir:sphenisciform s:penguin:king penguin, Aptenodytes patagonica", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:unicycle, monocycle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:seabird-sea bir:sphenisciform s:penguin:king penguin, Aptenodytes patagonica", "at": "root:entity:physical entity:object-physical:geological form:cliff, drop, drop-off", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:seabird-sea bir:pelagic bird-oc:albatross, mollymawk", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:finch:goldfinch, Carduelis carduelis", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:seabird-sea bir:pelagic bird-oc:albatross, mollymawk", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:sea turtle-mari:loggerhead, loggerhead turtle, Caretta caretta", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:seabird-sea bir:pelagic bird-oc:albatross, mollymawk", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:parrot:cockatoo:sulphur-crested cockatoo, Kakatoe galerita, Cacatua galerita", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:seabird-sea bir:pelagic bird-oc:albatross, mollymawk", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:waterfowl-water:anseriform bird:goose", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:seabird-sea bir:pelagic bird-oc:albatross, mollymawk", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:seabird-sea bir:pelagic bird-oc:albatross, mollymawk", "oc": 45}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:seabird-sea bir:pelagic bird-oc:albatross, mollymawk", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:wild sheep:mountain sheep:bighorn, bighorn sheep, cimarron, Rocky Mountain bighorn, Rocky Mountain sheep, Ovis canadensis", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:aquatic mammal:cetacean-cetace:whale:baleen whale-wh:grey whale, gray whale, devilfish, Eschrichtius gibbosus, Eschrichtius robustus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:sea turtle-mari:leatherback turtle, leatherback, leathery turtle, Dermochelys coriacea", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:aquatic mammal:cetacean-cetace:whale:baleen whale-wh:grey whale, gray whale, devilfish, Eschrichtius gibbosus, Eschrichtius robustus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:archosaur-archo:dinosaur:ornithischian-o:ceratopsian-hor:triceratops", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:aquatic mammal:cetacean-cetace:whale:baleen whale-wh:grey whale, gray whale, devilfish, Eschrichtius gibbosus, Eschrichtius robustus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:aquatic mammal:cetacean-cetace:whale:baleen whale-wh:grey whale, gray whale, devilfish, Eschrichtius gibbosus, Eschrichtius robustus", "oc": 40}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:aquatic mammal:cetacean-cetace:whale:baleen whale-wh:grey whale, gray whale, devilfish, Eschrichtius gibbosus, Eschrichtius robustus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:aquatic mammal:cetacean-cetace:whale:toothed whale:dolphin:killer whale, killer, orca, grampus, sea wolf, Orcinus orca", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:aquatic mammal:cetacean-cetace:whale:baleen whale-wh:grey whale, gray whale, devilfish, Eschrichtius gibbosus, Eschrichtius robustus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:aquatic mammal:sea cow-sirenia:dugong, Dugong dugon", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:aquatic mammal:cetacean-cetace:whale:baleen whale-wh:grey whale, gray whale, devilfish, Eschrichtius gibbosus, Eschrichtius robustus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:aquatic mammal:pinniped mammal:seal:eared seal:sea lion", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:aquatic mammal:cetacean-cetace:whale:baleen whale-wh:grey whale, gray whale, devilfish, Eschrichtius gibbosus, Eschrichtius robustus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:wild sheep:mountain sheep:bighorn, bighorn sheep, cimarron, Rocky Mountain bighorn, Rocky Mountain sheep, Ovis canadensis", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:aquatic mammal:cetacean-cetace:whale:baleen whale-wh:grey whale, gray whale, devilfish, Eschrichtius gibbosus, Eschrichtius robustus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:ganoid-ganoid f:sturgeon", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:aquatic mammal:cetacean-cetace:whale:baleen whale-wh:grey whale, gray whale, devilfish, Eschrichtius gibbosus, Eschrichtius robustus", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:memorial-monume:megalith, megalithic structure", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:aquatic mammal:cetacean-cetace:whale:baleen whale-wh:grey whale, gray whale, devilfish, Eschrichtius gibbosus, Eschrichtius robustus", "at": "root:entity:physical entity:object-physical:geological form:cliff, drop, drop-off", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:aquatic mammal:cetacean-cetace:whale:toothed whale:dolphin:killer whale, killer, orca, grampus, sea wolf, Orcinus orca", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:aquatic mammal:cetacean-cetace:whale:baleen whale-wh:grey whale, gray whale, devilfish, Eschrichtius gibbosus, Eschrichtius robustus", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:aquatic mammal:cetacean-cetace:whale:toothed whale:dolphin:killer whale, killer, orca, grampus, sea wolf, Orcinus orca", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:aquatic mammal:cetacean-cetace:whale:toothed whale:dolphin:killer whale, killer, orca, grampus, sea wolf, Orcinus orca", "oc": 45}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:aquatic mammal:cetacean-cetace:whale:toothed whale:dolphin:killer whale, killer, orca, grampus, sea wolf, Orcinus orca", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:aquatic mammal:pinniped mammal:seal:eared seal:sea lion", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:aquatic mammal:sea cow-sirenia:dugong, Dugong dugon", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:cartilaginous f:elasmobranch-se:shark:mackerel shark:great white shark, white shark, man-eater, man-eating shark, Carcharodon carcharias", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:aquatic mammal:sea cow-sirenia:dugong, Dugong dugon", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:cartilaginous f:elasmobranch-se:shark:hammerhead, hammerhead shark", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:aquatic mammal:sea cow-sirenia:dugong, Dugong dugon", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:cartilaginous f:elasmobranch-se:ray:stingray", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:aquatic mammal:sea cow-sirenia:dugong, Dugong dugon", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:sea turtle-mari:loggerhead, loggerhead turtle, Caretta caretta", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:aquatic mammal:sea cow-sirenia:dugong, Dugong dugon", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:gastropod-univa:conch", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:aquatic mammal:sea cow-sirenia:dugong, Dugong dugon", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:aquatic mammal:cetacean-cetace:whale:toothed whale:dolphin:killer whale, killer, orca, grampus, sea wolf, Orcinus orca", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:aquatic mammal:sea cow-sirenia:dugong, Dugong dugon", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:aquatic mammal:sea cow-sirenia:dugong, Dugong dugon", "oc": 42}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:aquatic mammal:sea cow-sirenia:dugong, Dugong dugon", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:aquatic mammal:pinniped mammal:seal:eared seal:sea lion", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:aquatic mammal:sea cow-sirenia:dugong, Dugong dugon", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:bear:ice bear, polar bear, Ursus Maritimus, Thalarctos maritimus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:aquatic mammal:pinniped mammal:seal:eared seal:sea lion", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:cartilaginous f:elasmobranch-se:shark:mackerel shark:great white shark, white shark, man-eater, man-eating shark, Carcharodon carcharias", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:aquatic mammal:pinniped mammal:seal:eared seal:sea lion", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:sea turtle-mari:leatherback turtle, leatherback, leathery turtle, Dermochelys coriacea", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:aquatic mammal:pinniped mammal:seal:eared seal:sea lion", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:prototherian:monotreme-egg-l:platypus, duckbill, duckbilled platypus, duck-billed platypus, Ornithorhynchus anatinus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:aquatic mammal:pinniped mammal:seal:eared seal:sea lion", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:aquatic mammal:sea cow-sirenia:dugong, Dugong dugon", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:aquatic mammal:pinniped mammal:seal:eared seal:sea lion", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:aquatic mammal:pinniped mammal:seal:eared seal:sea lion", "oc": 40}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:aquatic mammal:pinniped mammal:seal:eared seal:sea lion", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:hippopotamus, hippo, river horse, Hippopotamus amphibius", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:aquatic mammal:pinniped mammal:seal:eared seal:sea lion", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:sheep:ram, tup", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:aquatic mammal:pinniped mammal:seal:eared seal:sea lion", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:otter", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:aquatic mammal:pinniped mammal:seal:eared seal:sea lion", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:armor-armour:body armor-body:cuirass", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:aquatic mammal:pinniped mammal:seal:eared seal:sea lion", "at": "root:entity:physical entity:object-physical:geological form:natural elevati:promontory, headland, head, foreland", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:Chihuahua", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:Chihuahua", "oc": 36}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:Chihuahua", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:Japanese spaniel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:Chihuahua", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:toy spaniel:papillon", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:Chihuahua", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:toy terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:Chihuahua", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:beagle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:Chihuahua", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:bloodhound, sleuthhound", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:Chihuahua", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Border terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:Chihuahua", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Boston bull, Boston terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:Chihuahua", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Shetland sheepdog, Shetland sheep dog, Shetland", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:Chihuahua", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Border collie", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:Chihuahua", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:sled dog-sledge:Siberian husky", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:Chihuahua", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:spitz:Pomeranian", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:Chihuahua", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:domestic cat-ho:Siamese cat, Siamese", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:Chihuahua", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:tub, vat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:Japanese spaniel", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:Japanese spaniel", "oc": 42}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:Japanese spaniel", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:Pekinese, Pekingese, Peke", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:Japanese spaniel", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:Shih-Tzu", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:Japanese spaniel", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:toy spaniel:English toy spa:Blenheim spaniel", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:Japanese spaniel", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:toy spaniel:papillon", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:Maltese dog, Maltese terrier, Maltese", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:Maltese dog, Maltese terrier, Maltese", "oc": 37}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:Maltese dog, Maltese terrier, Maltese", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Bedlington terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:Maltese dog, Maltese terrier, Maltese", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:wirehair-wireha:Welsh terrier:Sealyham terrier, Sealyham", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:Maltese dog, Maltese terrier, Maltese", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Tibetan terrier, chrysanthemum dog", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:Maltese dog, Maltese terrier, Maltese", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:West Highland white terrier", "oc": 5}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:Maltese dog, Maltese terrier, Maltese", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Lhasa, Lhasa apso", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:Maltese dog, Maltese terrier, Maltese", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:poodle-poodle d:toy poodle", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:Maltese dog, Maltese terrier, Maltese", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:lagomorph-gnawi:leporid-leporid:rabbit-coney-co:Angora, Angora rabbit", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:Pekinese, Pekingese, Peke", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:Japanese spaniel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:Pekinese, Pekingese, Peke", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:Pekinese, Pekingese, Peke", "oc": 42}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:Pekinese, Pekingese, Peke", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:Shih-Tzu", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:Pekinese, Pekingese, Peke", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:toy spaniel:papillon", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:Pekinese, Pekingese, Peke", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:silky terrier, Sydney silky", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:Pekinese, Pekingese, Peke", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:spitz:chow, chow chow", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:Pekinese, Pekingese, Peke", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:plaything-toy:teddy, teddy bear", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:Shih-Tzu", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:Maltese dog, Maltese terrier, Maltese", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:Shih-Tzu", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:Pekinese, Pekingese, Peke", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:Shih-Tzu", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:Shih-Tzu", "oc": 37}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:Shih-Tzu", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:toy spaniel:papillon", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:Shih-Tzu", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Tibetan terrier, chrysanthemum dog", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:Shih-Tzu", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Lhasa, Lhasa apso", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:Shih-Tzu", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:cocker spaniel, English cocker spaniel, cocker", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:Shih-Tzu", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :pinscher:affenpinscher, monkey pinscher, monkey dog", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:toy spaniel:English toy spa:Blenheim spaniel", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:toy spaniel:English toy spa:Blenheim spaniel", "oc": 45}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:toy spaniel:English toy spa:Blenheim spaniel", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:toy spaniel:papillon", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:toy spaniel:English toy spa:Blenheim spaniel", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:springer spanie:Welsh springer spaniel", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:toy spaniel:English toy spa:Blenheim spaniel", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Shetland sheepdog, Shetland sheep dog, Shetland", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:toy spaniel:English toy spa:Blenheim spaniel", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:collie", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:toy spaniel:papillon", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:Japanese spaniel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:toy spaniel:papillon", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:Shih-Tzu", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:toy spaniel:papillon", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:toy spaniel:English toy spa:Blenheim spaniel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:toy spaniel:papillon", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:toy spaniel:papillon", "oc": 45}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:toy spaniel:papillon", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:corgi-Welsh cor:Cardigan, Cardigan Welsh corgi", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:toy spaniel:papillon", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:poodle-poodle d:standard poodle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:toy terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:Chihuahua", "oc": 5}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:toy terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:toy terrier", "oc": 32}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:toy terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:fox terrier:wire-haired fox terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:toy terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Boston bull, Boston terrier", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:toy terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :pinscher:miniature pinscher", "oc": 6}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:toy terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:basenji", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:toy terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:corgi-Welsh cor:Pembroke, Pembroke Welsh corgi", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:toy terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:Mexican hairless", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:Rhodesian ridgeback", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:Rhodesian ridgeback", "oc": 37}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:Rhodesian ridgeback", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:redbone", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:Rhodesian ridgeback", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:greyhound:whippet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:Rhodesian ridgeback", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:bullterrier-bul:American Staffordshire terrier, Staffordshire terrier, American pit bull terrier, pit bull terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:Rhodesian ridgeback", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:pointer-Spanish:vizsla, Hungarian pointer", "oc": 6}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:Rhodesian ridgeback", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:boxer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:Rhodesian ridgeback", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:bull mastiff", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:Rhodesian ridgeback", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Great Dane", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:Afghan hound, Afghan", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:Afghan hound, Afghan", "oc": 44}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:Afghan hound, Afghan", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:Scottish deerhound, deerhound", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:Afghan hound, Afghan", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:cocker spaniel, English cocker spaniel, cocker", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:Afghan hound, Afghan", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:briard", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:Afghan hound, Afghan", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Shetland sheepdog, Shetland sheep dog, Shetland", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:Afghan hound, Afghan", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:blower:hand blower, blow dryer, blow drier, hair dryer, hair drier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:basset, basset hound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:basset, basset hound", "oc": 40}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:basset, basset hound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:beagle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:basset, basset hound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:bluetick", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:basset, basset hound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:coonhound:black-and-tan coonhound", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:basset, basset hound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:foxhound:Walker hound, Walker foxhound", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:basset, basset hound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:redbone", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:basset, basset hound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:setter:English setter", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:basset, basset hound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:springer spanie:English springer, English springer spaniel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:basset, basset hound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:springer spanie:Welsh springer spaniel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:basset, basset hound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Sennenhunde:Greater Swiss Mountain dog", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:beagle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:basset, basset hound", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:beagle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:beagle", "oc": 41}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:beagle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:foxhound:Walker hound, Walker foxhound", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:beagle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:foxhound:English foxhound", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:beagle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:Labrador retriever", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:beagle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Sennenhunde:EntleBucher", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:beagle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:lamp:table lamp", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:bloodhound, sleuthhound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:Rhodesian ridgeback", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:bloodhound, sleuthhound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:basset, basset hound", "oc": 6}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:bloodhound, sleuthhound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:beagle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:bloodhound, sleuthhound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:bloodhound, sleuthhound", "oc": 21}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:bloodhound, sleuthhound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:coonhound:black-and-tan coonhound", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:bloodhound, sleuthhound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:foxhound:Walker hound, Walker foxhound", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:bloodhound, sleuthhound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:redbone", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:bloodhound, sleuthhound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:Ibizan hound, Ibizan Podenco", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:bloodhound, sleuthhound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Norfolk terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:bloodhound, sleuthhound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:Labrador retriever", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:bloodhound, sleuthhound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:Chesapeake Bay retriever", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:bloodhound, sleuthhound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:pointer-Spanish:German short-haired pointer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:bloodhound, sleuthhound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:pointer-Spanish:vizsla, Hungarian pointer", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:bloodhound, sleuthhound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Rottweiler", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:bloodhound, sleuthhound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Sennenhunde:Bernese mountain dog", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:bloodhound, sleuthhound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:boxer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:bloodhound, sleuthhound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wild dog:dingo, warrigal, warragal, Canis dingo", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:bloodhound, sleuthhound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:domestic cat-ho:tabby, tabby cat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:bluetick", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:beagle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:bluetick", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:bluetick", "oc": 44}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:bluetick", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:foxhound:Walker hound, Walker foxhound", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:bluetick", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:Saluki, gazelle hound", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:bluetick", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:pointer-Spanish:German short-haired pointer", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:bluetick", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:setter:English setter", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:coonhound:black-and-tan coonhound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:toy terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:coonhound:black-and-tan coonhound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:coonhound:black-and-tan coonhound", "oc": 28}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:coonhound:black-and-tan coonhound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:foxhound:Walker hound, Walker foxhound", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:coonhound:black-and-tan coonhound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:setter:Gordon setter", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:coonhound:black-and-tan coonhound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Rottweiler", "oc": 7}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:coonhound:black-and-tan coonhound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :pinscher:Doberman, Doberman pinscher", "oc": 7}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:coonhound:black-and-tan coonhound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :pinscher:miniature pinscher", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:coonhound:black-and-tan coonhound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Sennenhunde:Greater Swiss Mountain dog", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:coonhound:black-and-tan coonhound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Sennenhunde:Appenzeller", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:coonhound:black-and-tan coonhound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:mastiff:Tibetan mastiff", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:coonhound:black-and-tan coonhound", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:gymnastic appar:horizontal bar, high bar", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:foxhound:Walker hound, Walker foxhound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:basset, basset hound", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:foxhound:Walker hound, Walker foxhound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:beagle", "oc": 7}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:foxhound:Walker hound, Walker foxhound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:bluetick", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:foxhound:Walker hound, Walker foxhound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:foxhound:Walker hound, Walker foxhound", "oc": 33}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:foxhound:Walker hound, Walker foxhound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:foxhound:English foxhound", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:foxhound:Walker hound, Walker foxhound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Sennenhunde:Greater Swiss Mountain dog", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:foxhound:Walker hound, Walker foxhound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Sennenhunde:Appenzeller", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:foxhound:Walker hound, Walker foxhound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Saint Bernard, St Bernard", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:foxhound:Walker hound, Walker foxhound", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:sled-sledge-sle:dogsled, dog sled, dog sleigh", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:foxhound:English foxhound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:Rhodesian ridgeback", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:foxhound:English foxhound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:basset, basset hound", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:foxhound:English foxhound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:beagle", "oc": 10}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:foxhound:English foxhound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:bluetick", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:foxhound:English foxhound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:foxhound:Walker hound, Walker foxhound", "oc": 11}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:foxhound:English foxhound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:foxhound:English foxhound", "oc": 17}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:foxhound:English foxhound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:redbone", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:foxhound:English foxhound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:wolfhound:borzoi, Russian wolfhound", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:foxhound:English foxhound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:greyhound:whippet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:foxhound:English foxhound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:bullterrier-bul:American Staffordshire terrier, Staffordshire terrier, American pit bull terrier, pit bull terrier", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:foxhound:English foxhound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:pointer-Spanish:German short-haired pointer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:foxhound:English foxhound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:Brittany spaniel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:foxhound:English foxhound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:basenji", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:redbone", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:Rhodesian ridgeback", "oc": 9}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:redbone", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:beagle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:redbone", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:bloodhound, sleuthhound", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:redbone", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:redbone", "oc": 31}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:redbone", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:bullterrier-bul:Staffordshire bullterrier, Staffordshire bull terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:redbone", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:bullterrier-bul:American Staffordshire terrier, Staffordshire terrier, American pit bull terrier, pit bull terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:redbone", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Irish terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:redbone", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:Chesapeake Bay retriever", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:redbone", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:pointer-Spanish:vizsla, Hungarian pointer", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:redbone", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:setter:Irish setter, red setter", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:redbone", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:boxer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:wolfhound:borzoi, Russian wolfhound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:Afghan hound, Afghan", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:wolfhound:borzoi, Russian wolfhound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:wolfhound:borzoi, Russian wolfhound", "oc": 48}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:wolfhound:borzoi, Russian wolfhound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:Saluki, gazelle hound", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:wolfhound:Irish wolfhound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:Afghan hound, Afghan", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:wolfhound:Irish wolfhound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:wolfhound:borzoi, Russian wolfhound", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:wolfhound:Irish wolfhound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:wolfhound:Irish wolfhound", "oc": 25}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:wolfhound:Irish wolfhound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:greyhound:whippet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:wolfhound:Irish wolfhound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:Scottish deerhound, deerhound", "oc": 10}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:wolfhound:Irish wolfhound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:cairn, cairn terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:wolfhound:Irish wolfhound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:schnauzer:standard schnauzer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:wolfhound:Irish wolfhound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Tibetan terrier, chrysanthemum dog", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:wolfhound:Irish wolfhound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:soft-coated wheaten terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:wolfhound:Irish wolfhound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:Chesapeake Bay retriever", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:wolfhound:Irish wolfhound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:water spaniel:Irish water spaniel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:wolfhound:Irish wolfhound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :kuvasz", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:wolfhound:Irish wolfhound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Belgian sheepdo:groenendael", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:wolfhound:Irish wolfhound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wolf:timber wolf, grey wolf, gray wolf, Canis lupus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:wolfhound:Irish wolfhound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wolf:white wolf, Arctic wolf, Canis lupus tundrarum", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:greyhound:Italian greyhound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:toy terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:greyhound:Italian greyhound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:Rhodesian ridgeback", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:greyhound:Italian greyhound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:greyhound:Italian greyhound", "oc": 38}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:greyhound:Italian greyhound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:greyhound:whippet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:greyhound:Italian greyhound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:Ibizan hound, Ibizan Podenco", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:greyhound:Italian greyhound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:Weimaraner", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:greyhound:Italian greyhound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :schipperke", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:greyhound:Italian greyhound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :pinscher:miniature pinscher", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:greyhound:Italian greyhound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:corgi-Welsh cor:Cardigan, Cardigan Welsh corgi", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:greyhound:Italian greyhound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:Mexican hairless", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:greyhound:whippet", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:toy terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:greyhound:whippet", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:greyhound:Italian greyhound", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:greyhound:whippet", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:greyhound:whippet", "oc": 40}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:greyhound:whippet", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:Ibizan hound, Ibizan Podenco", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:greyhound:whippet", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:Saluki, gazelle hound", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:greyhound:whippet", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:Labrador retriever", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:greyhound:whippet", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Great Dane", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:greyhound:whippet", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:basenji", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:Ibizan hound, Ibizan Podenco", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:Chihuahua", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:Ibizan hound, Ibizan Podenco", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:Rhodesian ridgeback", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:Ibizan hound, Ibizan Podenco", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:foxhound:Walker hound, Walker foxhound", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:Ibizan hound, Ibizan Podenco", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:foxhound:English foxhound", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:Ibizan hound, Ibizan Podenco", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:greyhound:Italian greyhound", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:Ibizan hound, Ibizan Podenco", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:greyhound:whippet", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:Ibizan hound, Ibizan Podenco", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:Ibizan hound, Ibizan Podenco", "oc": 31}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:Ibizan hound, Ibizan Podenco", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:Saluki, gazelle hound", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:Ibizan hound, Ibizan Podenco", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:Weimaraner", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:Ibizan hound, Ibizan Podenco", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:bullterrier-bul:American Staffordshire terrier, Staffordshire terrier, American pit bull terrier, pit bull terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:Ibizan hound, Ibizan Podenco", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:pointer-Spanish:vizsla, Hungarian pointer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:Ibizan hound, Ibizan Podenco", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:Brittany spaniel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:Ibizan hound, Ibizan Podenco", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :pinscher:Doberman, Doberman pinscher", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:Ibizan hound, Ibizan Podenco", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:dalmatian, coach dog, carriage dog", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:Ibizan hound, Ibizan Podenco", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wild dog:dingo, warrigal, warragal, Canis dingo", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:Ibizan hound, Ibizan Podenco", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:sled-sledge-sle:dogsled, dog sled, dog sleigh", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:Norwegian elkhound, elkhound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:greyhound:Italian greyhound", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:Norwegian elkhound, elkhound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:Norwegian elkhound, elkhound", "oc": 39}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:Norwegian elkhound, elkhound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:bullterrier-bul:Staffordshire bullterrier, Staffordshire bull terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:Norwegian elkhound, elkhound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Belgian sheepdo:groenendael", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:Norwegian elkhound, elkhound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Shetland sheepdog, Shetland sheep dog, Shetland", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:Norwegian elkhound, elkhound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:German shepherd, German shepherd dog, German police dog, alsatian", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:Norwegian elkhound, elkhound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:sled dog-sledge:malamute, malemute, Alaskan malamute", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:Norwegian elkhound, elkhound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:spitz:keeshond", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:Norwegian elkhound, elkhound", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:soccer ball", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:otterhound, otter hound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:otterhound, otter hound", "oc": 31}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:otterhound, otter hound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Irish terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:otterhound, otter hound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Norwich terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:otterhound, otter hound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:wirehair-wireha:Lakeland terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:otterhound, otter hound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Airedale, Airedale terrier", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:otterhound, otter hound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:cairn, cairn terrier", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:otterhound, otter hound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Dandie Dinmont, Dandie Dinmont terrier", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:otterhound, otter hound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Tibetan terrier, chrysanthemum dog", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:otterhound, otter hound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:Labrador retriever", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:otterhound, otter hound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:briard", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:otterhound, otter hound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Sennenhunde:Bernese mountain dog", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:otterhound, otter hound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:mastiff:Tibetan mastiff", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:otterhound, otter hound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:sled dog-sledge:Siberian husky", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:otterhound, otter hound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:bovine:cattle-cows-kin:ox", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:Saluki, gazelle hound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:wolfhound:borzoi, Russian wolfhound", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:Saluki, gazelle hound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:greyhound:Italian greyhound", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:Saluki, gazelle hound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:greyhound:whippet", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:Saluki, gazelle hound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:Ibizan hound, Ibizan Podenco", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:Saluki, gazelle hound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:Saluki, gazelle hound", "oc": 39}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:Saluki, gazelle hound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:Labrador retriever", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:Saluki, gazelle hound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:pointer-Spanish:German short-haired pointer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:Saluki, gazelle hound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Great Dane", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:Saluki, gazelle hound", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:supporting stru:support:pedestal, plinth, footstall", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:Scottish deerhound, deerhound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:wolfhound:Irish wolfhound", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:Scottish deerhound, deerhound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:Scottish deerhound, deerhound", "oc": 41}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:Scottish deerhound, deerhound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:wirehair-wireha:Lakeland terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:Scottish deerhound, deerhound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:schnauzer:giant schnauzer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:Scottish deerhound, deerhound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Sennenhunde:EntleBucher", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:Scottish deerhound, deerhound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:Newfoundland, Newfoundland dog", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:Scottish deerhound, deerhound", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:spider monkey, Ateles geoffroyi", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:Weimaraner", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:bloodhound, sleuthhound", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:Weimaraner", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:Ibizan hound, Ibizan Podenco", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:Weimaraner", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:Weimaraner", "oc": 45}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:Weimaraner", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:Chesapeake Bay retriever", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:Weimaraner", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:pointer-Spanish:vizsla, Hungarian pointer", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:bullterrier-bul:Staffordshire bullterrier, Staffordshire bull terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:Rhodesian ridgeback", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:bullterrier-bul:Staffordshire bullterrier, Staffordshire bull terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:bullterrier-bul:Staffordshire bullterrier, Staffordshire bull terrier", "oc": 33}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:bullterrier-bul:Staffordshire bullterrier, Staffordshire bull terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:bullterrier-bul:American Staffordshire terrier, Staffordshire terrier, American pit bull terrier, pit bull terrier", "oc": 8}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:bullterrier-bul:Staffordshire bullterrier, Staffordshire bull terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Boston bull, Boston terrier", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:bullterrier-bul:Staffordshire bullterrier, Staffordshire bull terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :schipperke", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:bullterrier-bul:Staffordshire bullterrier, Staffordshire bull terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:boxer", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:bullterrier-bul:Staffordshire bullterrier, Staffordshire bull terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:bull mastiff", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:bullterrier-bul:Staffordshire bullterrier, Staffordshire bull terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:basenji", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:bullterrier-bul:American Staffordshire terrier, Staffordshire terrier, American pit bull terrier, pit bull terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:Rhodesian ridgeback", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:bullterrier-bul:American Staffordshire terrier, Staffordshire terrier, American pit bull terrier, pit bull terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:basset, basset hound", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:bullterrier-bul:American Staffordshire terrier, Staffordshire terrier, American pit bull terrier, pit bull terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:coonhound:black-and-tan coonhound", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:bullterrier-bul:American Staffordshire terrier, Staffordshire terrier, American pit bull terrier, pit bull terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:greyhound:Italian greyhound", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:bullterrier-bul:American Staffordshire terrier, Staffordshire terrier, American pit bull terrier, pit bull terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:Ibizan hound, Ibizan Podenco", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:bullterrier-bul:American Staffordshire terrier, Staffordshire terrier, American pit bull terrier, pit bull terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:bullterrier-bul:Staffordshire bullterrier, Staffordshire bull terrier", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:bullterrier-bul:American Staffordshire terrier, Staffordshire terrier, American pit bull terrier, pit bull terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:bullterrier-bul:American Staffordshire terrier, Staffordshire terrier, American pit bull terrier, pit bull terrier", "oc": 32}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:bullterrier-bul:American Staffordshire terrier, Staffordshire terrier, American pit bull terrier, pit bull terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:Labrador retriever", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:bullterrier-bul:American Staffordshire terrier, Staffordshire terrier, American pit bull terrier, pit bull terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:Chesapeake Bay retriever", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:bullterrier-bul:American Staffordshire terrier, Staffordshire terrier, American pit bull terrier, pit bull terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:boxer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:bullterrier-bul:American Staffordshire terrier, Staffordshire terrier, American pit bull terrier, pit bull terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:bull mastiff", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:bullterrier-bul:American Staffordshire terrier, Staffordshire terrier, American pit bull terrier, pit bull terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:swine:hog, pig, grunter, squealer, Sus scrofa", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Bedlington terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:wolfhound:Irish wolfhound", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Bedlington terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:Saluki, gazelle hound", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Bedlington terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Bedlington terrier", "oc": 43}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Bedlington terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:fox terrier:wire-haired fox terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Bedlington terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :kuvasz", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Bedlington terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:komondor", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Bedlington terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:poodle-poodle d:standard poodle", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Border terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Border terrier", "oc": 42}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Border terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Irish terrier", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Border terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Norfolk terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Border terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:boxer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Border terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:Leonberg", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Border terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:griffon-Brussel:Brabancon griffon", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Border terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:domestic cat-ho:Persian cat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Kerry blue terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Kerry blue terrier", "oc": 35}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Kerry blue terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:schnauzer:miniature schnauzer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Kerry blue terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:schnauzer:giant schnauzer", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Kerry blue terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:curly-coated retriever", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Kerry blue terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:water spaniel:Irish water spaniel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Kerry blue terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Bouvier des Flandres, Bouviers des Flandres", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Kerry blue terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:poodle-poodle d:toy poodle", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Kerry blue terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:poodle-poodle d:miniature poodle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Kerry blue terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:poodle-poodle d:standard poodle", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Kerry blue terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:sheep:ram, tup", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Irish terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:wolfhound:Irish wolfhound", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Irish terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Border terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Irish terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Irish terrier", "oc": 31}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Irish terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Norfolk terrier", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Irish terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Norwich terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Irish terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:fox terrier:wire-haired fox terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Irish terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Airedale, Airedale terrier", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Irish terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:cairn, cairn terrier", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Irish terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:soft-coated wheaten terrier", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Irish terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:golden retriever", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Irish terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:griffon-Brussel:Brabancon griffon", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Irish terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:poodle-poodle d:toy poodle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Irish terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:poodle-poodle d:miniature poodle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Irish terrier", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:heater-warmer:stove", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Norfolk terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:Maltese dog, Maltese terrier, Maltese", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Norfolk terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:bullterrier-bul:American Staffordshire terrier, Staffordshire terrier, American pit bull terrier, pit bull terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Norfolk terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Border terrier", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Norfolk terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Irish terrier", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Norfolk terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Norfolk terrier", "oc": 33}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Norfolk terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Norwich terrier", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Norfolk terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Yorkshire terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Norfolk terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:wirehair-wireha:Lakeland terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Norfolk terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Australian terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Norfolk terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Dandie Dinmont, Dandie Dinmont terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Norfolk terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:West Highland white terrier", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Norfolk terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:golden retriever", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Norfolk terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:poodle-poodle d:toy poodle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Norwich terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:Shih-Tzu", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Norwich terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Norfolk terrier", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Norwich terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Norwich terrier", "oc": 35}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Norwich terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:cairn, cairn terrier", "oc": 7}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Norwich terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Australian terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Norwich terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:silky terrier, Sydney silky", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Norwich terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:poodle-poodle d:toy poodle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Yorkshire terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:Maltese dog, Maltese terrier, Maltese", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Yorkshire terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:basset, basset hound", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Yorkshire terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:Ibizan hound, Ibizan Podenco", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Yorkshire terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Border terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Yorkshire terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Yorkshire terrier", "oc": 34}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Yorkshire terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:cairn, cairn terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Yorkshire terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Australian terrier", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Yorkshire terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Tibetan terrier, chrysanthemum dog", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Yorkshire terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:silky terrier, Sydney silky", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Yorkshire terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Lhasa, Lhasa apso", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Yorkshire terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :pinscher:miniature pinscher", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Yorkshire terrier", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:hair spray", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Yorkshire terrier", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:swing", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Yorkshire terrier", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:tennis ball", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:fox terrier:wire-haired fox terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:Shih-Tzu", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:fox terrier:wire-haired fox terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Irish terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:fox terrier:wire-haired fox terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:fox terrier:wire-haired fox terrier", "oc": 38}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:fox terrier:wire-haired fox terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:wirehair-wireha:Lakeland terrier", "oc": 6}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:fox terrier:wire-haired fox terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:wirehair-wireha:Welsh terrier:Sealyham terrier, Sealyham", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:fox terrier:wire-haired fox terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:soft-coated wheaten terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:fox terrier:wire-haired fox terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:rodent-gnawer:hamster", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:fox terrier:wire-haired fox terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:macaque", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:wirehair-wireha:Lakeland terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Border terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:wirehair-wireha:Lakeland terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Kerry blue terrier", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:wirehair-wireha:Lakeland terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Norwich terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:wirehair-wireha:Lakeland terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:fox terrier:wire-haired fox terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:wirehair-wireha:Lakeland terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:wirehair-wireha:Lakeland terrier", "oc": 35}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:wirehair-wireha:Lakeland terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Airedale, Airedale terrier", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:wirehair-wireha:Lakeland terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:cairn, cairn terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:wirehair-wireha:Lakeland terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:schnauzer:miniature schnauzer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:wirehair-wireha:Lakeland terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:silky terrier, Sydney silky", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:wirehair-wireha:Lakeland terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:soft-coated wheaten terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:wirehair-wireha:Lakeland terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:golden retriever", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:wirehair-wireha:Lakeland terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:komondor", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:wirehair-wireha:Welsh terrier:Sealyham terrier, Sealyham", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:Maltese dog, Maltese terrier, Maltese", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:wirehair-wireha:Welsh terrier:Sealyham terrier, Sealyham", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:wirehair-wireha:Lakeland terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:wirehair-wireha:Welsh terrier:Sealyham terrier, Sealyham", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:wirehair-wireha:Welsh terrier:Sealyham terrier, Sealyham", "oc": 42}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:wirehair-wireha:Welsh terrier:Sealyham terrier, Sealyham", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Dandie Dinmont, Dandie Dinmont terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:wirehair-wireha:Welsh terrier:Sealyham terrier, Sealyham", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:soft-coated wheaten terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:wirehair-wireha:Welsh terrier:Sealyham terrier, Sealyham", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:West Highland white terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:wirehair-wireha:Welsh terrier:Sealyham terrier, Sealyham", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:clumber, clumber spaniel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:wirehair-wireha:Welsh terrier:Sealyham terrier, Sealyham", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:komondor", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Airedale, Airedale terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:Chihuahua", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Airedale, Airedale terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:wolfhound:borzoi, Russian wolfhound", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Airedale, Airedale terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Irish terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Airedale, Airedale terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Norfolk terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Airedale, Airedale terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Norwich terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Airedale, Airedale terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Airedale, Airedale terrier", "oc": 41}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Airedale, Airedale terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:Chesapeake Bay retriever", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Airedale, Airedale terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :kuvasz", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Airedale, Airedale terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :pinscher:Doberman, Doberman pinscher", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Airedale, Airedale terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:poodle-poodle d:standard poodle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:cairn, cairn terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Border terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:cairn, cairn terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Irish terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:cairn, cairn terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Norwich terrier", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:cairn, cairn terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:cairn, cairn terrier", "oc": 35}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:cairn, cairn terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Australian terrier", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:cairn, cairn terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Dandie Dinmont, Dandie Dinmont terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:cairn, cairn terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Scotch terrier, Scottish terrier, Scottie", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:cairn, cairn terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:West Highland white terrier", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:cairn, cairn terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:briard", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:cairn, cairn terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Bouvier des Flandres, Bouviers des Flandres", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:cairn, cairn terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:poodle-poodle d:standard poodle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:cairn, cairn terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:wildcat:cougar, puma, catamount, mountain lion, painter, panther, Felis concolor", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Australian terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:wolfhound:Irish wolfhound", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Australian terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Border terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Australian terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Irish terrier", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Australian terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Norfolk terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Australian terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Norwich terrier", "oc": 7}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Australian terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Yorkshire terrier", "oc": 5}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Australian terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:cairn, cairn terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Australian terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Australian terrier", "oc": 27}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Australian terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Tibetan terrier, chrysanthemum dog", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Australian terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:silky terrier, Sydney silky", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Dandie Dinmont, Dandie Dinmont terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:Maltese dog, Maltese terrier, Maltese", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Dandie Dinmont, Dandie Dinmont terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Border terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Dandie Dinmont, Dandie Dinmont terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Yorkshire terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Dandie Dinmont, Dandie Dinmont terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Airedale, Airedale terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Dandie Dinmont, Dandie Dinmont terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Australian terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Dandie Dinmont, Dandie Dinmont terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Dandie Dinmont, Dandie Dinmont terrier", "oc": 41}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Dandie Dinmont, Dandie Dinmont terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Lhasa, Lhasa apso", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Dandie Dinmont, Dandie Dinmont terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:cocker spaniel, English cocker spaniel, cocker", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Dandie Dinmont, Dandie Dinmont terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Old English sheepdog, bobtail", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Dandie Dinmont, Dandie Dinmont terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:poodle-poodle d:miniature poodle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Boston bull, Boston terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:bullterrier-bul:Staffordshire bullterrier, Staffordshire bull terrier", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Boston bull, Boston terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Boston bull, Boston terrier", "oc": 44}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Boston bull, Boston terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:bulldog-English:French bulldog", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:schnauzer:miniature schnauzer", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Kerry blue terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:schnauzer:miniature schnauzer", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:wirehair-wireha:Lakeland terrier", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:schnauzer:miniature schnauzer", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Australian terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:schnauzer:miniature schnauzer", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Dandie Dinmont, Dandie Dinmont terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:schnauzer:miniature schnauzer", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:schnauzer:miniature schnauzer", "oc": 34}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:schnauzer:miniature schnauzer", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:schnauzer:giant schnauzer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:schnauzer:miniature schnauzer", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:schnauzer:standard schnauzer", "oc": 6}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:schnauzer:miniature schnauzer", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Scotch terrier, Scottish terrier, Scottie", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:schnauzer:miniature schnauzer", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Tibetan terrier, chrysanthemum dog", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:schnauzer:miniature schnauzer", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:West Highland white terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:schnauzer:miniature schnauzer", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Old English sheepdog, bobtail", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:schnauzer:giant schnauzer", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Kerry blue terrier", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:schnauzer:giant schnauzer", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:schnauzer:giant schnauzer", "oc": 39}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:schnauzer:giant schnauzer", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Scotch terrier, Scottish terrier, Scottie", "oc": 5}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:schnauzer:giant schnauzer", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Bouvier des Flandres, Bouviers des Flandres", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:schnauzer:giant schnauzer", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:bulldog-English:French bulldog", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:schnauzer:giant schnauzer", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :pinscher:affenpinscher, monkey pinscher, monkey dog", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:schnauzer:standard schnauzer", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Kerry blue terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:schnauzer:standard schnauzer", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:cairn, cairn terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:schnauzer:standard schnauzer", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:schnauzer:miniature schnauzer", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:schnauzer:standard schnauzer", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:schnauzer:giant schnauzer", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:schnauzer:standard schnauzer", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:schnauzer:standard schnauzer", "oc": 43}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:schnauzer:standard schnauzer", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Tibetan terrier, chrysanthemum dog", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Scotch terrier, Scottish terrier, Scottie", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:cairn, cairn terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Scotch terrier, Scottish terrier, Scottie", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:schnauzer:giant schnauzer", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Scotch terrier, Scottish terrier, Scottie", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Scotch terrier, Scottish terrier, Scottie", "oc": 38}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Scotch terrier, Scottish terrier, Scottie", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:West Highland white terrier", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Scotch terrier, Scottish terrier, Scottie", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Belgian sheepdo:groenendael", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Scotch terrier, Scottish terrier, Scottie", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:dalmatian, coach dog, carriage dog", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Scotch terrier, Scottish terrier, Scottie", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:corgi-Welsh cor:Cardigan, Cardigan Welsh corgi", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Scotch terrier, Scottish terrier, Scottie", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:poodle-poodle d:toy poodle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Tibetan terrier, chrysanthemum dog", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:Shih-Tzu", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Tibetan terrier, chrysanthemum dog", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Norfolk terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Tibetan terrier, chrysanthemum dog", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Dandie Dinmont, Dandie Dinmont terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Tibetan terrier, chrysanthemum dog", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:schnauzer:standard schnauzer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Tibetan terrier, chrysanthemum dog", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Tibetan terrier, chrysanthemum dog", "oc": 34}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Tibetan terrier, chrysanthemum dog", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:soft-coated wheaten terrier", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Tibetan terrier, chrysanthemum dog", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Lhasa, Lhasa apso", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Tibetan terrier, chrysanthemum dog", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:cocker spaniel, English cocker spaniel, cocker", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Tibetan terrier, chrysanthemum dog", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:briard", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Tibetan terrier, chrysanthemum dog", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Bouvier des Flandres, Bouviers des Flandres", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Tibetan terrier, chrysanthemum dog", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :pinscher:affenpinscher, monkey pinscher, monkey dog", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:silky terrier, Sydney silky", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:wolfhound:Irish wolfhound", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:silky terrier, Sydney silky", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Norfolk terrier", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:silky terrier, Sydney silky", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Yorkshire terrier", "oc": 7}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:silky terrier, Sydney silky", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:wirehair-wireha:Lakeland terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:silky terrier, Sydney silky", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Australian terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:silky terrier, Sydney silky", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:schnauzer:miniature schnauzer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:silky terrier, Sydney silky", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:silky terrier, Sydney silky", "oc": 34}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:silky terrier, Sydney silky", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Lhasa, Lhasa apso", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:silky terrier, Sydney silky", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:golden retriever", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:silky terrier, Sydney silky", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:game:puzzle:jigsaw puzzle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:soft-coated wheaten terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:otterhound, otter hound", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:soft-coated wheaten terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Irish terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:soft-coated wheaten terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Norwich terrier", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:soft-coated wheaten terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:wirehair-wireha:Lakeland terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:soft-coated wheaten terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:wirehair-wireha:Welsh terrier:Sealyham terrier, Sealyham", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:soft-coated wheaten terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Airedale, Airedale terrier", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:soft-coated wheaten terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Dandie Dinmont, Dandie Dinmont terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:soft-coated wheaten terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Tibetan terrier, chrysanthemum dog", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:soft-coated wheaten terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:soft-coated wheaten terrier", "oc": 36}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:soft-coated wheaten terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:briard", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:soft-coated wheaten terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:mastiff:Tibetan mastiff", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:soft-coated wheaten terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:poodle-poodle d:toy poodle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:West Highland white terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:Chihuahua", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:West Highland white terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Yorkshire terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:West Highland white terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:cairn, cairn terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:West Highland white terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Scotch terrier, Scottish terrier, Scottie", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:West Highland white terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:West Highland white terrier", "oc": 45}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:West Highland white terrier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:Leonberg", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Lhasa, Lhasa apso", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:Maltese dog, Maltese terrier, Maltese", "oc": 5}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Lhasa, Lhasa apso", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:Shih-Tzu", "oc": 7}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Lhasa, Lhasa apso", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Yorkshire terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Lhasa, Lhasa apso", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Tibetan terrier, chrysanthemum dog", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Lhasa, Lhasa apso", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Lhasa, Lhasa apso", "oc": 32}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Lhasa, Lhasa apso", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:setter:English setter", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Lhasa, Lhasa apso", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:cocker spaniel, English cocker spaniel, cocker", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Lhasa, Lhasa apso", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:pug, pug-dog", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:flat-coated retriever", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:schnauzer:giant schnauzer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:flat-coated retriever", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:flat-coated retriever", "oc": 39}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:flat-coated retriever", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:Labrador retriever", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:flat-coated retriever", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:setter:Gordon setter", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:flat-coated retriever", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :schipperke", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:flat-coated retriever", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:kelpie", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:flat-coated retriever", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:Newfoundland, Newfoundland dog", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:flat-coated retriever", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:poodle-poodle d:standard poodle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:flat-coated retriever", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bucket, pail", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:curly-coated retriever", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:bullterrier-bul:Staffordshire bullterrier, Staffordshire bull terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:curly-coated retriever", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:flat-coated retriever", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:curly-coated retriever", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:curly-coated retriever", "oc": 37}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:curly-coated retriever", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:setter:Gordon setter", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:curly-coated retriever", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:water spaniel:Irish water spaniel", "oc": 5}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:curly-coated retriever", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :schipperke", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:curly-coated retriever", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:poodle-poodle d:standard poodle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:curly-coated retriever", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:bear:brown bear, bruin, Ursus arctos", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:golden retriever", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Australian terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:golden retriever", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:golden retriever", "oc": 40}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:golden retriever", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:setter:English setter", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:golden retriever", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:cocker spaniel, English cocker spaniel, cocker", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:golden retriever", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :kuvasz", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:golden retriever", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:mastiff:Tibetan mastiff", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:golden retriever", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:bulldog-English:French bulldog", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:golden retriever", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:Great Pyrenees", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:golden retriever", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:corgi-Welsh cor:Pembroke, Pembroke Welsh corgi", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:golden retriever", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:big cat-cat:lion, king of beasts, Panthera leo", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:Labrador retriever", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:flat-coated retriever", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:Labrador retriever", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:golden retriever", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:Labrador retriever", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:Labrador retriever", "oc": 44}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:Labrador retriever", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Belgian sheepdo:malinois", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:Labrador retriever", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:Great Pyrenees", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:Labrador retriever", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:corgi-Welsh cor:Pembroke, Pembroke Welsh corgi", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:Chesapeake Bay retriever", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:redbone", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:Chesapeake Bay retriever", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:greyhound:Italian greyhound", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:Chesapeake Bay retriever", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:Labrador retriever", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:Chesapeake Bay retriever", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:Chesapeake Bay retriever", "oc": 39}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:Chesapeake Bay retriever", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:pointer-Spanish:vizsla, Hungarian pointer", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:Chesapeake Bay retriever", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:kelpie", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:Chesapeake Bay retriever", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :pinscher:miniature pinscher", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:Chesapeake Bay retriever", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:Newfoundland, Newfoundland dog", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:pointer-Spanish:German short-haired pointer", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:greyhound:whippet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:pointer-Spanish:German short-haired pointer", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:Weimaraner", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:pointer-Spanish:German short-haired pointer", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:bullterrier-bul:American Staffordshire terrier, Staffordshire terrier, American pit bull terrier, pit bull terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:pointer-Spanish:German short-haired pointer", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:Chesapeake Bay retriever", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:pointer-Spanish:German short-haired pointer", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:pointer-Spanish:German short-haired pointer", "oc": 43}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:pointer-Spanish:German short-haired pointer", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:setter:English setter", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:pointer-Spanish:German short-haired pointer", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Great Dane", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:pointer-Spanish:vizsla, Hungarian pointer", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:Rhodesian ridgeback", "oc": 6}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:pointer-Spanish:vizsla, Hungarian pointer", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:greyhound:Italian greyhound", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:pointer-Spanish:vizsla, Hungarian pointer", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:Weimaraner", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:pointer-Spanish:vizsla, Hungarian pointer", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Irish terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:pointer-Spanish:vizsla, Hungarian pointer", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:Chesapeake Bay retriever", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:pointer-Spanish:vizsla, Hungarian pointer", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:pointer-Spanish:vizsla, Hungarian pointer", "oc": 36}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:pointer-Spanish:vizsla, Hungarian pointer", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:Brittany spaniel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:pointer-Spanish:vizsla, Hungarian pointer", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wild dog:dingo, warrigal, warragal, Canis dingo", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:setter:English setter", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:setter:English setter", "oc": 41}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:setter:English setter", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:Brittany spaniel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:setter:English setter", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:clumber, clumber spaniel", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:setter:English setter", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:springer spanie:English springer, English springer spaniel", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:setter:English setter", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :kuvasz", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:setter:English setter", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Saint Bernard, St Bernard", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:setter:English setter", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:dalmatian, coach dog, carriage dog", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:setter:Irish setter, red setter", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Irish terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:setter:Irish setter, red setter", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:flat-coated retriever", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:setter:Irish setter, red setter", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:golden retriever", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:setter:Irish setter, red setter", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:pointer-Spanish:vizsla, Hungarian pointer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:setter:Irish setter, red setter", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:setter:Irish setter, red setter", "oc": 40}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:setter:Irish setter, red setter", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:setter:Gordon setter", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:setter:Irish setter, red setter", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:springer spanie:Welsh springer spaniel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:setter:Irish setter, red setter", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:cocker spaniel, English cocker spaniel, cocker", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:setter:Irish setter, red setter", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:briard", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:setter:Irish setter, red setter", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Eskimo dog, husky", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:setter:Gordon setter", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:bluetick", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:setter:Gordon setter", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:flat-coated retriever", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:setter:Gordon setter", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:setter:English setter", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:setter:Gordon setter", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:setter:Irish setter, red setter", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:setter:Gordon setter", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:setter:Gordon setter", "oc": 41}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:setter:Gordon setter", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :kuvasz", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:setter:Gordon setter", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Border collie", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:setter:Gordon setter", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :pinscher:Doberman, Doberman pinscher", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:setter:Gordon setter", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Sennenhunde:Appenzeller", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:setter:Gordon setter", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:ape:anthropoid ape:great ape-pongi:chimpanzee, chimp, Pan troglodytes", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:Brittany spaniel", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:pointer-Spanish:German short-haired pointer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:Brittany spaniel", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:setter:English setter", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:Brittany spaniel", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:Brittany spaniel", "oc": 41}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:Brittany spaniel", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:clumber, clumber spaniel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:Brittany spaniel", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:springer spanie:English springer, English springer spaniel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:Brittany spaniel", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:springer spanie:Welsh springer spaniel", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:Brittany spaniel", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:poodle-poodle d:standard poodle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:clumber, clumber spaniel", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:otterhound, otter hound", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:clumber, clumber spaniel", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:golden retriever", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:clumber, clumber spaniel", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:setter:English setter", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:clumber, clumber spaniel", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:clumber, clumber spaniel", "oc": 45}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:clumber, clumber spaniel", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:springer spanie:Welsh springer spaniel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:clumber, clumber spaniel", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:Great Pyrenees", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:springer spanie:English springer, English springer spaniel", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:beagle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:springer spanie:English springer, English springer spaniel", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:springer spanie:English springer, English springer spaniel", "oc": 48}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:springer spanie:English springer, English springer spaniel", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:springer spanie:Welsh springer spaniel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:springer spanie:Welsh springer spaniel", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:toy spaniel:English toy spa:Blenheim spaniel", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:springer spanie:Welsh springer spaniel", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:Brittany spaniel", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:springer spanie:Welsh springer spaniel", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:springer spanie:English springer, English springer spaniel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:springer spanie:Welsh springer spaniel", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:springer spanie:Welsh springer spaniel", "oc": 41}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:springer spanie:Welsh springer spaniel", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:cocker spaniel, English cocker spaniel, cocker", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:springer spanie:Welsh springer spaniel", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:collie", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:cocker spaniel, English cocker spaniel, cocker", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Australian terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:cocker spaniel, English cocker spaniel, cocker", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:flat-coated retriever", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:cocker spaniel, English cocker spaniel, cocker", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:golden retriever", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:cocker spaniel, English cocker spaniel, cocker", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:setter:English setter", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:cocker spaniel, English cocker spaniel, cocker", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:setter:Irish setter, red setter", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:cocker spaniel, English cocker spaniel, cocker", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:Brittany spaniel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:cocker spaniel, English cocker spaniel, cocker", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:springer spanie:English springer, English springer spaniel", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:cocker spaniel, English cocker spaniel, cocker", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:springer spanie:Welsh springer spaniel", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:cocker spaniel, English cocker spaniel, cocker", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:cocker spaniel, English cocker spaniel, cocker", "oc": 40}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:Sussex spaniel", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:toy spaniel:English toy spa:Blenheim spaniel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:Sussex spaniel", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Tibetan terrier, chrysanthemum dog", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:Sussex spaniel", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:curly-coated retriever", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:Sussex spaniel", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:golden retriever", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:Sussex spaniel", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:Labrador retriever", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:Sussex spaniel", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:setter:Irish setter, red setter", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:Sussex spaniel", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:clumber, clumber spaniel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:Sussex spaniel", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:cocker spaniel, English cocker spaniel, cocker", "oc": 5}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:Sussex spaniel", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:Sussex spaniel", "oc": 35}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:Sussex spaniel", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:water spaniel:Irish water spaniel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:Sussex spaniel", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Border collie", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:Sussex spaniel", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:Newfoundland, Newfoundland dog", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:water spaniel:Irish water spaniel", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:Scottish deerhound, deerhound", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:water spaniel:Irish water spaniel", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:curly-coated retriever", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:water spaniel:Irish water spaniel", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:setter:Irish setter, red setter", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:water spaniel:Irish water spaniel", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:water spaniel:Irish water spaniel", "oc": 41}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:water spaniel:Irish water spaniel", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:briard", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:water spaniel:Irish water spaniel", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:Newfoundland, Newfoundland dog", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:water spaniel:Irish water spaniel", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:poodle-poodle d:toy poodle", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:water spaniel:Irish water spaniel", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:poodle-poodle d:miniature poodle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:water spaniel:Irish water spaniel", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:poodle-poodle d:standard poodle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :kuvasz", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:wolfhound:borzoi, Russian wolfhound", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :kuvasz", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:golden retriever", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :kuvasz", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :kuvasz", "oc": 37}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :kuvasz", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Sennenhunde:Bernese mountain dog", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :kuvasz", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:Great Pyrenees", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :kuvasz", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:spitz:Samoyed, Samoyede", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :kuvasz", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wolf:white wolf, Arctic wolf, Canis lupus tundrarum", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :schipperke", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:schnauzer:giant schnauzer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :schipperke", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:flat-coated retriever", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :schipperke", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :schipperke", "oc": 42}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :schipperke", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Belgian sheepdo:groenendael", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :schipperke", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:kelpie", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :schipperke", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Bouvier des Flandres, Bouviers des Flandres", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :schipperke", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:soccer ball", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Belgian sheepdo:groenendael", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Scotch terrier, Scottish terrier, Scottie", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Belgian sheepdo:groenendael", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:flat-coated retriever", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Belgian sheepdo:groenendael", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :schipperke", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Belgian sheepdo:groenendael", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Belgian sheepdo:groenendael", "oc": 36}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Belgian sheepdo:groenendael", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:kelpie", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Belgian sheepdo:groenendael", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Rottweiler", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Belgian sheepdo:groenendael", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:bulldog-English:French bulldog", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Belgian sheepdo:groenendael", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:Leonberg", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Belgian sheepdo:groenendael", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:Newfoundland, Newfoundland dog", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Belgian sheepdo:malinois", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:Labrador retriever", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Belgian sheepdo:malinois", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Belgian sheepdo:malinois", "oc": 44}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Belgian sheepdo:malinois", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:German shepherd, German shepherd dog, German police dog, alsatian", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Belgian sheepdo:malinois", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Great Dane", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Belgian sheepdo:malinois", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wild dog:African hunting dog, hyena dog, Cape hunting dog, Lycaon pictus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:briard", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:wolfhound:borzoi, Russian wolfhound", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:briard", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:otterhound, otter hound", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:briard", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Irish terrier", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:briard", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Norfolk terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:briard", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:schnauzer:giant schnauzer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:briard", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Scotch terrier, Scottish terrier, Scottie", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:briard", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Tibetan terrier, chrysanthemum dog", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:briard", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:soft-coated wheaten terrier", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:briard", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Lhasa, Lhasa apso", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:briard", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:setter:Irish setter, red setter", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:briard", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Belgian sheepdo:groenendael", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:briard", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:briard", "oc": 27}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:briard", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Shetland sheepdog, Shetland sheep dog, Shetland", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:briard", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:collie", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:briard", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Bouvier des Flandres, Bouviers des Flandres", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:briard", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Sennenhunde:Appenzeller", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:briard", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:Leonberg", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:briard", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:Great Pyrenees", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:briard", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:corgi-Welsh cor:Pembroke, Pembroke Welsh corgi", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:kelpie", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:Chihuahua", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:kelpie", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:bullterrier-bul:American Staffordshire terrier, Staffordshire terrier, American pit bull terrier, pit bull terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:kelpie", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:Labrador retriever", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:kelpie", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :schipperke", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:kelpie", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Belgian sheepdo:malinois", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:kelpie", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:kelpie", "oc": 32}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:kelpie", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Border collie", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:kelpie", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Rottweiler", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:kelpie", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :pinscher:miniature pinscher", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:kelpie", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Eskimo dog, husky", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:kelpie", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:basenji", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:kelpie", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:corgi-Welsh cor:Cardigan, Cardigan Welsh corgi", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:kelpie", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wild dog:dingo, warrigal, warragal, Canis dingo", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:kelpie", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:bear:American black bear, black bear, Ursus americanus, Euarctos americanus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:komondor", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Bedlington terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:komondor", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:soft-coated wheaten terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:komondor", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:komondor", "oc": 43}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:komondor", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Old English sheepdog, bobtail", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:komondor", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:Newfoundland, Newfoundland dog", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:komondor", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:poodle-poodle d:standard poodle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:komondor", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:writing impleme:pen:quill, quill pen", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Old English sheepdog, bobtail", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Tibetan terrier, chrysanthemum dog", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Old English sheepdog, bobtail", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:West Highland white terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Old English sheepdog, bobtail", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :kuvasz", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Old English sheepdog, bobtail", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:komondor", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Old English sheepdog, bobtail", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Old English sheepdog, bobtail", "oc": 45}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Old English sheepdog, bobtail", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Border collie", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Shetland sheepdog, Shetland sheep dog, Shetland", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:Pekinese, Pekingese, Peke", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Shetland sheepdog, Shetland sheep dog, Shetland", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:toy spaniel:papillon", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Shetland sheepdog, Shetland sheep dog, Shetland", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:toy terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Shetland sheepdog, Shetland sheep dog, Shetland", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Shetland sheepdog, Shetland sheep dog, Shetland", "oc": 34}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Shetland sheepdog, Shetland sheep dog, Shetland", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:collie", "oc": 6}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Shetland sheepdog, Shetland sheep dog, Shetland", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Border collie", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Shetland sheepdog, Shetland sheep dog, Shetland", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:sled dog-sledge:malamute, malemute, Alaskan malamute", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Shetland sheepdog, Shetland sheep dog, Shetland", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:sled dog-sledge:Siberian husky", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Shetland sheepdog, Shetland sheep dog, Shetland", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:library", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:collie", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:wolfhound:borzoi, Russian wolfhound", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:collie", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Tibetan terrier, chrysanthemum dog", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:collie", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Shetland sheepdog, Shetland sheep dog, Shetland", "oc": 10}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:collie", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:collie", "oc": 27}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:collie", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Border collie", "oc": 10}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:collie", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:marmoset", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Border collie", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:setter:English setter", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Border collie", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:springer spanie:English springer, English springer spaniel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Border collie", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:springer spanie:Welsh springer spaniel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Border collie", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Shetland sheepdog, Shetland sheep dog, Shetland", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Border collie", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:collie", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Border collie", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Border collie", "oc": 43}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Border collie", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:corgi-Welsh cor:Cardigan, Cardigan Welsh corgi", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Bouvier des Flandres, Bouviers des Flandres", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Kerry blue terrier", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Bouvier des Flandres, Bouviers des Flandres", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:wirehair-wireha:Lakeland terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Bouvier des Flandres, Bouviers des Flandres", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:schnauzer:giant schnauzer", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Bouvier des Flandres, Bouviers des Flandres", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:flat-coated retriever", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Bouvier des Flandres, Bouviers des Flandres", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:curly-coated retriever", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Bouvier des Flandres, Bouviers des Flandres", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Bouvier des Flandres, Bouviers des Flandres", "oc": 38}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Bouvier des Flandres, Bouviers des Flandres", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Great Dane", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Bouvier des Flandres, Bouviers des Flandres", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:sled dog-sledge:malamute, malemute, Alaskan malamute", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Bouvier des Flandres, Bouviers des Flandres", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:Newfoundland, Newfoundland dog", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Rottweiler", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:coonhound:black-and-tan coonhound", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Rottweiler", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:setter:Gordon setter", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Rottweiler", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:kelpie", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Rottweiler", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Rottweiler", "oc": 43}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Rottweiler", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :pinscher:Doberman, Doberman pinscher", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Rottweiler", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Sennenhunde:Greater Swiss Mountain dog", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Rottweiler", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Sennenhunde:EntleBucher", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Rottweiler", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:flute, transverse flute", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:German shepherd, German shepherd dog, German police dog, alsatian", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:Norwegian elkhound, elkhound", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:German shepherd, German shepherd dog, German police dog, alsatian", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Belgian sheepdo:malinois", "oc": 6}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:German shepherd, German shepherd dog, German police dog, alsatian", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:kelpie", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:German shepherd, German shepherd dog, German police dog, alsatian", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:collie", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:German shepherd, German shepherd dog, German police dog, alsatian", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Rottweiler", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:German shepherd, German shepherd dog, German police dog, alsatian", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:German shepherd, German shepherd dog, German police dog, alsatian", "oc": 38}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:German shepherd, German shepherd dog, German police dog, alsatian", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :pinscher:Doberman, Doberman pinscher", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :pinscher:Doberman, Doberman pinscher", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:coonhound:black-and-tan coonhound", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :pinscher:Doberman, Doberman pinscher", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:redbone", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :pinscher:Doberman, Doberman pinscher", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:setter:English setter", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :pinscher:Doberman, Doberman pinscher", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:setter:Irish setter, red setter", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :pinscher:Doberman, Doberman pinscher", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:kelpie", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :pinscher:Doberman, Doberman pinscher", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Rottweiler", "oc": 5}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :pinscher:Doberman, Doberman pinscher", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :pinscher:Doberman, Doberman pinscher", "oc": 34}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :pinscher:Doberman, Doberman pinscher", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :pinscher:miniature pinscher", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :pinscher:Doberman, Doberman pinscher", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Sennenhunde:Appenzeller", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :pinscher:Doberman, Doberman pinscher", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Sennenhunde:EntleBucher", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :pinscher:Doberman, Doberman pinscher", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:volleyball", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :pinscher:miniature pinscher", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:Chihuahua", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :pinscher:miniature pinscher", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Boston bull, Boston terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :pinscher:miniature pinscher", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Rottweiler", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :pinscher:miniature pinscher", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:German shepherd, German shepherd dog, German police dog, alsatian", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :pinscher:miniature pinscher", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :pinscher:miniature pinscher", "oc": 38}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :pinscher:miniature pinscher", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:basenji", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :pinscher:miniature pinscher", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:pug, pug-dog", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :pinscher:miniature pinscher", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wild dog:dhole, Cuon alpinus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :pinscher:miniature pinscher", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:black-footed ferret, ferret, Mustela nigripes", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :pinscher:miniature pinscher", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:photographic eq:camera-photogra:Polaroid camera, Polaroid Land camera", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Sennenhunde:Greater Swiss Mountain dog", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:bloodhound, sleuthhound", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Sennenhunde:Greater Swiss Mountain dog", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:foxhound:Walker hound, Walker foxhound", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Sennenhunde:Greater Swiss Mountain dog", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :kuvasz", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Sennenhunde:Greater Swiss Mountain dog", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Sennenhunde:Greater Swiss Mountain dog", "oc": 31}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Sennenhunde:Greater Swiss Mountain dog", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Sennenhunde:Bernese mountain dog", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Sennenhunde:Greater Swiss Mountain dog", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Sennenhunde:Appenzeller", "oc": 7}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Sennenhunde:Greater Swiss Mountain dog", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Sennenhunde:EntleBucher", "oc": 7}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Sennenhunde:Greater Swiss Mountain dog", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:sled dog-sledge:Siberian husky", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Sennenhunde:Bernese mountain dog", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Sennenhunde:Greater Swiss Mountain dog", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Sennenhunde:Bernese mountain dog", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Sennenhunde:Bernese mountain dog", "oc": 46}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Sennenhunde:Bernese mountain dog", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Sennenhunde:Appenzeller", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Sennenhunde:Appenzeller", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :pinscher:Doberman, Doberman pinscher", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Sennenhunde:Appenzeller", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Sennenhunde:Greater Swiss Mountain dog", "oc": 20}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Sennenhunde:Appenzeller", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Sennenhunde:Bernese mountain dog", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Sennenhunde:Appenzeller", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Sennenhunde:Appenzeller", "oc": 15}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Sennenhunde:Appenzeller", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Sennenhunde:EntleBucher", "oc": 10}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Sennenhunde:EntleBucher", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:toy terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Sennenhunde:EntleBucher", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:foxhound:Walker hound, Walker foxhound", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Sennenhunde:EntleBucher", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Sennenhunde:Greater Swiss Mountain dog", "oc": 5}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Sennenhunde:EntleBucher", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Sennenhunde:Appenzeller", "oc": 12}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Sennenhunde:EntleBucher", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Sennenhunde:EntleBucher", "oc": 31}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:boxer", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:Rhodesian ridgeback", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:boxer", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:beagle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:boxer", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:bullterrier-bul:Staffordshire bullterrier, Staffordshire bull terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:boxer", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:bullterrier-bul:American Staffordshire terrier, Staffordshire terrier, American pit bull terrier, pit bull terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:boxer", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Irish terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:boxer", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:boxer", "oc": 35}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:boxer", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:bull mastiff", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:boxer", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:bulldog-English:French bulldog", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:boxer", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Saint Bernard, St Bernard", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:boxer", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:pug, pug-dog", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:bull mastiff", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:bullterrier-bul:American Staffordshire terrier, Staffordshire terrier, American pit bull terrier, pit bull terrier", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:bull mastiff", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Border terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:bull mastiff", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:Labrador retriever", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:bull mastiff", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:pointer-Spanish:vizsla, Hungarian pointer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:bull mastiff", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:boxer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:bull mastiff", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:bull mastiff", "oc": 40}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:bull mastiff", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:bulldog-English:French bulldog", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:bull mastiff", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Saint Bernard, St Bernard", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:bull mastiff", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:pug, pug-dog", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:mastiff:Tibetan mastiff", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Shetland sheepdog, Shetland sheep dog, Shetland", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:mastiff:Tibetan mastiff", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:mastiff:Tibetan mastiff", "oc": 47}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:mastiff:Tibetan mastiff", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:Newfoundland, Newfoundland dog", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:mastiff:Tibetan mastiff", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wolf:timber wolf, grey wolf, gray wolf, Canis lupus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:bulldog-English:French bulldog", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:bullterrier-bul:Staffordshire bullterrier, Staffordshire bull terrier", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:bulldog-English:French bulldog", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:wirehair-wireha:Lakeland terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:bulldog-English:French bulldog", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Boston bull, Boston terrier", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:bulldog-English:French bulldog", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:Labrador retriever", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:bulldog-English:French bulldog", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:bulldog-English:French bulldog", "oc": 42}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:bulldog-English:French bulldog", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:pug, pug-dog", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Great Dane", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:Rhodesian ridgeback", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Great Dane", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:bluetick", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Great Dane", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:wolfhound:Irish wolfhound", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Great Dane", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:Saluki, gazelle hound", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Great Dane", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:Weimaraner", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Great Dane", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:bullterrier-bul:American Staffordshire terrier, Staffordshire terrier, American pit bull terrier, pit bull terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Great Dane", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:flat-coated retriever", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Great Dane", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:Labrador retriever", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Great Dane", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :pinscher:Doberman, Doberman pinscher", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Great Dane", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:boxer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Great Dane", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:bull mastiff", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Great Dane", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:bulldog-English:French bulldog", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Great Dane", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Great Dane", "oc": 30}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Great Dane", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Saint Bernard, St Bernard", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Great Dane", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:dalmatian, coach dog, carriage dog", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Great Dane", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:spitz:Pomeranian", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Saint Bernard, St Bernard", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:Shih-Tzu", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Saint Bernard, St Bernard", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:springer spanie:Welsh springer spaniel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Saint Bernard, St Bernard", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Saint Bernard, St Bernard", "oc": 45}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Saint Bernard, St Bernard", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:corgi-Welsh cor:Cardigan, Cardigan Welsh corgi", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Eskimo dog, husky", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:collie", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Eskimo dog, husky", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:German shepherd, German shepherd dog, German police dog, alsatian", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Eskimo dog, husky", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Eskimo dog, husky", "oc": 18}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Eskimo dog, husky", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:sled dog-sledge:malamute, malemute, Alaskan malamute", "oc": 10}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Eskimo dog, husky", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:sled dog-sledge:Siberian husky", "oc": 11}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Eskimo dog, husky", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:spitz:Samoyed, Samoyede", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Eskimo dog, husky", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wolf:timber wolf, grey wolf, gray wolf, Canis lupus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Eskimo dog, husky", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wolf:white wolf, Arctic wolf, Canis lupus tundrarum", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Eskimo dog, husky", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wild dog:dingo, warrigal, warragal, Canis dingo", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Eskimo dog, husky", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:bear:ice bear, polar bear, Ursus Maritimus, Thalarctos maritimus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Eskimo dog, husky", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:sled-sledge-sle:dogsled, dog sled, dog sleigh", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:sled dog-sledge:malamute, malemute, Alaskan malamute", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Eskimo dog, husky", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:sled dog-sledge:malamute, malemute, Alaskan malamute", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:sled dog-sledge:malamute, malemute, Alaskan malamute", "oc": 39}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:sled dog-sledge:malamute, malemute, Alaskan malamute", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:sled dog-sledge:Siberian husky", "oc": 5}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:sled dog-sledge:malamute, malemute, Alaskan malamute", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:Newfoundland, Newfoundland dog", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:sled dog-sledge:malamute, malemute, Alaskan malamute", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wolf:white wolf, Arctic wolf, Canis lupus tundrarum", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:sled dog-sledge:Siberian husky", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:Norwegian elkhound, elkhound", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:sled dog-sledge:Siberian husky", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Eskimo dog, husky", "oc": 12}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:sled dog-sledge:Siberian husky", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:sled dog-sledge:malamute, malemute, Alaskan malamute", "oc": 7}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:sled dog-sledge:Siberian husky", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:sled dog-sledge:Siberian husky", "oc": 27}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:sled dog-sledge:Siberian husky", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:Great Pyrenees", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:sled dog-sledge:Siberian husky", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:lagomorph-gnawi:leporid-leporid:hare", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:sled dog-sledge:Siberian husky", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:lagomorph-gnawi:leporid-leporid:rabbit-coney-co:Angora, Angora rabbit", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:dalmatian, coach dog, carriage dog", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:dalmatian, coach dog, carriage dog", "oc": 47}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:dalmatian, coach dog, carriage dog", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:fox:Arctic fox, white fox, Alopex lagopus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:dalmatian, coach dog, carriage dog", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:muzzle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:dalmatian, coach dog, carriage dog", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:soccer ball", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :pinscher:affenpinscher, monkey pinscher, monkey dog", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:Shih-Tzu", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :pinscher:affenpinscher, monkey pinscher, monkey dog", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:schnauzer:miniature schnauzer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :pinscher:affenpinscher, monkey pinscher, monkey dog", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:schnauzer:giant schnauzer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :pinscher:affenpinscher, monkey pinscher, monkey dog", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Scotch terrier, Scottish terrier, Scottie", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :pinscher:affenpinscher, monkey pinscher, monkey dog", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:Labrador retriever", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :pinscher:affenpinscher, monkey pinscher, monkey dog", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :schipperke", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :pinscher:affenpinscher, monkey pinscher, monkey dog", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:briard", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :pinscher:affenpinscher, monkey pinscher, monkey dog", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Bouvier des Flandres, Bouviers des Flandres", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :pinscher:affenpinscher, monkey pinscher, monkey dog", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :pinscher:affenpinscher, monkey pinscher, monkey dog", "oc": 40}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :pinscher:affenpinscher, monkey pinscher, monkey dog", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:Newfoundland, Newfoundland dog", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:basenji", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:Chihuahua", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:basenji", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:foxhound:Walker hound, Walker foxhound", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:basenji", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:greyhound:Italian greyhound", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:basenji", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:Ibizan hound, Ibizan Podenco", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:basenji", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Boston bull, Boston terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:basenji", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:basenji", "oc": 42}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:pug, pug-dog", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:bullterrier-bul:Staffordshire bullterrier, Staffordshire bull terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:pug, pug-dog", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:boxer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:pug, pug-dog", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:bull mastiff", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:pug, pug-dog", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:pug, pug-dog", "oc": 47}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:Leonberg", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:Leonberg", "oc": 50}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:Newfoundland, Newfoundland dog", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:Shih-Tzu", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:Newfoundland, Newfoundland dog", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:flat-coated retriever", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:Newfoundland, Newfoundland dog", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:setter:Gordon setter", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:Newfoundland, Newfoundland dog", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:springer spanie:English springer, English springer spaniel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:Newfoundland, Newfoundland dog", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :schipperke", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:Newfoundland, Newfoundland dog", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Belgian sheepdo:groenendael", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:Newfoundland, Newfoundland dog", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Border collie", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:Newfoundland, Newfoundland dog", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Bouvier des Flandres, Bouviers des Flandres", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:Newfoundland, Newfoundland dog", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Rottweiler", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:Newfoundland, Newfoundland dog", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:mastiff:Tibetan mastiff", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:Newfoundland, Newfoundland dog", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:Newfoundland, Newfoundland dog", "oc": 38}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:Newfoundland, Newfoundland dog", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:oar:paddle, boat paddle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:Great Pyrenees", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:greyhound:whippet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:Great Pyrenees", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:Labrador retriever", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:Great Pyrenees", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :kuvasz", "oc": 7}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:Great Pyrenees", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:collie", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:Great Pyrenees", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Eskimo dog, husky", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:Great Pyrenees", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:pug, pug-dog", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:Great Pyrenees", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:Great Pyrenees", "oc": 38}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:spitz:Samoyed, Samoyede", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:spitz:Samoyed, Samoyede", "oc": 49}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:spitz:Samoyed, Samoyede", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:spitz:chow, chow chow", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:spitz:Pomeranian", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:Chihuahua", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:spitz:Pomeranian", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:Pekinese, Pekingese, Peke", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:spitz:Pomeranian", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:spitz:Pomeranian", "oc": 47}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:spitz:chow, chow chow", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:Pekinese, Pekingese, Peke", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:spitz:chow, chow chow", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:golden retriever", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:spitz:chow, chow chow", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:kelpie", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:spitz:chow, chow chow", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:collie", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:spitz:chow, chow chow", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Rottweiler", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:spitz:chow, chow chow", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:Great Pyrenees", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:spitz:chow, chow chow", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:spitz:Pomeranian", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:spitz:chow, chow chow", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:spitz:chow, chow chow", "oc": 42}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:spitz:chow, chow chow", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wolf:white wolf, Arctic wolf, Canis lupus tundrarum", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:spitz:keeshond", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:Norwegian elkhound, elkhound", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:spitz:keeshond", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:cairn, cairn terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:spitz:keeshond", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Shetland sheepdog, Shetland sheep dog, Shetland", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:spitz:keeshond", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:pug, pug-dog", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:spitz:keeshond", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:spitz:Samoyed, Samoyede", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:spitz:keeshond", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:spitz:keeshond", "oc": 45}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:griffon-Brussel:Brabancon griffon", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:Chihuahua", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:griffon-Brussel:Brabancon griffon", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Belgian sheepdo:malinois", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:griffon-Brussel:Brabancon griffon", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :pinscher:affenpinscher, monkey pinscher, monkey dog", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:griffon-Brussel:Brabancon griffon", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:griffon-Brussel:Brabancon griffon", "oc": 45}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:corgi-Welsh cor:Pembroke, Pembroke Welsh corgi", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:Pekinese, Pekingese, Peke", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:corgi-Welsh cor:Pembroke, Pembroke Welsh corgi", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:beagle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:corgi-Welsh cor:Pembroke, Pembroke Welsh corgi", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:bluetick", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:corgi-Welsh cor:Pembroke, Pembroke Welsh corgi", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Norfolk terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:corgi-Welsh cor:Pembroke, Pembroke Welsh corgi", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:sled dog-sledge:Siberian husky", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:corgi-Welsh cor:Pembroke, Pembroke Welsh corgi", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:basenji", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:corgi-Welsh cor:Pembroke, Pembroke Welsh corgi", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:corgi-Welsh cor:Pembroke, Pembroke Welsh corgi", "oc": 43}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:corgi-Welsh cor:Pembroke, Pembroke Welsh corgi", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:proboscis monkey, Nasalis larvatus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:corgi-Welsh cor:Cardigan, Cardigan Welsh corgi", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:toy terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:corgi-Welsh cor:Cardigan, Cardigan Welsh corgi", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:springer spanie:English springer, English springer spaniel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:corgi-Welsh cor:Cardigan, Cardigan Welsh corgi", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:kelpie", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:corgi-Welsh cor:Cardigan, Cardigan Welsh corgi", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Border collie", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:corgi-Welsh cor:Cardigan, Cardigan Welsh corgi", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Eskimo dog, husky", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:corgi-Welsh cor:Cardigan, Cardigan Welsh corgi", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:corgi-Welsh cor:Pembroke, Pembroke Welsh corgi", "oc": 13}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:corgi-Welsh cor:Cardigan, Cardigan Welsh corgi", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:corgi-Welsh cor:Cardigan, Cardigan Welsh corgi", "oc": 30}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:poodle-poodle d:toy poodle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Bedlington terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:poodle-poodle d:toy poodle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Norwich terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:poodle-poodle d:toy poodle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:wirehair-wireha:Lakeland terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:poodle-poodle d:toy poodle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:cocker spaniel, English cocker spaniel, cocker", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:poodle-poodle d:toy poodle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Bouvier des Flandres, Bouviers des Flandres", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:poodle-poodle d:toy poodle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:poodle-poodle d:toy poodle", "oc": 29}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:poodle-poodle d:toy poodle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:poodle-poodle d:miniature poodle", "oc": 11}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:poodle-poodle d:toy poodle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:poodle-poodle d:standard poodle", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:poodle-poodle d:toy poodle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:sundial", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:poodle-poodle d:toy poodle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:plaything-toy:teddy, teddy bear", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:poodle-poodle d:toy poodle", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:root vegetable:potato-white po:mashed potato", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:poodle-poodle d:miniature poodle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:Maltese dog, Maltese terrier, Maltese", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:poodle-poodle d:miniature poodle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:Shih-Tzu", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:poodle-poodle d:miniature poodle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Bedlington terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:poodle-poodle d:miniature poodle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Lhasa, Lhasa apso", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:poodle-poodle d:miniature poodle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:Brittany spaniel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:poodle-poodle d:miniature poodle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:water spaniel:Irish water spaniel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:poodle-poodle d:miniature poodle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:poodle-poodle d:toy poodle", "oc": 13}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:poodle-poodle d:miniature poodle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:poodle-poodle d:miniature poodle", "oc": 25}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:poodle-poodle d:miniature poodle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:poodle-poodle d:standard poodle", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:poodle-poodle d:miniature poodle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:camel:Arabian camel, dromedary, Camelus dromedarius", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:poodle-poodle d:miniature poodle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:squirrel monkey, Saimiri sciureus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:poodle-poodle d:standard poodle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:Shih-Tzu", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:poodle-poodle d:standard poodle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:schnauzer:giant schnauzer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:poodle-poodle d:standard poodle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:water spaniel:Irish water spaniel", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:poodle-poodle d:standard poodle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Old English sheepdog, bobtail", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:poodle-poodle d:standard poodle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:Newfoundland, Newfoundland dog", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:poodle-poodle d:standard poodle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:poodle-poodle d:miniature poodle", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:poodle-poodle d:standard poodle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:poodle-poodle d:standard poodle", "oc": 41}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:Mexican hairless", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:greyhound:Italian greyhound", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:Mexican hairless", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:Weimaraner", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:Mexican hairless", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:Mexican hairless", "oc": 47}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:Mexican hairless", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:swine:hog, pig, grunter, squealer, Sus scrofa", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wolf:timber wolf, grey wolf, gray wolf, Canis lupus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:metatherian:marsupial-pouch:kangaroo:wallaby, brush kangaroo", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wolf:timber wolf, grey wolf, gray wolf, Canis lupus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Belgian sheepdo:groenendael", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wolf:timber wolf, grey wolf, gray wolf, Canis lupus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Belgian sheepdo:malinois", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wolf:timber wolf, grey wolf, gray wolf, Canis lupus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Eskimo dog, husky", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wolf:timber wolf, grey wolf, gray wolf, Canis lupus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wolf:timber wolf, grey wolf, gray wolf, Canis lupus", "oc": 39}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wolf:timber wolf, grey wolf, gray wolf, Canis lupus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wolf:white wolf, Arctic wolf, Canis lupus tundrarum", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wolf:timber wolf, grey wolf, gray wolf, Canis lupus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wolf:coyote, prairie wolf, brush wolf, Canis latrans", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wolf:timber wolf, grey wolf, gray wolf, Canis lupus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:bovine:cattle-cows-kin:ox", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wolf:white wolf, Arctic wolf, Canis lupus tundrarum", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:wolfhound:borzoi, Russian wolfhound", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wolf:white wolf, Arctic wolf, Canis lupus tundrarum", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:sled dog-sledge:Siberian husky", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wolf:white wolf, Arctic wolf, Canis lupus tundrarum", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:spitz:Samoyed, Samoyede", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wolf:white wolf, Arctic wolf, Canis lupus tundrarum", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wolf:timber wolf, grey wolf, gray wolf, Canis lupus", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wolf:white wolf, Arctic wolf, Canis lupus tundrarum", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wolf:white wolf, Arctic wolf, Canis lupus tundrarum", "oc": 42}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wolf:white wolf, Arctic wolf, Canis lupus tundrarum", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:fox:Arctic fox, white fox, Alopex lagopus", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wolf:red wolf, maned wolf, Canis rufus, Canis niger", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:sled dog-sledge:malamute, malemute, Alaskan malamute", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wolf:red wolf, maned wolf, Canis rufus, Canis niger", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wolf:timber wolf, grey wolf, gray wolf, Canis lupus", "oc": 7}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wolf:red wolf, maned wolf, Canis rufus, Canis niger", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wolf:red wolf, maned wolf, Canis rufus, Canis niger", "oc": 23}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wolf:red wolf, maned wolf, Canis rufus, Canis niger", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wolf:coyote, prairie wolf, brush wolf, Canis latrans", "oc": 10}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wolf:red wolf, maned wolf, Canis rufus, Canis niger", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wild dog:dingo, warrigal, warragal, Canis dingo", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wolf:red wolf, maned wolf, Canis rufus, Canis niger", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wild dog:dhole, Cuon alpinus", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wolf:red wolf, maned wolf, Canis rufus, Canis niger", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:fox:red fox, Vulpes vulpes", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wolf:red wolf, maned wolf, Canis rufus, Canis niger", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:fox:grey fox, gray fox, Urocyon cinereoargenteus", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wolf:coyote, prairie wolf, brush wolf, Canis latrans", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wolf:timber wolf, grey wolf, gray wolf, Canis lupus", "oc": 5}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wolf:coyote, prairie wolf, brush wolf, Canis latrans", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wolf:red wolf, maned wolf, Canis rufus, Canis niger", "oc": 5}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wolf:coyote, prairie wolf, brush wolf, Canis latrans", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wolf:coyote, prairie wolf, brush wolf, Canis latrans", "oc": 31}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wolf:coyote, prairie wolf, brush wolf, Canis latrans", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wild dog:dingo, warrigal, warragal, Canis dingo", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wolf:coyote, prairie wolf, brush wolf, Canis latrans", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wild dog:dhole, Cuon alpinus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wolf:coyote, prairie wolf, brush wolf, Canis latrans", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:fox:kit fox, Vulpes macrotis", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wolf:coyote, prairie wolf, brush wolf, Canis latrans", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:fox:grey fox, gray fox, Urocyon cinereoargenteus", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wolf:coyote, prairie wolf, brush wolf, Canis latrans", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:lagomorph-gnawi:leporid-leporid:rabbit-coney-co:wood rabbit, cottontail, cottontail rabbit", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wolf:coyote, prairie wolf, brush wolf, Canis latrans", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:badger", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wild dog:dingo, warrigal, warragal, Canis dingo", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :schipperke", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wild dog:dingo, warrigal, warragal, Canis dingo", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Belgian sheepdo:malinois", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wild dog:dingo, warrigal, warragal, Canis dingo", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:kelpie", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wild dog:dingo, warrigal, warragal, Canis dingo", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:boxer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wild dog:dingo, warrigal, warragal, Canis dingo", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:sled dog-sledge:Siberian husky", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wild dog:dingo, warrigal, warragal, Canis dingo", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:basenji", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wild dog:dingo, warrigal, warragal, Canis dingo", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wild dog:dingo, warrigal, warragal, Canis dingo", "oc": 40}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wild dog:dingo, warrigal, warragal, Canis dingo", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:wildcat:cougar, puma, catamount, mountain lion, painter, panther, Felis concolor", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wild dog:dingo, warrigal, warragal, Canis dingo", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:viverrine-viver:mongoose", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wild dog:dingo, warrigal, warragal, Canis dingo", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:chainlink fence", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wild dog:dhole, Cuon alpinus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wolf:timber wolf, grey wolf, gray wolf, Canis lupus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wild dog:dhole, Cuon alpinus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wolf:red wolf, maned wolf, Canis rufus, Canis niger", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wild dog:dhole, Cuon alpinus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wild dog:dingo, warrigal, warragal, Canis dingo", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wild dog:dhole, Cuon alpinus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wild dog:dhole, Cuon alpinus", "oc": 46}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wild dog:African hunting dog, hyena dog, Cape hunting dog, Lycaon pictus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wild dog:African hunting dog, hyena dog, Cape hunting dog, Lycaon pictus", "oc": 50}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:hyena, hyaena", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wild dog:African hunting dog, hyena dog, Cape hunting dog, Lycaon pictus", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:hyena, hyaena", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:hyena, hyaena", "oc": 46}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:hyena, hyaena", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:big cat-cat:lion, king of beasts, Panthera leo", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:hyena, hyaena", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:swine:warthog", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:fox:red fox, Vulpes vulpes", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:Chihuahua", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:fox:red fox, Vulpes vulpes", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wolf:coyote, prairie wolf, brush wolf, Canis latrans", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:fox:red fox, Vulpes vulpes", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:fox:red fox, Vulpes vulpes", "oc": 31}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:fox:red fox, Vulpes vulpes", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:fox:kit fox, Vulpes macrotis", "oc": 12}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:fox:red fox, Vulpes vulpes", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:fox:grey fox, gray fox, Urocyon cinereoargenteus", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:fox:red fox, Vulpes vulpes", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:llama", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:fox:red fox, Vulpes vulpes", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:procyonid:lesser panda, red panda, panda, bear cat, cat bear, Ailurus fulgens", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:fox:kit fox, Vulpes macrotis", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wolf:red wolf, maned wolf, Canis rufus, Canis niger", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:fox:kit fox, Vulpes macrotis", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wild dog:dhole, Cuon alpinus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:fox:kit fox, Vulpes macrotis", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:fox:red fox, Vulpes vulpes", "oc": 14}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:fox:kit fox, Vulpes macrotis", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:fox:kit fox, Vulpes macrotis", "oc": 30}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:fox:kit fox, Vulpes macrotis", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:fox:Arctic fox, white fox, Alopex lagopus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:fox:kit fox, Vulpes macrotis", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:fox:grey fox, gray fox, Urocyon cinereoargenteus", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:fox:Arctic fox, white fox, Alopex lagopus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :kuvasz", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:fox:Arctic fox, white fox, Alopex lagopus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wolf:white wolf, Arctic wolf, Canis lupus tundrarum", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:fox:Arctic fox, white fox, Alopex lagopus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:fox:Arctic fox, white fox, Alopex lagopus", "oc": 46}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:fox:Arctic fox, white fox, Alopex lagopus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:weasel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:fox:grey fox, gray fox, Urocyon cinereoargenteus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:Scottish deerhound, deerhound", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:fox:grey fox, gray fox, Urocyon cinereoargenteus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wolf:red wolf, maned wolf, Canis rufus, Canis niger", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:fox:grey fox, gray fox, Urocyon cinereoargenteus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wolf:coyote, prairie wolf, brush wolf, Canis latrans", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:fox:grey fox, gray fox, Urocyon cinereoargenteus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wild dog:African hunting dog, hyena dog, Cape hunting dog, Lycaon pictus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:fox:grey fox, gray fox, Urocyon cinereoargenteus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:fox:red fox, Vulpes vulpes", "oc": 5}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:fox:grey fox, gray fox, Urocyon cinereoargenteus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:fox:kit fox, Vulpes macrotis", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:fox:grey fox, gray fox, Urocyon cinereoargenteus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:fox:Arctic fox, white fox, Alopex lagopus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:fox:grey fox, gray fox, Urocyon cinereoargenteus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:fox:grey fox, gray fox, Urocyon cinereoargenteus", "oc": 36}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:domestic cat-ho:tabby, tabby cat", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:thrush:robin, American robin, Turdus migratorius", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:domestic cat-ho:tabby, tabby cat", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :schipperke", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:domestic cat-ho:tabby, tabby cat", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:domestic cat-ho:tabby, tabby cat", "oc": 33}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:domestic cat-ho:tabby, tabby cat", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:domestic cat-ho:tiger cat", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:domestic cat-ho:tabby, tabby cat", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:domestic cat-ho:Persian cat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:domestic cat-ho:tabby, tabby cat", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:domestic cat-ho:Egyptian cat", "oc": 9}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:domestic cat-ho:tabby, tabby cat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:portable comput:laptop, laptop computer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:domestic cat-ho:tiger cat", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:corgi-Welsh cor:Pembroke, Pembroke Welsh corgi", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:domestic cat-ho:tiger cat", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:domestic cat-ho:tabby, tabby cat", "oc": 12}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:domestic cat-ho:tiger cat", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:domestic cat-ho:tiger cat", "oc": 15}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:domestic cat-ho:tiger cat", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:domestic cat-ho:Persian cat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:domestic cat-ho:tiger cat", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:domestic cat-ho:Egyptian cat", "oc": 5}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:domestic cat-ho:tiger cat", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:wildcat:lynx, catamount", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:domestic cat-ho:tiger cat", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:big cat-cat:tiger, Panthera tigris", "oc": 13}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:domestic cat-ho:tiger cat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:sleeping bag", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:domestic cat-ho:Persian cat", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:Japanese spaniel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:domestic cat-ho:Persian cat", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Shetland sheepdog, Shetland sheep dog, Shetland", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:domestic cat-ho:Persian cat", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:spitz:Samoyed, Samoyede", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:domestic cat-ho:Persian cat", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:spitz:keeshond", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:domestic cat-ho:Persian cat", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:domestic cat-ho:tabby, tabby cat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:domestic cat-ho:Persian cat", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:domestic cat-ho:Persian cat", "oc": 42}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:domestic cat-ho:Persian cat", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:wildcat:lynx, catamount", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:domestic cat-ho:Persian cat", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:lagomorph-gnawi:leporid-leporid:rabbit-coney-co:Angora, Angora rabbit", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:domestic cat-ho:Siamese cat, Siamese", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :schipperke", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:domestic cat-ho:Siamese cat, Siamese", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:domestic cat-ho:tabby, tabby cat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:domestic cat-ho:Siamese cat, Siamese", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:domestic cat-ho:Siamese cat, Siamese", "oc": 45}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:domestic cat-ho:Siamese cat, Siamese", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:domestic cat-ho:Egyptian cat", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:domestic cat-ho:Egyptian cat", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:metatherian:marsupial-pouch:kangaroo:wallaby, brush kangaroo", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:domestic cat-ho:Egyptian cat", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :schipperke", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:domestic cat-ho:Egyptian cat", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Border collie", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:domestic cat-ho:Egyptian cat", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:domestic cat-ho:tabby, tabby cat", "oc": 6}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:domestic cat-ho:Egyptian cat", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:domestic cat-ho:tiger cat", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:domestic cat-ho:Egyptian cat", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:domestic cat-ho:Persian cat", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:domestic cat-ho:Egyptian cat", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:domestic cat-ho:Siamese cat, Siamese", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:domestic cat-ho:Egyptian cat", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:domestic cat-ho:Egyptian cat", "oc": 30}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:domestic cat-ho:Egyptian cat", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:big cat-cat:lion, king of beasts, Panthera leo", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:domestic cat-ho:Egyptian cat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bucket, pail", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:domestic cat-ho:Egyptian cat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:wall unit:entertainment center", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:domestic cat-ho:Egyptian cat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:portable comput:laptop, laptop computer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:domestic cat-ho:Egyptian cat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:wardrobe, closet, press", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:wildcat:cougar, puma, catamount, mountain lion, painter, panther, Felis concolor", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:domestic cat-ho:Egyptian cat", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:wildcat:cougar, puma, catamount, mountain lion, painter, panther, Felis concolor", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:wildcat:cougar, puma, catamount, mountain lion, painter, panther, Felis concolor", "oc": 45}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:wildcat:cougar, puma, catamount, mountain lion, painter, panther, Felis concolor", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:big cat-cat:lion, king of beasts, Panthera leo", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:wildcat:cougar, puma, catamount, mountain lion, painter, panther, Felis concolor", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:big cat-cat:cheetah, chetah, Acinonyx jubatus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:wildcat:cougar, puma, catamount, mountain lion, painter, panther, Felis concolor", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:housing-lodging:dwelling-home-d:cliff dwelling", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:wildcat:lynx, catamount", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wolf:timber wolf, grey wolf, gray wolf, Canis lupus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:wildcat:lynx, catamount", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:fox:red fox, Vulpes vulpes", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:wildcat:lynx, catamount", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:fox:kit fox, Vulpes macrotis", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:wildcat:lynx, catamount", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:domestic cat-ho:tabby, tabby cat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:wildcat:lynx, catamount", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:domestic cat-ho:tiger cat", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:wildcat:lynx, catamount", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:domestic cat-ho:Egyptian cat", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:wildcat:lynx, catamount", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:wildcat:lynx, catamount", "oc": 37}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:wildcat:lynx, catamount", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:big cat-cat:jaguar, panther, Panthera onca, Felis onca", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:wildcat:lynx, catamount", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:big cat-cat:cheetah, chetah, Acinonyx jubatus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:wildcat:lynx, catamount", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:weasel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:wildcat:lynx, catamount", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:basin:washbasin, handbasin, washbowl, lavabo, wash-hand basin", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:big cat-cat:leopard, Panthera pardus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:lobster:spiny lobster, langouste, rock lobster, crawfish, crayfish, sea crawfish", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:big cat-cat:leopard, Panthera pardus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:big cat-cat:leopard, Panthera pardus", "oc": 39}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:big cat-cat:leopard, Panthera pardus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:big cat-cat:jaguar, panther, Panthera onca, Felis onca", "oc": 7}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:big cat-cat:leopard, Panthera pardus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:big cat-cat:cheetah, chetah, Acinonyx jubatus", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:big cat-cat:snow leopard, ounce, Panthera uncia", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:dalmatian, coach dog, carriage dog", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:big cat-cat:snow leopard, ounce, Panthera uncia", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:domestic cat-ho:Egyptian cat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:big cat-cat:snow leopard, ounce, Panthera uncia", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:big cat-cat:leopard, Panthera pardus", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:big cat-cat:snow leopard, ounce, Panthera uncia", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:big cat-cat:snow leopard, ounce, Panthera uncia", "oc": 43}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:big cat-cat:snow leopard, ounce, Panthera uncia", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:big cat-cat:jaguar, panther, Panthera onca, Felis onca", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:big cat-cat:snow leopard, ounce, Panthera uncia", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:lemur:Madagascar cat, ring-tailed lemur, Lemur catta", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:big cat-cat:jaguar, panther, Panthera onca, Felis onca", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:gecko:banded gecko", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:big cat-cat:jaguar, panther, Panthera onca, Felis onca", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:big cat-cat:leopard, Panthera pardus", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:big cat-cat:jaguar, panther, Panthera onca, Felis onca", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:big cat-cat:snow leopard, ounce, Panthera uncia", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:big cat-cat:jaguar, panther, Panthera onca, Felis onca", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:big cat-cat:jaguar, panther, Panthera onca, Felis onca", "oc": 40}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:big cat-cat:jaguar, panther, Panthera onca, Felis onca", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:big cat-cat:cheetah, chetah, Acinonyx jubatus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:big cat-cat:jaguar, panther, Panthera onca, Felis onca", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:bear:American black bear, black bear, Ursus americanus, Euarctos americanus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:big cat-cat:jaguar, panther, Panthera onca, Felis onca", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:howler monkey, howler", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:big cat-cat:lion, king of beasts, Panthera leo", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:mastiff:Tibetan mastiff", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:big cat-cat:lion, king of beasts, Panthera leo", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:wildcat:lynx, catamount", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:big cat-cat:lion, king of beasts, Panthera leo", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:big cat-cat:lion, king of beasts, Panthera leo", "oc": 45}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:big cat-cat:lion, king of beasts, Panthera leo", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:big cat-cat:tiger, Panthera tigris", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:big cat-cat:lion, king of beasts, Panthera leo", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:swine:warthog", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:big cat-cat:lion, king of beasts, Panthera leo", "at": "root:entity:physical entity:object-physical:geological form:natural elevati:mountain-mount:volcano", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:big cat-cat:tiger, Panthera tigris", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:domestic cat-ho:tiger cat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:big cat-cat:tiger, Panthera tigris", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:wildcat:cougar, puma, catamount, mountain lion, painter, panther, Felis concolor", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:big cat-cat:tiger, Panthera tigris", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:big cat-cat:jaguar, panther, Panthera onca, Felis onca", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:big cat-cat:tiger, Panthera tigris", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:big cat-cat:lion, king of beasts, Panthera leo", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:big cat-cat:tiger, Panthera tigris", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:big cat-cat:tiger, Panthera tigris", "oc": 46}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:big cat-cat:cheetah, chetah, Acinonyx jubatus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:big cat-cat:leopard, Panthera pardus", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:big cat-cat:cheetah, chetah, Acinonyx jubatus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:big cat-cat:cheetah, chetah, Acinonyx jubatus", "oc": 46}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:big cat-cat:cheetah, chetah, Acinonyx jubatus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:Old World buffa:water buffalo, water ox, Asiatic buffalo, Bubalus bubalis", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:bear:brown bear, bruin, Ursus arctos", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:bear:brown bear, bruin, Ursus arctos", "oc": 47}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:bear:brown bear, bruin, Ursus arctos", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:bear:American black bear, black bear, Ursus americanus, Euarctos americanus", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:bear:brown bear, bruin, Ursus arctos", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:wild sheep:mountain sheep:bighorn, bighorn sheep, cimarron, Rocky Mountain bighorn, Rocky Mountain sheep, Ovis canadensis", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:bear:American black bear, black bear, Ursus americanus, Euarctos americanus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:hyena, hyaena", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:bear:American black bear, black bear, Ursus americanus, Euarctos americanus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:bear:brown bear, bruin, Ursus arctos", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:bear:American black bear, black bear, Ursus americanus, Euarctos americanus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:bear:American black bear, black bear, Ursus americanus, Euarctos americanus", "oc": 41}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:bear:American black bear, black bear, Ursus americanus, Euarctos americanus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:bear:sloth bear, Melursus ursinus, Ursus ursinus", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:bear:American black bear, black bear, Ursus americanus, Euarctos americanus", "at": "root:entity:physical entity:object-physical:geological form:natural depress:valley, vale", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:bear:ice bear, polar bear, Ursus Maritimus, Thalarctos maritimus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:bear:brown bear, bruin, Ursus arctos", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:bear:ice bear, polar bear, Ursus Maritimus, Thalarctos maritimus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:bear:ice bear, polar bear, Ursus Maritimus, Thalarctos maritimus", "oc": 47}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:bear:ice bear, polar bear, Ursus Maritimus, Thalarctos maritimus", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:coat:fur coat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:bear:ice bear, polar bear, Ursus Maritimus, Thalarctos maritimus", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:punching bag, punch bag, punching ball, punchball", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:bear:sloth bear, Melursus ursinus, Ursus ursinus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:waterfowl-water:anseriform bird:duck:sea duck:merganser-fish :red-breasted merganser, Mergus serrator", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:bear:sloth bear, Melursus ursinus, Ursus ursinus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:kelpie", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:bear:sloth bear, Melursus ursinus, Ursus ursinus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :pinscher:affenpinscher, monkey pinscher, monkey dog", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:bear:sloth bear, Melursus ursinus, Ursus ursinus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:bear:brown bear, bruin, Ursus arctos", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:bear:sloth bear, Melursus ursinus, Ursus ursinus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:bear:American black bear, black bear, Ursus americanus, Euarctos americanus", "oc": 9}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:bear:sloth bear, Melursus ursinus, Ursus ursinus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:bear:sloth bear, Melursus ursinus, Ursus ursinus", "oc": 35}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:bear:sloth bear, Melursus ursinus, Ursus ursinus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:polecat, fitch, foulmart, foumart, Mustela putorius", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:bear:sloth bear, Melursus ursinus, Ursus ursinus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:procyonid:lesser panda, red panda, panda, bear cat, cat bear, Ailurus fulgens", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:viverrine-viver:mongoose", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:elapid-elapid s:cobra:Indian cobra, Naja naja", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:viverrine-viver:mongoose", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:gallinaceous bi:game bird:grouse:ruffed grouse, partridge, Bonasa umbellus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:viverrine-viver:mongoose", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:metatherian:marsupial-pouch:kangaroo:wallaby, brush kangaroo", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:viverrine-viver:mongoose", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:hyena, hyaena", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:viverrine-viver:mongoose", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:fox:grey fox, gray fox, Urocyon cinereoargenteus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:viverrine-viver:mongoose", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:viverrine-viver:mongoose", "oc": 35}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:viverrine-viver:mongoose", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:viverrine-viver:meerkat, mierkat", "oc": 5}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:viverrine-viver:mongoose", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:ape:anthropoid ape:great ape-pongi:orangutan, orang, orangutang, Pongo pygmaeus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:viverrine-viver:mongoose", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:lemur:Madagascar cat, ring-tailed lemur, Lemur catta", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:viverrine-viver:mongoose", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:lemur:indri, indris, Indri indri, Indri brevicaudatus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:viverrine-viver:mongoose", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:plaything-toy:teddy, teddy bear", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:viverrine-viver:meerkat, mierkat", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:metatherian:marsupial-pouch:kangaroo:wallaby, brush kangaroo", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:viverrine-viver:meerkat, mierkat", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:viverrine-viver:mongoose", "oc": 5}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:viverrine-viver:meerkat, mierkat", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:viverrine-viver:meerkat, mierkat", "oc": 41}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:viverrine-viver:meerkat, mierkat", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:swine:wild boar, boar, Sus scrofa", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:viverrine-viver:meerkat, mierkat", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:edentate:sloth-tree slot:three-toed sloth, ai, Bradypus tridactylus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:viverrine-viver:meerkat, mierkat", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:lemur:indri, indris, Indri indri, Indri brevicaudatus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:tiger beetle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:acarine:tick", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:tiger beetle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:tiger beetle", "oc": 46}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:tiger beetle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:ground beetle, carabid beetle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:tiger beetle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:dipterous insec:fly", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:tiger beetle", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:cruciferous veg:broccoli", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:ladybug, ladybeetle, lady beetle, ladybird, ladybird beetle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:ladybug, ladybeetle, lady beetle, ladybird, ladybird beetle", "oc": 42}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:ladybug, ladybeetle, lady beetle, ladybird, ladybird beetle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:leaf beetle, chrysomelid", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:ladybug, ladybeetle, lady beetle, ladybird, ladybird beetle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:lepidopterous i:butterfly:nymphalid-nymph:admiral", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:ladybug, ladybeetle, lady beetle, ladybird, ladybird beetle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:lepidopterous i:butterfly:sulphur butterfly, sulfur butterfly", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:ladybug, ladybeetle, lady beetle, ladybird, ladybird beetle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:spiny-finned fi:percoid fish-pe:damselfish-demo:anemone fish", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:ladybug, ladybeetle, lady beetle, ladybird, ladybird beetle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:supporting stru:framework:honeycomb", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:ladybug, ladybeetle, lady beetle, ladybird, ladybird beetle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:cap:thimble", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:ladybug, ladybeetle, lady beetle, ladybird, ladybird beetle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:plant-flora-pla:vascular plant-:spermatophyte-p:angiosperm-flow:flower:daisy", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:ladybug, ladybeetle, lady beetle, ladybird, ladybird beetle", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:hip, rose hip, rosehip", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:ground beetle, carabid beetle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:spider:barn spider, Araneus cavaticus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:ground beetle, carabid beetle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:tiger beetle", "oc": 7}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:ground beetle, carabid beetle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:ground beetle, carabid beetle", "oc": 29}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:ground beetle, carabid beetle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:long-horned beetle, longicorn, longicorn beetle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:ground beetle, carabid beetle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:leaf beetle, chrysomelid", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:ground beetle, carabid beetle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:lamellicorn bee:scarabaeid beet:dung beetle", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:ground beetle, carabid beetle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:lamellicorn bee:scarabaeid beet:rhinoceros beetle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:ground beetle, carabid beetle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:dipterous insec:fly", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:ground beetle, carabid beetle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:hymenopterous i:ant, emmet, pismire", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:ground beetle, carabid beetle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:orthopterous in:cricket", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:ground beetle, carabid beetle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:dictyopterous i:cockroach, roach", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:long-horned beetle, longicorn, longicorn beetle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:frog-toad-toad :tailed frog, bell toad, ribbed toad, tailed toad, Ascaphus trui", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:long-horned beetle, longicorn, longicorn beetle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:harvestman, daddy longlegs, Phalangium opilio", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:long-horned beetle, longicorn, longicorn beetle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:spider:black widow, Latrodectus mactans", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:long-horned beetle, longicorn, longicorn beetle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:acarine:tick", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:long-horned beetle, longicorn, longicorn beetle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:ground beetle, carabid beetle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:long-horned beetle, longicorn, longicorn beetle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:long-horned beetle, longicorn, longicorn beetle", "oc": 31}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:long-horned beetle, longicorn, longicorn beetle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:leaf beetle, chrysomelid", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:long-horned beetle, longicorn, longicorn beetle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:orthopterous in:grasshopper, hopper", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:long-horned beetle, longicorn, longicorn beetle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:orthopterous in:cricket", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:long-horned beetle, longicorn, longicorn beetle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:dictyopterous i:cockroach, roach", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:long-horned beetle, longicorn, longicorn beetle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:neuropteron-neu:lacewing, lacewing fly", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:long-horned beetle, longicorn, longicorn beetle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:lepidopterous i:butterfly:danaid-danaid b:monarch, monarch butterfly, milkweed butterfly, Danaus plexippus", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:leaf beetle, chrysomelid", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:harvestman, daddy longlegs, Phalangium opilio", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:leaf beetle, chrysomelid", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:tiger beetle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:leaf beetle, chrysomelid", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:ladybug, ladybeetle, lady beetle, ladybird, ladybird beetle", "oc": 12}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:leaf beetle, chrysomelid", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:long-horned beetle, longicorn, longicorn beetle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:leaf beetle, chrysomelid", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:leaf beetle, chrysomelid", "oc": 30}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:leaf beetle, chrysomelid", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:lamellicorn bee:scarabaeid beet:rhinoceros beetle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:leaf beetle, chrysomelid", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:orthopterous in:grasshopper, hopper", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:leaf beetle, chrysomelid", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:dictyopterous i:cockroach, roach", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:leaf beetle, chrysomelid", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:homopterous ins:cicada, cicala", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:lamellicorn bee:scarabaeid beet:dung beetle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:sea turtle-mari:leatherback turtle, leatherback, leathery turtle, Dermochelys coriacea", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:lamellicorn bee:scarabaeid beet:dung beetle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:ground beetle, carabid beetle", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:lamellicorn bee:scarabaeid beet:dung beetle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:leaf beetle, chrysomelid", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:lamellicorn bee:scarabaeid beet:dung beetle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:lamellicorn bee:scarabaeid beet:dung beetle", "oc": 39}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:lamellicorn bee:scarabaeid beet:dung beetle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:lamellicorn bee:scarabaeid beet:rhinoceros beetle", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:lamellicorn bee:scarabaeid beet:dung beetle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:weevil", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:lamellicorn bee:scarabaeid beet:dung beetle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:dipterous insec:fly", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:lamellicorn bee:scarabaeid beet:dung beetle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:hymenopterous i:ant, emmet, pismire", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:lamellicorn bee:scarabaeid beet:dung beetle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:beer bottle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:lamellicorn bee:scarabaeid beet:rhinoceros beetle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crayfish, crawfish, crawdad, crawdaddy", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:lamellicorn bee:scarabaeid beet:rhinoceros beetle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:ground beetle, carabid beetle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:lamellicorn bee:scarabaeid beet:rhinoceros beetle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:long-horned beetle, longicorn, longicorn beetle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:lamellicorn bee:scarabaeid beet:rhinoceros beetle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:lamellicorn bee:scarabaeid beet:dung beetle", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:lamellicorn bee:scarabaeid beet:rhinoceros beetle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:lamellicorn bee:scarabaeid beet:rhinoceros beetle", "oc": 41}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:lamellicorn bee:scarabaeid beet:rhinoceros beetle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:hymenopterous i:ant, emmet, pismire", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:lamellicorn bee:scarabaeid beet:rhinoceros beetle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:orthopterous in:cricket", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:lamellicorn bee:scarabaeid beet:rhinoceros beetle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:portable comput:laptop, laptop computer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:lamellicorn bee:scarabaeid beet:rhinoceros beetle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:fungus:bolete", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:weevil", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:spider:black widow, Latrodectus mactans", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:weevil", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:acarine:tick", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:weevil", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:long-horned beetle, longicorn, longicorn beetle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:weevil", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:leaf beetle, chrysomelid", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:weevil", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:weevil", "oc": 41}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:weevil", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:dipterous insec:fly", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:weevil", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:hymenopterous i:bee", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:weevil", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:hymenopterous i:ant, emmet, pismire", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:dipterous insec:fly", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:dipterous insec:fly", "oc": 43}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:dipterous insec:fly", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:hymenopterous i:bee", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:dipterous insec:fly", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:orthopterous in:grasshopper, hopper", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:dipterous insec:fly", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:orthopterous in:cricket", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:dipterous insec:fly", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:phasmid-phasmid:walking stick, walkingstick, stick insect", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:dipterous insec:fly", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:neuropteron-neu:lacewing, lacewing fly", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:dipterous insec:fly", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:lepidopterous i:butterfly:lycaenid, lycaenid butterfly", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:hymenopterous i:bee", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:apodiform bird:hummingbird", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:hymenopterous i:bee", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:leaf beetle, chrysomelid", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:hymenopterous i:bee", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:dipterous insec:fly", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:hymenopterous i:bee", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:hymenopterous i:bee", "oc": 38}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:hymenopterous i:bee", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:lepidopterous i:butterfly:pierid-pierid b:cabbage butterfly", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:hymenopterous i:bee", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:supporting stru:framework:honeycomb", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:hymenopterous i:bee", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:handwear-hand w:glove:mitten", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:hymenopterous i:bee", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:machine-simple :wheel:pinwheel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:hymenopterous i:bee", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:screen:window screen", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:hymenopterous i:bee", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:cardoon", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:hymenopterous i:ant, emmet, pismire", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:cartilaginous f:elasmobranch-se:ray:electric ray, crampfish, numbfish, torpedo", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:hymenopterous i:ant, emmet, pismire", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:anguid lizard:alligator lizard", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:hymenopterous i:ant, emmet, pismire", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:acarine:tick", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:hymenopterous i:ant, emmet, pismire", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:ladybug, ladybeetle, lady beetle, ladybird, ladybird beetle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:hymenopterous i:ant, emmet, pismire", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:ground beetle, carabid beetle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:hymenopterous i:ant, emmet, pismire", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:dipterous insec:fly", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:hymenopterous i:ant, emmet, pismire", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:hymenopterous i:bee", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:hymenopterous i:ant, emmet, pismire", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:hymenopterous i:ant, emmet, pismire", "oc": 36}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:hymenopterous i:ant, emmet, pismire", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:dictyopterous i:cockroach, roach", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:hymenopterous i:ant, emmet, pismire", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:neuropteron-neu:lacewing, lacewing fly", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:hymenopterous i:ant, emmet, pismire", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:echinoderm:sea urchin", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:hymenopterous i:ant, emmet, pismire", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:binoculars, field glasses, opera glasses", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:hymenopterous i:ant, emmet, pismire", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:clip:hair slide", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:orthopterous in:grasshopper, hopper", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:terrapin", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:orthopterous in:grasshopper, hopper", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:orthopterous in:grasshopper, hopper", "oc": 29}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:orthopterous in:grasshopper, hopper", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:orthopterous in:cricket", "oc": 13}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:orthopterous in:grasshopper, hopper", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:phasmid-phasmid:walking stick, walkingstick, stick insect", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:orthopterous in:grasshopper, hopper", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:dictyopterous i:mantis, mantid", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:orthopterous in:grasshopper, hopper", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:neuropteron-neu:lacewing, lacewing fly", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:orthopterous in:grasshopper, hopper", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:movable barrier:door:sliding door", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:orthopterous in:grasshopper, hopper", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:hip, rose hip, rosehip", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:orthopterous in:cricket", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:teiid lizard-te:whiptail, whiptail lizard", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:orthopterous in:cricket", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:spider:black widow, Latrodectus mactans", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:orthopterous in:cricket", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:parrot:African grey, African gray, Psittacus erithacus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:orthopterous in:cricket", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:long-horned beetle, longicorn, longicorn beetle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:orthopterous in:cricket", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:orthopterous in:grasshopper, hopper", "oc": 11}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:orthopterous in:cricket", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:orthopterous in:cricket", "oc": 26}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:orthopterous in:cricket", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:phasmid-phasmid:walking stick, walkingstick, stick insect", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:orthopterous in:cricket", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:dictyopterous i:cockroach, roach", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:orthopterous in:cricket", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:dictyopterous i:mantis, mantid", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:orthopterous in:cricket", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:neuropteron-neu:lacewing, lacewing fly", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:orthopterous in:cricket", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:bannister, banister, balustrade, balusters, handrail", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:orthopterous in:cricket", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:supporting stru:framework:honeycomb", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:orthopterous in:cricket", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:screen-cover-co:shoji", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:orthopterous in:cricket", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:cruciferous veg:broccoli", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:phasmid-phasmid:walking stick, walkingstick, stick insect", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:lacertid lizard:green lizard, Lacerta viridis", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:phasmid-phasmid:walking stick, walkingstick, stick insect", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:green snake, grass snake", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:phasmid-phasmid:walking stick, walkingstick, stick insect", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:harvestman, daddy longlegs, Phalangium opilio", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:phasmid-phasmid:walking stick, walkingstick, stick insect", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:tiger beetle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:phasmid-phasmid:walking stick, walkingstick, stick insect", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:hymenopterous i:ant, emmet, pismire", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:phasmid-phasmid:walking stick, walkingstick, stick insect", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:phasmid-phasmid:walking stick, walkingstick, stick insect", "oc": 35}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:phasmid-phasmid:walking stick, walkingstick, stick insect", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:dictyopterous i:mantis, mantid", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:phasmid-phasmid:walking stick, walkingstick, stick insect", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:procyonid:lesser panda, red panda, panda, bear cat, cat bear, Ailurus fulgens", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:phasmid-phasmid:walking stick, walkingstick, stick insect", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:sheath:holster", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:phasmid-phasmid:walking stick, walkingstick, stick insect", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:perfume, essence", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:phasmid-phasmid:walking stick, walkingstick, stick insect", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:banana", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:phasmid-phasmid:walking stick, walkingstick, stick insect", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:acorn", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:phasmid-phasmid:walking stick, walkingstick, stick insect", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:fungus:bolete", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:dictyopterous i:cockroach, roach", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:acarine:tick", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:dictyopterous i:cockroach, roach", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:hermit crab", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:dictyopterous i:cockroach, roach", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :schipperke", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:dictyopterous i:cockroach, roach", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:long-horned beetle, longicorn, longicorn beetle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:dictyopterous i:cockroach, roach", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:leaf beetle, chrysomelid", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:dictyopterous i:cockroach, roach", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:lamellicorn bee:scarabaeid beet:dung beetle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:dictyopterous i:cockroach, roach", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:hymenopterous i:ant, emmet, pismire", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:dictyopterous i:cockroach, roach", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:orthopterous in:cricket", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:dictyopterous i:cockroach, roach", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:dictyopterous i:cockroach, roach", "oc": 33}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:dictyopterous i:cockroach, roach", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:homopterous ins:leafhopper", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:dictyopterous i:cockroach, roach", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:drumstick", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:dictyopterous i:cockroach, roach", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:blower:hand blower, blow dryer, blow drier, hair dryer, hair drier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:dictyopterous i:cockroach, roach", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:supporting stru:framework:honeycomb", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:dictyopterous i:cockroach, roach", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:trap:mousetrap", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:dictyopterous i:cockroach, roach", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:heater-warmer:stove", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:dictyopterous i:cockroach, roach", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:toilet seat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:dictyopterous i:cockroach, roach", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:fabric-cloth-ma:velvet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:dictyopterous i:mantis, mantid", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:iguanid-iguanid:American chameleon, anole, Anolis carolinensis", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:dictyopterous i:mantis, mantid", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:harvestman, daddy longlegs, Phalangium opilio", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:dictyopterous i:mantis, mantid", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:scorpion", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:dictyopterous i:mantis, mantid", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:parrot:cockatoo:sulphur-crested cockatoo, Kakatoe galerita, Cacatua galerita", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:dictyopterous i:mantis, mantid", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:gastropod-univa:sea slug, nudibranch", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:dictyopterous i:mantis, mantid", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crab:Dungeness crab, Cancer magister", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:dictyopterous i:mantis, mantid", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:orthopterous in:grasshopper, hopper", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:dictyopterous i:mantis, mantid", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:orthopterous in:cricket", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:dictyopterous i:mantis, mantid", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:phasmid-phasmid:walking stick, walkingstick, stick insect", "oc": 7}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:dictyopterous i:mantis, mantid", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:dictyopterous i:mantis, mantid", "oc": 30}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:dictyopterous i:mantis, mantid", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:homopterous ins:cicada, cicala", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:dictyopterous i:mantis, mantid", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:chainlink fence", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:dictyopterous i:mantis, mantid", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:screen:window screen", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:dictyopterous i:mantis, mantid", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:solanaceous veg:pepper:sweet pepper:bell pepper", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:homopterous ins:cicada, cicala", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:hermit crab", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:homopterous ins:cicada, cicala", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:dipterous insec:fly", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:homopterous ins:cicada, cicala", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:hymenopterous i:bee", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:homopterous ins:cicada, cicala", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:hymenopterous i:ant, emmet, pismire", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:homopterous ins:cicada, cicala", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:orthopterous in:cricket", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:homopterous ins:cicada, cicala", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:homopterous ins:cicada, cicala", "oc": 45}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:homopterous ins:leafhopper", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:dipterous insec:fly", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:homopterous ins:leafhopper", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:orthopterous in:cricket", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:homopterous ins:leafhopper", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:dictyopterous i:mantis, mantid", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:homopterous ins:leafhopper", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:homopterous ins:cicada, cicala", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:homopterous ins:leafhopper", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:homopterous ins:leafhopper", "oc": 44}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:homopterous ins:leafhopper", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:neuropteron-neu:lacewing, lacewing fly", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:neuropteron-neu:lacewing, lacewing fly", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:centipede", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:neuropteron-neu:lacewing, lacewing fly", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crayfish, crawfish, crawdad, crawdaddy", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:neuropteron-neu:lacewing, lacewing fly", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:malacostracan c:isopod", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:neuropteron-neu:lacewing, lacewing fly", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:dipterous insec:fly", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:neuropteron-neu:lacewing, lacewing fly", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:orthopterous in:grasshopper, hopper", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:neuropteron-neu:lacewing, lacewing fly", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:orthopterous in:cricket", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:neuropteron-neu:lacewing, lacewing fly", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:phasmid-phasmid:walking stick, walkingstick, stick insect", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:neuropteron-neu:lacewing, lacewing fly", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:neuropteron-neu:lacewing, lacewing fly", "oc": 40}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:neuropteron-neu:lacewing, lacewing fly", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:odonate:damselfly", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:odonate:dragonfly, darning needle, devil's darning needle, sewing needle, snake feeder, snake doctor, mosquito hawk, skeeter hawk", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:dipterous insec:fly", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:odonate:dragonfly, darning needle, devil's darning needle, sewing needle, snake feeder, snake doctor, mosquito hawk, skeeter hawk", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:orthopterous in:grasshopper, hopper", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:odonate:dragonfly, darning needle, devil's darning needle, sewing needle, snake feeder, snake doctor, mosquito hawk, skeeter hawk", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:phasmid-phasmid:walking stick, walkingstick, stick insect", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:odonate:dragonfly, darning needle, devil's darning needle, sewing needle, snake feeder, snake doctor, mosquito hawk, skeeter hawk", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:neuropteron-neu:lacewing, lacewing fly", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:odonate:dragonfly, darning needle, devil's darning needle, sewing needle, snake feeder, snake doctor, mosquito hawk, skeeter hawk", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:odonate:dragonfly, darning needle, devil's darning needle, sewing needle, snake feeder, snake doctor, mosquito hawk, skeeter hawk", "oc": 37}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:odonate:dragonfly, darning needle, devil's darning needle, sewing needle, snake feeder, snake doctor, mosquito hawk, skeeter hawk", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:odonate:damselfly", "oc": 9}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:odonate:damselfly", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:phasmid-phasmid:walking stick, walkingstick, stick insect", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:odonate:damselfly", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:odonate:dragonfly, darning needle, devil's darning needle, sewing needle, snake feeder, snake doctor, mosquito hawk, skeeter hawk", "oc": 8}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:odonate:damselfly", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:odonate:damselfly", "oc": 40}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:odonate:damselfly", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:plant-flora-pla:vascular plant-:spermatophyte-p:angiosperm-flow:flower:daisy", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:lepidopterous i:butterfly:nymphalid-nymph:admiral", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:hermit crab", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:lepidopterous i:butterfly:nymphalid-nymph:admiral", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:lepidopterous i:butterfly:nymphalid-nymph:admiral", "oc": 48}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:lepidopterous i:butterfly:nymphalid-nymph:admiral", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:fungus:stinkhorn, carrion fungus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:lepidopterous i:butterfly:ringlet, ringlet butterfly", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:heron:bittern", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:lepidopterous i:butterfly:ringlet, ringlet butterfly", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:lepidopterous i:butterfly:nymphalid-nymph:admiral", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:lepidopterous i:butterfly:ringlet, ringlet butterfly", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:lepidopterous i:butterfly:ringlet, ringlet butterfly", "oc": 45}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:lepidopterous i:butterfly:ringlet, ringlet butterfly", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:lepidopterous i:butterfly:pierid-pierid b:cabbage butterfly", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:lepidopterous i:butterfly:ringlet, ringlet butterfly", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:lepidopterous i:butterfly:lycaenid, lycaenid butterfly", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:lepidopterous i:butterfly:danaid-danaid b:monarch, monarch butterfly, milkweed butterfly, Danaus plexippus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:lepidopterous i:butterfly:danaid-danaid b:monarch, monarch butterfly, milkweed butterfly, Danaus plexippus", "oc": 47}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:lepidopterous i:butterfly:danaid-danaid b:monarch, monarch butterfly, milkweed butterfly, Danaus plexippus", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:military vehicl:half track", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:lepidopterous i:butterfly:danaid-danaid b:monarch, monarch butterfly, milkweed butterfly, Danaus plexippus", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:jar:vase", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:lepidopterous i:butterfly:danaid-danaid b:monarch, monarch butterfly, milkweed butterfly, Danaus plexippus", "at": "root:entity:physical entity:object-physical:geological form:shore:lakeside, lakeshore", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:lepidopterous i:butterfly:pierid-pierid b:cabbage butterfly", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:lepidopterous i:butterfly:ringlet, ringlet butterfly", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:lepidopterous i:butterfly:pierid-pierid b:cabbage butterfly", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:lepidopterous i:butterfly:pierid-pierid b:cabbage butterfly", "oc": 45}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:lepidopterous i:butterfly:pierid-pierid b:cabbage butterfly", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:lepidopterous i:butterfly:sulphur butterfly, sulfur butterfly", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:lepidopterous i:butterfly:pierid-pierid b:cabbage butterfly", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:lepidopterous i:butterfly:lycaenid, lycaenid butterfly", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:lepidopterous i:butterfly:sulphur butterfly, sulfur butterfly", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:hymenopterous i:bee", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:lepidopterous i:butterfly:sulphur butterfly, sulfur butterfly", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:orthopterous in:cricket", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:lepidopterous i:butterfly:sulphur butterfly, sulfur butterfly", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:lepidopterous i:butterfly:pierid-pierid b:cabbage butterfly", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:lepidopterous i:butterfly:sulphur butterfly, sulfur butterfly", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:lepidopterous i:butterfly:sulphur butterfly, sulfur butterfly", "oc": 46}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:lepidopterous i:butterfly:lycaenid, lycaenid butterfly", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:lepidopterous i:butterfly:nymphalid-nymph:admiral", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:lepidopterous i:butterfly:lycaenid, lycaenid butterfly", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:lepidopterous i:butterfly:ringlet, ringlet butterfly", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:lepidopterous i:butterfly:lycaenid, lycaenid butterfly", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:lepidopterous i:butterfly:lycaenid, lycaenid butterfly", "oc": 47}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:echinoderm:starfish, sea star", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:spider:wolf spider, hunting spider", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:echinoderm:starfish, sea star", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:coelenterate-cn:anthozoan-actin:coral:stony coral-mad:brain coral", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:echinoderm:starfish, sea star", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:gastropod-univa:conch", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:echinoderm:starfish, sea star", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:echinoderm:starfish, sea star", "oc": 43}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:echinoderm:starfish, sea star", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:soft-finned fis:salmonid:salmon:coho, cohoe, coho salmon, blue jack, silver salmon, Oncorhynchus kisutch", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:echinoderm:starfish, sea star", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:floor cover-flo:mat:doormat, welcome mat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:echinoderm:starfish, sea star", "at": "root:entity:physical entity:object-physical:geological form:natural elevati:ridge:reef:coral reef", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:echinoderm:sea urchin", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:spider:tarantula", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:echinoderm:sea urchin", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:coelenterate-cn:anthozoan-actin:coral:stony coral-mad:brain coral", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:echinoderm:sea urchin", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:chiton, coat-of-mail shell, sea cradle, polyplacophore", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:echinoderm:sea urchin", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:hymenopterous i:ant, emmet, pismire", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:echinoderm:sea urchin", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:echinoderm:sea urchin", "oc": 42}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:echinoderm:sea urchin", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:spiny-finned fi:scorpaenoid-sco:scorpaenid-scor:lionfish", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:echinoderm:sea urchin", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:clip:hair slide", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:echinoderm:sea urchin", "at": "root:entity:physical entity:object-physical:geological form:natural elevati:ridge:reef:coral reef", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:echinoderm:sea urchin", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:seed:buckeye, horse chestnut, conker", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:echinoderm:sea cucumber, holothurian", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:cartilaginous f:elasmobranch-se:ray:stingray", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:echinoderm:sea cucumber, holothurian", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:sea turtle-mari:loggerhead, loggerhead turtle, Caretta caretta", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:echinoderm:sea cucumber, holothurian", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:sea snake", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:echinoderm:sea cucumber, holothurian", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:chiton, coat-of-mail shell, sea cradle, polyplacophore", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:echinoderm:sea cucumber, holothurian", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:lobster:spiny lobster, langouste, rock lobster, crawfish, crayfish, sea crawfish", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:echinoderm:sea cucumber, holothurian", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:hermit crab", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:echinoderm:sea cucumber, holothurian", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:malacostracan c:isopod", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:echinoderm:sea cucumber, holothurian", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:echinoderm:starfish, sea star", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:echinoderm:sea cucumber, holothurian", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:echinoderm:sea cucumber, holothurian", "oc": 33}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:echinoderm:sea cucumber, holothurian", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:spider monkey, Ateles geoffroyi", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:echinoderm:sea cucumber, holothurian", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:spiny-finned fi:plectognath-ple:puffer, pufferfish, blowfish, globefish", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:echinoderm:sea cucumber, holothurian", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:swimsuit-swimwe:bikini, two-piece", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:echinoderm:sea cucumber, holothurian", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:decoration-orna:adornment:jewelry-jewelle:necklace", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:echinoderm:sea cucumber, holothurian", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:breathing devic:snorkel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:echinoderm:sea cucumber, holothurian", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:receptacle:tray", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:echinoderm:sea cucumber, holothurian", "at": "root:entity:physical entity:object-physical:geological form:natural elevati:ridge:reef:coral reef", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:lagomorph-gnawi:leporid-leporid:rabbit-coney-co:wood rabbit, cottontail, cottontail rabbit", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:Brittany spaniel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:lagomorph-gnawi:leporid-leporid:rabbit-coney-co:wood rabbit, cottontail, cottontail rabbit", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:lagomorph-gnawi:leporid-leporid:rabbit-coney-co:wood rabbit, cottontail, cottontail rabbit", "oc": 36}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:lagomorph-gnawi:leporid-leporid:rabbit-coney-co:wood rabbit, cottontail, cottontail rabbit", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:lagomorph-gnawi:leporid-leporid:hare", "oc": 11}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:lagomorph-gnawi:leporid-leporid:rabbit-coney-co:wood rabbit, cottontail, cottontail rabbit", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:rodent-gnawer:squirrel:tree squirrel:fox squirrel, eastern fox squirrel, Sciurus niger", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:lagomorph-gnawi:leporid-leporid:rabbit-coney-co:wood rabbit, cottontail, cottontail rabbit", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:rodent-gnawer:marmot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:lagomorph-gnawi:leporid-leporid:hare", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:corgi-Welsh cor:Pembroke, Pembroke Welsh corgi", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:lagomorph-gnawi:leporid-leporid:hare", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:lagomorph-gnawi:leporid-leporid:rabbit-coney-co:wood rabbit, cottontail, cottontail rabbit", "oc": 7}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:lagomorph-gnawi:leporid-leporid:hare", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:lagomorph-gnawi:leporid-leporid:hare", "oc": 39}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:lagomorph-gnawi:leporid-leporid:hare", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:rodent-gnawer:squirrel:tree squirrel:fox squirrel, eastern fox squirrel, Sciurus niger", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:lagomorph-gnawi:leporid-leporid:hare", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:sheep:ram, tup", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:lagomorph-gnawi:leporid-leporid:hare", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:food fish:barracouta, snoek", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:lagomorph-gnawi:leporid-leporid:rabbit-coney-co:Angora, Angora rabbit", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Lhasa, Lhasa apso", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:lagomorph-gnawi:leporid-leporid:rabbit-coney-co:Angora, Angora rabbit", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:domestic cat-ho:Persian cat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:lagomorph-gnawi:leporid-leporid:rabbit-coney-co:Angora, Angora rabbit", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:lagomorph-gnawi:leporid-leporid:rabbit-coney-co:Angora, Angora rabbit", "oc": 48}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:rodent-gnawer:hamster", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:domestic cat-ho:Persian cat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:rodent-gnawer:hamster", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:rodent-gnawer:hamster", "oc": 49}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:rodent-gnawer:porcupine, hedgehog", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:prototherian:monotreme-egg-l:echidna, spiny anteater, anteater", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:rodent-gnawer:porcupine, hedgehog", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:rodent-gnawer:porcupine, hedgehog", "oc": 42}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:rodent-gnawer:porcupine, hedgehog", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:rodent-gnawer:beaver", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:rodent-gnawer:porcupine, hedgehog", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:guenon, guenon monkey", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:rodent-gnawer:porcupine, hedgehog", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:howler monkey, howler", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:rodent-gnawer:porcupine, hedgehog", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:spider monkey, Ateles geoffroyi", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:rodent-gnawer:porcupine, hedgehog", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:procyonid:lesser panda, red panda, panda, bear cat, cat bear, Ailurus fulgens", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:rodent-gnawer:porcupine, hedgehog", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:handcart-pushca:barrow, garden cart, lawn cart, wheelbarrow", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:rodent-gnawer:porcupine, hedgehog", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bathtub, bathing tub, bath, tub", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:rodent-gnawer:squirrel:tree squirrel:fox squirrel, eastern fox squirrel, Sciurus niger", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:thrush:robin, American robin, Turdus migratorius", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:rodent-gnawer:squirrel:tree squirrel:fox squirrel, eastern fox squirrel, Sciurus niger", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :schipperke", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:rodent-gnawer:squirrel:tree squirrel:fox squirrel, eastern fox squirrel, Sciurus niger", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:fox:grey fox, gray fox, Urocyon cinereoargenteus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:rodent-gnawer:squirrel:tree squirrel:fox squirrel, eastern fox squirrel, Sciurus niger", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:big cat-cat:tiger, Panthera tigris", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:rodent-gnawer:squirrel:tree squirrel:fox squirrel, eastern fox squirrel, Sciurus niger", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:viverrine-viver:mongoose", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:rodent-gnawer:squirrel:tree squirrel:fox squirrel, eastern fox squirrel, Sciurus niger", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:rodent-gnawer:squirrel:tree squirrel:fox squirrel, eastern fox squirrel, Sciurus niger", "oc": 39}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:rodent-gnawer:squirrel:tree squirrel:fox squirrel, eastern fox squirrel, Sciurus niger", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:rodent-gnawer:marmot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:rodent-gnawer:squirrel:tree squirrel:fox squirrel, eastern fox squirrel, Sciurus niger", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:patas, hussar monkey, Erythrocebus patas", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:rodent-gnawer:squirrel:tree squirrel:fox squirrel, eastern fox squirrel, Sciurus niger", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:titi, titi monkey", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:rodent-gnawer:squirrel:tree squirrel:fox squirrel, eastern fox squirrel, Sciurus niger", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:fountain", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:rodent-gnawer:squirrel:tree squirrel:fox squirrel, eastern fox squirrel, Sciurus niger", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:seed:grain-caryopsis:kernel:corn", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:rodent-gnawer:squirrel:tree squirrel:fox squirrel, eastern fox squirrel, Sciurus niger", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:acorn", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:rodent-gnawer:marmot", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:bird of prey-ra:vulture", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:rodent-gnawer:marmot", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:gallinaceous bi:game bird:phasianid:quail", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:rodent-gnawer:marmot", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:viverrine-viver:meerkat, mierkat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:rodent-gnawer:marmot", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:rodent-gnawer:marmot", "oc": 43}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:rodent-gnawer:marmot", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:rodent-gnawer:beaver", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:rodent-gnawer:marmot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:memorial-monume:megalith, megalithic structure", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:rodent-gnawer:marmot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:pot, flowerpot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:rodent-gnawer:beaver", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:swan:black swan, Cygnus atratus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:rodent-gnawer:beaver", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:rodent-gnawer:hamster", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:rodent-gnawer:beaver", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:rodent-gnawer:porcupine, hedgehog", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:rodent-gnawer:beaver", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:rodent-gnawer:marmot", "oc": 7}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:rodent-gnawer:beaver", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:rodent-gnawer:beaver", "oc": 37}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:rodent-gnawer:beaver", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:otter", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:rodent-gnawer:beaver", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:birdhouse", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:rodent-gnawer:cavy:guinea pig, Cavia cobaya", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:salamander:ambystomid-amby:axolotl, mud puppy, Ambystoma mexicanum", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:rodent-gnawer:cavy:guinea pig, Cavia cobaya", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:metatherian:marsupial-pouch:wombat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:rodent-gnawer:cavy:guinea pig, Cavia cobaya", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:lagomorph-gnawi:leporid-leporid:rabbit-coney-co:Angora, Angora rabbit", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:rodent-gnawer:cavy:guinea pig, Cavia cobaya", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:rodent-gnawer:hamster", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:rodent-gnawer:cavy:guinea pig, Cavia cobaya", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:rodent-gnawer:cavy:guinea pig, Cavia cobaya", "oc": 39}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:rodent-gnawer:cavy:guinea pig, Cavia cobaya", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:swine:hog, pig, grunter, squealer, Sus scrofa", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:rodent-gnawer:cavy:guinea pig, Cavia cobaya", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:skunk, polecat, wood pussy", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:rodent-gnawer:cavy:guinea pig, Cavia cobaya", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:coat:lab coat, laboratory coat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:rodent-gnawer:cavy:guinea pig, Cavia cobaya", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:trap:mousetrap", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:odd-toed ungula:equine-equid:horse-Equus cab:sorrel", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:Rhodesian ridgeback", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:odd-toed ungula:equine-equid:horse-Equus cab:sorrel", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:Afghan hound, Afghan", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:odd-toed ungula:equine-equid:horse-Equus cab:sorrel", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Yorkshire terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:odd-toed ungula:equine-equid:horse-Equus cab:sorrel", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:odd-toed ungula:equine-equid:horse-Equus cab:sorrel", "oc": 46}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:odd-toed ungula:equine-equid:horse-Equus cab:sorrel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:plow, plough", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:odd-toed ungula:equine-equid:zebra", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:ratite-ratite b:ostrich, Struthio camelus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:odd-toed ungula:equine-equid:zebra", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:odd-toed ungula:equine-equid:zebra", "oc": 48}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:odd-toed ungula:equine-equid:zebra", "at": "root:entity:physical entity:object-physical:geological form:shore:seashore, coast, seacoast, sea-coast", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:swine:hog, pig, grunter, squealer, Sus scrofa", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:metatherian:marsupial-pouch:kangaroo:wallaby, brush kangaroo", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:swine:hog, pig, grunter, squealer, Sus scrofa", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:metatherian:marsupial-pouch:wombat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:swine:hog, pig, grunter, squealer, Sus scrofa", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:wolfhound:Irish wolfhound", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:swine:hog, pig, grunter, squealer, Sus scrofa", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:silky terrier, Sydney silky", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:swine:hog, pig, grunter, squealer, Sus scrofa", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :schipperke", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:swine:hog, pig, grunter, squealer, Sus scrofa", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wild dog:African hunting dog, hyena dog, Cape hunting dog, Lycaon pictus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:swine:hog, pig, grunter, squealer, Sus scrofa", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:big cat-cat:lion, king of beasts, Panthera leo", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:swine:hog, pig, grunter, squealer, Sus scrofa", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:rodent-gnawer:marmot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:swine:hog, pig, grunter, squealer, Sus scrofa", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:swine:hog, pig, grunter, squealer, Sus scrofa", "oc": 25}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:swine:hog, pig, grunter, squealer, Sus scrofa", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:swine:wild boar, boar, Sus scrofa", "oc": 8}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:swine:hog, pig, grunter, squealer, Sus scrofa", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:swine:warthog", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:swine:hog, pig, grunter, squealer, Sus scrofa", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:hippopotamus, hippo, river horse, Hippopotamus amphibius", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:swine:hog, pig, grunter, squealer, Sus scrofa", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:shaker:cocktail shaker", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:swine:hog, pig, grunter, squealer, Sus scrofa", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:greenhouse, nursery, glasshouse", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:swine:hog, pig, grunter, squealer, Sus scrofa", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:ax-axe:hatchet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:swine:hog, pig, grunter, squealer, Sus scrofa", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:soccer ball", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:swine:hog, pig, grunter, squealer, Sus scrofa", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:litter:stretcher", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:swine:hog, pig, grunter, squealer, Sus scrofa", "at": "root:entity:abstraction-abs:attribute:shape-form:round shape:sphere:ball-globe-orb:globule:bubble", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:swine:wild boar, boar, Sus scrofa", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:bear:American black bear, black bear, Ursus americanus, Euarctos americanus", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:swine:wild boar, boar, Sus scrofa", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:swine:hog, pig, grunter, squealer, Sus scrofa", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:swine:wild boar, boar, Sus scrofa", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:swine:wild boar, boar, Sus scrofa", "oc": 40}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:swine:wild boar, boar, Sus scrofa", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:swine:warthog", "oc": 5}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:swine:wild boar, boar, Sus scrofa", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:pachyderm:elephant:African elephant, Loxodonta africana", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:swine:wild boar, boar, Sus scrofa", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:sled-sledge-sle:dogsled, dog sled, dog sleigh", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:swine:warthog", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:bear:sloth bear, Melursus ursinus, Ursus ursinus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:swine:warthog", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:swine:wild boar, boar, Sus scrofa", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:swine:warthog", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:swine:warthog", "oc": 46}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:swine:warthog", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:mink", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:swine:warthog", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:otter", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:hippopotamus, hippo, river horse, Hippopotamus amphibius", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:terrapin", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:hippopotamus, hippo, river horse, Hippopotamus amphibius", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:prototherian:monotreme-egg-l:platypus, duckbill, duckbilled platypus, duck-billed platypus, Ornithorhynchus anatinus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:hippopotamus, hippo, river horse, Hippopotamus amphibius", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:swine:warthog", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:hippopotamus, hippo, river horse, Hippopotamus amphibius", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:hippopotamus, hippo, river horse, Hippopotamus amphibius", "oc": 44}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:hippopotamus, hippo, river horse, Hippopotamus amphibius", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:squirrel monkey, Saimiri sciureus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:hippopotamus, hippo, river horse, Hippopotamus amphibius", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:pachyderm:elephant:Indian elephant, Elephas maximus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:hippopotamus, hippo, river horse, Hippopotamus amphibius", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:instrument of e:guillotine", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:bovine:cattle-cows-kin:ox", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:parrot:cockatoo:sulphur-crested cockatoo, Kakatoe galerita, Cacatua galerita", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:bovine:cattle-cows-kin:ox", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:coonhound:black-and-tan coonhound", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:bovine:cattle-cows-kin:ox", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:bear:American black bear, black bear, Ursus americanus, Euarctos americanus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:bovine:cattle-cows-kin:ox", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:bovine:cattle-cows-kin:ox", "oc": 25}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:bovine:cattle-cows-kin:ox", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:Old World buffa:water buffalo, water ox, Asiatic buffalo, Bubalus bubalis", "oc": 5}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:bovine:cattle-cows-kin:ox", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:sheep:ram, tup", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:bovine:cattle-cows-kin:ox", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:wagon-waggon:cart:horse cart, horse-cart", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:bovine:cattle-cows-kin:ox", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:wagon-waggon:cart:oxcart", "oc": 11}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:bovine:cattle-cows-kin:ox", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:plow, plough", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:Old World buffa:water buffalo, water ox, Asiatic buffalo, Bubalus bubalis", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:sea turtle-mari:leatherback turtle, leatherback, leathery turtle, Dermochelys coriacea", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:Old World buffa:water buffalo, water ox, Asiatic buffalo, Bubalus bubalis", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:crocodilian rep:crocodile:African crocodile, Nile crocodile, Crocodylus niloticus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:Old World buffa:water buffalo, water ox, Asiatic buffalo, Bubalus bubalis", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:swine:hog, pig, grunter, squealer, Sus scrofa", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:Old World buffa:water buffalo, water ox, Asiatic buffalo, Bubalus bubalis", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:bovine:cattle-cows-kin:ox", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:Old World buffa:water buffalo, water ox, Asiatic buffalo, Bubalus bubalis", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:Old World buffa:water buffalo, water ox, Asiatic buffalo, Bubalus bubalis", "oc": 43}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:Old World buffa:water buffalo, water ox, Asiatic buffalo, Bubalus bubalis", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:bison", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:Old World buffa:water buffalo, water ox, Asiatic buffalo, Bubalus bubalis", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:wild sheep:mountain sheep:bighorn, bighorn sheep, cimarron, Rocky Mountain bighorn, Rocky Mountain sheep, Ovis canadensis", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:Old World buffa:water buffalo, water ox, Asiatic buffalo, Bubalus bubalis", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:plow, plough", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:bison", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:swine:wild boar, boar, Sus scrofa", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:bison", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:bovine:cattle-cows-kin:ox", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:bison", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:Old World buffa:water buffalo, water ox, Asiatic buffalo, Bubalus bubalis", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:bison", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:bison", "oc": 44}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:bison", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:sheep:ram, tup", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:bison", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:pachyderm:elephant:Indian elephant, Elephas maximus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:bison", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :forklift", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:sheep:ram, tup", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Bedlington terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:sheep:ram, tup", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:bovine:cattle-cows-kin:ox", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:sheep:ram, tup", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:Old World buffa:water buffalo, water ox, Asiatic buffalo, Bubalus bubalis", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:sheep:ram, tup", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:sheep:ram, tup", "oc": 26}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:sheep:ram, tup", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:wild sheep:mountain sheep:bighorn, bighorn sheep, cimarron, Rocky Mountain bighorn, Rocky Mountain sheep, Ovis canadensis", "oc": 17}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:sheep:ram, tup", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:goat-caprine an:wild goat:ibex, Capra ibex", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:sheep:ram, tup", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:llama", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:sheep:ram, tup", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:coat:fur coat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:wild sheep:mountain sheep:bighorn, bighorn sheep, cimarron, Rocky Mountain bighorn, Rocky Mountain sheep, Ovis canadensis", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:sheep:ram, tup", "oc": 10}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:wild sheep:mountain sheep:bighorn, bighorn sheep, cimarron, Rocky Mountain bighorn, Rocky Mountain sheep, Ovis canadensis", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:wild sheep:mountain sheep:bighorn, bighorn sheep, cimarron, Rocky Mountain bighorn, Rocky Mountain sheep, Ovis canadensis", "oc": 38}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:wild sheep:mountain sheep:bighorn, bighorn sheep, cimarron, Rocky Mountain bighorn, Rocky Mountain sheep, Ovis canadensis", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:goat-caprine an:wild goat:ibex, Capra ibex", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:wild sheep:mountain sheep:bighorn, bighorn sheep, cimarron, Rocky Mountain bighorn, Rocky Mountain sheep, Ovis canadensis", "at": "root:entity:physical entity:object-physical:geological form:natural elevati:mountain-mount:alp", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:goat-caprine an:wild goat:ibex, Capra ibex", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:metatherian:marsupial-pouch:kangaroo:wallaby, brush kangaroo", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:goat-caprine an:wild goat:ibex, Capra ibex", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:wolfhound:Irish wolfhound", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:goat-caprine an:wild goat:ibex, Capra ibex", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:Old World buffa:water buffalo, water ox, Asiatic buffalo, Bubalus bubalis", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:goat-caprine an:wild goat:ibex, Capra ibex", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:wild sheep:mountain sheep:bighorn, bighorn sheep, cimarron, Rocky Mountain bighorn, Rocky Mountain sheep, Ovis canadensis", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:goat-caprine an:wild goat:ibex, Capra ibex", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:goat-caprine an:wild goat:ibex, Capra ibex", "oc": 43}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:goat-caprine an:wild goat:ibex, Capra ibex", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:rescue equipmen:parachute, chute", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:antelope:hartebeest", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:antelope:hartebeest", "oc": 48}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:antelope:hartebeest", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:antelope:impala, Aepyceros melampus", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:antelope:impala, Aepyceros melampus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:metatherian:marsupial-pouch:kangaroo:wallaby, brush kangaroo", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:antelope:impala, Aepyceros melampus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:hyena, hyaena", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:antelope:impala, Aepyceros melampus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:antelope:impala, Aepyceros melampus", "oc": 39}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:antelope:impala, Aepyceros melampus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:antelope:gazelle", "oc": 7}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:antelope:impala, Aepyceros melampus", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:farm building:barn", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:antelope:impala, Aepyceros melampus", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:plow, plough", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:antelope:gazelle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:monitor-monitor:Komodo dragon, Komodo lizard, dragon lizard, giant lizard, Varanus komodoensis", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:antelope:gazelle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:Ibizan hound, Ibizan Podenco", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:antelope:gazelle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:antelope:hartebeest", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:antelope:gazelle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:antelope:impala, Aepyceros melampus", "oc": 10}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:antelope:gazelle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:antelope:gazelle", "oc": 35}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:antelope:gazelle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:llama", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:antelope:gazelle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:wagon-waggon:cart:oxcart", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:camel:Arabian camel, dromedary, Camelus dromedarius", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:metatherian:marsupial-pouch:phalanger-oposs:koala, koala bear, kangaroo bear, native bear, Phascolarctos cinereus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:camel:Arabian camel, dromedary, Camelus dromedarius", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:camel:Arabian camel, dromedary, Camelus dromedarius", "oc": 47}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:camel:Arabian camel, dromedary, Camelus dromedarius", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:sled-sledge-sle:dogsled, dog sled, dog sleigh", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:camel:Arabian camel, dromedary, Camelus dromedarius", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:flute, transverse flute", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:llama", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:ratite-ratite b:ostrich, Struthio camelus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:llama", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:metatherian:marsupial-pouch:kangaroo:wallaby, brush kangaroo", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:llama", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:greyhound:whippet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:llama", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:Saluki, gazelle hound", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:llama", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:setter:English setter", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:llama", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:poodle-poodle d:standard poodle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:llama", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:sheep:ram, tup", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:llama", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:llama", "oc": 40}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:llama", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:guenon, guenon monkey", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:llama", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:chainlink fence", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:llama", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:muzzle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:weasel", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:fox:kit fox, Vulpes macrotis", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:weasel", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:wildcat:cougar, puma, catamount, mountain lion, painter, panther, Felis concolor", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:weasel", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:viverrine-viver:mongoose", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:weasel", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:rodent-gnawer:hamster", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:weasel", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:weasel", "oc": 21}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:weasel", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:mink", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:weasel", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:polecat, fitch, foulmart, foumart, Mustela putorius", "oc": 12}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:weasel", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:black-footed ferret, ferret, Mustela nigripes", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:weasel", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:otter", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:weasel", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:badger", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:weasel", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:procyonid:lesser panda, red panda, panda, bear cat, cat bear, Ailurus fulgens", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:mink", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:gallinule-marsh:purple gallinul:European gallinule, Porphyrio porphyrio", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:mink", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:rail:coot:American coot, marsh hen, mud hen, water hen, Fulica americana", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:mink", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:seabird-sea bir:pelagic bird-oc:albatross, mollymawk", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:mink", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Belgian sheepdo:groenendael", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:mink", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:Mexican hairless", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:mink", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:domestic cat-ho:tabby, tabby cat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:mink", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:bear:American black bear, black bear, Ursus americanus, Euarctos americanus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:mink", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:dictyopterous i:cockroach, roach", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:mink", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:rodent-gnawer:marmot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:mink", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:weasel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:mink", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:mink", "oc": 37}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:mink", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:otter", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:mink", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:capuchin, ringtail, Cebus capucinus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:mink", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:stone wall", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:polecat, fitch, foulmart, foumart, Mustela putorius", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:redbone", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:polecat, fitch, foulmart, foumart, Mustela putorius", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :schipperke", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:polecat, fitch, foulmart, foumart, Mustela putorius", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:rodent-gnawer:squirrel:tree squirrel:fox squirrel, eastern fox squirrel, Sciurus niger", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:polecat, fitch, foulmart, foumart, Mustela putorius", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:rodent-gnawer:marmot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:polecat, fitch, foulmart, foumart, Mustela putorius", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:bison", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:polecat, fitch, foulmart, foumart, Mustela putorius", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:weasel", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:polecat, fitch, foulmart, foumart, Mustela putorius", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:mink", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:polecat, fitch, foulmart, foumart, Mustela putorius", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:polecat, fitch, foulmart, foumart, Mustela putorius", "oc": 19}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:polecat, fitch, foulmart, foumart, Mustela putorius", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:black-footed ferret, ferret, Mustela nigripes", "oc": 16}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:polecat, fitch, foulmart, foumart, Mustela putorius", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:otter", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:polecat, fitch, foulmart, foumart, Mustela putorius", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:skunk, polecat, wood pussy", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:polecat, fitch, foulmart, foumart, Mustela putorius", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:badger", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:black-footed ferret, ferret, Mustela nigripes", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:metatherian:marsupial-pouch:kangaroo:wallaby, brush kangaroo", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:black-footed ferret, ferret, Mustela nigripes", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:metatherian:marsupial-pouch:wombat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:black-footed ferret, ferret, Mustela nigripes", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:domestic cat-ho:Siamese cat, Siamese", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:black-footed ferret, ferret, Mustela nigripes", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:rodent-gnawer:hamster", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:black-footed ferret, ferret, Mustela nigripes", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:rodent-gnawer:cavy:guinea pig, Cavia cobaya", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:black-footed ferret, ferret, Mustela nigripes", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:weasel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:black-footed ferret, ferret, Mustela nigripes", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:polecat, fitch, foulmart, foumart, Mustela putorius", "oc": 8}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:black-footed ferret, ferret, Mustela nigripes", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:black-footed ferret, ferret, Mustela nigripes", "oc": 33}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:black-footed ferret, ferret, Mustela nigripes", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:badger", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:black-footed ferret, ferret, Mustela nigripes", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:marmoset", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:black-footed ferret, ferret, Mustela nigripes", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:nightwear-sleep:pajama, pyjama, pj's, jammies", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:otter", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:prototherian:monotreme-egg-l:platypus, duckbill, duckbilled platypus, duck-billed platypus, Ornithorhynchus anatinus", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:otter", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:metatherian:marsupial-pouch:wombat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:otter", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:aquatic mammal:pinniped mammal:seal:eared seal:sea lion", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:otter", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:curly-coated retriever", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:otter", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:hippopotamus, hippo, river horse, Hippopotamus amphibius", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:otter", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:weasel", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:otter", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:mink", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:otter", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:otter", "oc": 36}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:otter", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:ganoid-ganoid f:gar, garfish, garpike, billfish, Lepisosteus osseus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:skunk, polecat, wood pussy", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:gallinaceous bi:game bird:grouse:black grouse", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:skunk, polecat, wood pussy", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:spitz:Pomeranian", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:skunk, polecat, wood pussy", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:spitz:keeshond", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:skunk, polecat, wood pussy", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:skunk, polecat, wood pussy", "oc": 45}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:skunk, polecat, wood pussy", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:badger", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:skunk, polecat, wood pussy", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:hair spray", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:badger", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:prototherian:monotreme-egg-l:platypus, duckbill, duckbilled platypus, duck-billed platypus, Ornithorhynchus anatinus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:badger", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:greyhound:whippet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:badger", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:hyena, hyaena", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:badger", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:rodent-gnawer:marmot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:badger", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:swine:wild boar, boar, Sus scrofa", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:badger", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:black-footed ferret, ferret, Mustela nigripes", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:badger", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:badger", "oc": 43}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:badger", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:lemur:Madagascar cat, ring-tailed lemur, Lemur catta", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:edentate:armadillo", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:metatherian:marsupial-pouch:wombat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:edentate:armadillo", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:spoonbill", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:edentate:armadillo", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:viverrine-viver:mongoose", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:edentate:armadillo", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:edentate:armadillo", "oc": 45}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:edentate:armadillo", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:breakwater, groin, groyne, mole, bulwark, seawall, jetty", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:edentate:armadillo", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:savings bank-co:piggy bank, penny bank", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:edentate:sloth-tree slot:three-toed sloth, ai, Bradypus tridactylus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:edentate:sloth-tree slot:three-toed sloth, ai, Bradypus tridactylus", "oc": 48}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:edentate:sloth-tree slot:three-toed sloth, ai, Bradypus tridactylus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:marmoset", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:edentate:sloth-tree slot:three-toed sloth, ai, Bradypus tridactylus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:howler monkey, howler", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:ape:anthropoid ape:great ape-pongi:orangutan, orang, orangutang, Pongo pygmaeus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:lobster:spiny lobster, langouste, rock lobster, crawfish, crayfish, sea crawfish", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:ape:anthropoid ape:great ape-pongi:orangutan, orang, orangutang, Pongo pygmaeus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:water spaniel:Irish water spaniel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:ape:anthropoid ape:great ape-pongi:orangutan, orang, orangutang, Pongo pygmaeus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wild dog:dhole, Cuon alpinus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:ape:anthropoid ape:great ape-pongi:orangutan, orang, orangutang, Pongo pygmaeus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:ape:anthropoid ape:great ape-pongi:orangutan, orang, orangutang, Pongo pygmaeus", "oc": 42}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:ape:anthropoid ape:great ape-pongi:orangutan, orang, orangutang, Pongo pygmaeus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:ape:anthropoid ape:great ape-pongi:gorilla, Gorilla gorilla", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:ape:anthropoid ape:great ape-pongi:orangutan, orang, orangutang, Pongo pygmaeus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:ape:anthropoid ape:great ape-pongi:chimpanzee, chimp, Pan troglodytes", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:ape:anthropoid ape:great ape-pongi:orangutan, orang, orangutang, Pongo pygmaeus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:ape:anthropoid ape:lesser ape:siamang, Hylobates syndactylus, Symphalangus syndactylus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:ape:anthropoid ape:great ape-pongi:orangutan, orang, orangutang, Pongo pygmaeus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:langur", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:ape:anthropoid ape:great ape-pongi:gorilla, Gorilla gorilla", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:metatherian:marsupial-pouch:phalanger-oposs:koala, koala bear, kangaroo bear, native bear, Phascolarctos cinereus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:ape:anthropoid ape:great ape-pongi:gorilla, Gorilla gorilla", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:Newfoundland, Newfoundland dog", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:ape:anthropoid ape:great ape-pongi:gorilla, Gorilla gorilla", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:ape:anthropoid ape:great ape-pongi:gorilla, Gorilla gorilla", "oc": 42}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:ape:anthropoid ape:great ape-pongi:gorilla, Gorilla gorilla", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:ape:anthropoid ape:great ape-pongi:chimpanzee, chimp, Pan troglodytes", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:ape:anthropoid ape:great ape-pongi:gorilla, Gorilla gorilla", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:ape:anthropoid ape:lesser ape:siamang, Hylobates syndactylus, Symphalangus syndactylus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:ape:anthropoid ape:great ape-pongi:gorilla, Gorilla gorilla", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:spider monkey, Ateles geoffroyi", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:ape:anthropoid ape:great ape-pongi:chimpanzee, chimp, Pan troglodytes", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:mastiff:Tibetan mastiff", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:ape:anthropoid ape:great ape-pongi:chimpanzee, chimp, Pan troglodytes", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:bear:American black bear, black bear, Ursus americanus, Euarctos americanus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:ape:anthropoid ape:great ape-pongi:chimpanzee, chimp, Pan troglodytes", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:bear:sloth bear, Melursus ursinus, Ursus ursinus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:ape:anthropoid ape:great ape-pongi:chimpanzee, chimp, Pan troglodytes", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:ape:anthropoid ape:great ape-pongi:orangutan, orang, orangutang, Pongo pygmaeus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:ape:anthropoid ape:great ape-pongi:chimpanzee, chimp, Pan troglodytes", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:ape:anthropoid ape:great ape-pongi:gorilla, Gorilla gorilla", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:ape:anthropoid ape:great ape-pongi:chimpanzee, chimp, Pan troglodytes", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:ape:anthropoid ape:great ape-pongi:chimpanzee, chimp, Pan troglodytes", "oc": 38}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:ape:anthropoid ape:great ape-pongi:chimpanzee, chimp, Pan troglodytes", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:ape:anthropoid ape:lesser ape:siamang, Hylobates syndactylus, Symphalangus syndactylus", "oc": 5}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:ape:anthropoid ape:great ape-pongi:chimpanzee, chimp, Pan troglodytes", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:spider monkey, Ateles geoffroyi", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:ape:anthropoid ape:great ape-pongi:chimpanzee, chimp, Pan troglodytes", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:handcart-pushca:barrow, garden cart, lawn cart, wheelbarrow", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:ape:anthropoid ape:lesser ape:gibbon, Hylobates lar", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:bear:brown bear, bruin, Ursus arctos", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:ape:anthropoid ape:lesser ape:gibbon, Hylobates lar", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:llama", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:ape:anthropoid ape:lesser ape:gibbon, Hylobates lar", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:ape:anthropoid ape:great ape-pongi:orangutan, orang, orangutang, Pongo pygmaeus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:ape:anthropoid ape:lesser ape:gibbon, Hylobates lar", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:ape:anthropoid ape:lesser ape:gibbon, Hylobates lar", "oc": 37}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:ape:anthropoid ape:lesser ape:gibbon, Hylobates lar", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:ape:anthropoid ape:lesser ape:siamang, Hylobates syndactylus, Symphalangus syndactylus", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:ape:anthropoid ape:lesser ape:gibbon, Hylobates lar", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:langur", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:ape:anthropoid ape:lesser ape:gibbon, Hylobates lar", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:colobus, colobus monkey", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:ape:anthropoid ape:lesser ape:gibbon, Hylobates lar", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:marmoset", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:ape:anthropoid ape:lesser ape:gibbon, Hylobates lar", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:capuchin, ringtail, Cebus capucinus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:ape:anthropoid ape:lesser ape:gibbon, Hylobates lar", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:squirrel monkey, Saimiri sciureus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:ape:anthropoid ape:lesser ape:gibbon, Hylobates lar", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:lemur:indri, indris, Indri indri, Indri brevicaudatus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:ape:anthropoid ape:lesser ape:gibbon, Hylobates lar", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:procyonid:lesser panda, red panda, panda, bear cat, cat bear, Ailurus fulgens", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:ape:anthropoid ape:lesser ape:siamang, Hylobates syndactylus, Symphalangus syndactylus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:prototherian:monotreme-egg-l:platypus, duckbill, duckbilled platypus, duck-billed platypus, Ornithorhynchus anatinus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:ape:anthropoid ape:lesser ape:siamang, Hylobates syndactylus, Symphalangus syndactylus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:ape:anthropoid ape:great ape-pongi:gorilla, Gorilla gorilla", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:ape:anthropoid ape:lesser ape:siamang, Hylobates syndactylus, Symphalangus syndactylus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:ape:anthropoid ape:great ape-pongi:chimpanzee, chimp, Pan troglodytes", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:ape:anthropoid ape:lesser ape:siamang, Hylobates syndactylus, Symphalangus syndactylus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:ape:anthropoid ape:lesser ape:gibbon, Hylobates lar", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:ape:anthropoid ape:lesser ape:siamang, Hylobates syndactylus, Symphalangus syndactylus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:ape:anthropoid ape:lesser ape:siamang, Hylobates syndactylus, Symphalangus syndactylus", "oc": 37}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:ape:anthropoid ape:lesser ape:siamang, Hylobates syndactylus, Symphalangus syndactylus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:baboon", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:ape:anthropoid ape:lesser ape:siamang, Hylobates syndactylus, Symphalangus syndactylus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:marmoset", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:ape:anthropoid ape:lesser ape:siamang, Hylobates syndactylus, Symphalangus syndactylus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:howler monkey, howler", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:ape:anthropoid ape:lesser ape:siamang, Hylobates syndactylus, Symphalangus syndactylus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:spider monkey, Ateles geoffroyi", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:ape:anthropoid ape:lesser ape:siamang, Hylobates syndactylus, Symphalangus syndactylus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:lemur:indri, indris, Indri indri, Indri brevicaudatus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:guenon, guenon monkey", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:bird of prey-ra:vulture", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:guenon, guenon monkey", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:viverrine-viver:meerkat, mierkat", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:guenon, guenon monkey", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:guenon, guenon monkey", "oc": 39}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:guenon, guenon monkey", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:baboon", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:guenon, guenon monkey", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:macaque", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:guenon, guenon monkey", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:langur", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:guenon, guenon monkey", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:capuchin, ringtail, Cebus capucinus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:guenon, guenon monkey", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:howler monkey, howler", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:patas, hussar monkey, Erythrocebus patas", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:heron:little blue heron, Egretta caerulea", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:patas, hussar monkey, Erythrocebus patas", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:big cat-cat:lion, king of beasts, Panthera leo", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:patas, hussar monkey, Erythrocebus patas", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:viverrine-viver:mongoose", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:patas, hussar monkey, Erythrocebus patas", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:ape:anthropoid ape:great ape-pongi:gorilla, Gorilla gorilla", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:patas, hussar monkey, Erythrocebus patas", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:ape:anthropoid ape:great ape-pongi:chimpanzee, chimp, Pan troglodytes", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:patas, hussar monkey, Erythrocebus patas", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:ape:anthropoid ape:lesser ape:siamang, Hylobates syndactylus, Symphalangus syndactylus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:patas, hussar monkey, Erythrocebus patas", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:guenon, guenon monkey", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:patas, hussar monkey, Erythrocebus patas", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:patas, hussar monkey, Erythrocebus patas", "oc": 33}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:patas, hussar monkey, Erythrocebus patas", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:baboon", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:patas, hussar monkey, Erythrocebus patas", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:macaque", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:patas, hussar monkey, Erythrocebus patas", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:proboscis monkey, Nasalis larvatus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:patas, hussar monkey, Erythrocebus patas", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:marmoset", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:patas, hussar monkey, Erythrocebus patas", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:spider monkey, Ateles geoffroyi", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:patas, hussar monkey, Erythrocebus patas", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:squirrel monkey, Saimiri sciureus", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:baboon", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:antelope:gazelle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:baboon", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:guenon, guenon monkey", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:baboon", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:baboon", "oc": 46}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:baboon", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:lemur:Madagascar cat, ring-tailed lemur, Lemur catta", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:baboon", "at": "root:entity:physical entity:object-physical:geological form:cliff, drop, drop-off", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:macaque", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:flat-coated retriever", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:macaque", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:weasel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:macaque", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:ape:anthropoid ape:great ape-pongi:chimpanzee, chimp, Pan troglodytes", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:macaque", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:ape:anthropoid ape:lesser ape:gibbon, Hylobates lar", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:macaque", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:guenon, guenon monkey", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:macaque", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:baboon", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:macaque", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:macaque", "oc": 37}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:macaque", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:langur", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:macaque", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:capuchin, ringtail, Cebus capucinus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:macaque", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:titi, titi monkey", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:langur", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:bear:brown bear, bruin, Ursus arctos", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:langur", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:rodent-gnawer:squirrel:tree squirrel:fox squirrel, eastern fox squirrel, Sciurus niger", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:langur", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:antelope:gazelle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:langur", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:edentate:sloth-tree slot:three-toed sloth, ai, Bradypus tridactylus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:langur", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:ape:anthropoid ape:lesser ape:gibbon, Hylobates lar", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:langur", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:patas, hussar monkey, Erythrocebus patas", "oc": 6}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:langur", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:macaque", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:langur", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:langur", "oc": 29}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:langur", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:colobus, colobus monkey", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:langur", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:proboscis monkey, Nasalis larvatus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:langur", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:titi, titi monkey", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:langur", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:squirrel monkey, Saimiri sciureus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:langur", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shield:plate-scale-she:armor plate-arm:helmet:pickelhaube", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:colobus, colobus monkey", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:heron:little blue heron, Egretta caerulea", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:colobus, colobus monkey", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:skunk, polecat, wood pussy", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:colobus, colobus monkey", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:edentate:sloth-tree slot:three-toed sloth, ai, Bradypus tridactylus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:colobus, colobus monkey", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:ape:anthropoid ape:great ape-pongi:chimpanzee, chimp, Pan troglodytes", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:colobus, colobus monkey", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:ape:anthropoid ape:lesser ape:gibbon, Hylobates lar", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:colobus, colobus monkey", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:ape:anthropoid ape:lesser ape:siamang, Hylobates syndactylus, Symphalangus syndactylus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:colobus, colobus monkey", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:guenon, guenon monkey", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:colobus, colobus monkey", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:colobus, colobus monkey", "oc": 41}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:colobus, colobus monkey", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:howler monkey, howler", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:colobus, colobus monkey", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:lemur:indri, indris, Indri indri, Indri brevicaudatus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:proboscis monkey, Nasalis larvatus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:proboscis monkey, Nasalis larvatus", "oc": 50}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:marmoset", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:spider:tarantula", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:marmoset", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:black-footed ferret, ferret, Mustela nigripes", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:marmoset", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:baboon", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:marmoset", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:marmoset", "oc": 38}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:marmoset", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:howler monkey, howler", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:marmoset", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:titi, titi monkey", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:marmoset", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:spider monkey, Ateles geoffroyi", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:marmoset", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:squirrel monkey, Saimiri sciureus", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:marmoset", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:handcart-pushca:shopping cart", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:capuchin, ringtail, Cebus capucinus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:piciform bird:toucan", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:capuchin, ringtail, Cebus capucinus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:crane", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:capuchin, ringtail, Cebus capucinus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:bear:American black bear, black bear, Ursus americanus, Euarctos americanus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:capuchin, ringtail, Cebus capucinus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:edentate:sloth-tree slot:three-toed sloth, ai, Bradypus tridactylus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:capuchin, ringtail, Cebus capucinus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:ape:anthropoid ape:lesser ape:gibbon, Hylobates lar", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:capuchin, ringtail, Cebus capucinus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:ape:anthropoid ape:lesser ape:siamang, Hylobates syndactylus, Symphalangus syndactylus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:capuchin, ringtail, Cebus capucinus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:macaque", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:capuchin, ringtail, Cebus capucinus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:capuchin, ringtail, Cebus capucinus", "oc": 38}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:capuchin, ringtail, Cebus capucinus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:howler monkey, howler", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:capuchin, ringtail, Cebus capucinus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:spider monkey, Ateles geoffroyi", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:capuchin, ringtail, Cebus capucinus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:squirrel monkey, Saimiri sciureus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:howler monkey, howler", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:bear:American black bear, black bear, Ursus americanus, Euarctos americanus", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:howler monkey, howler", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:ape:anthropoid ape:great ape-pongi:orangutan, orang, orangutang, Pongo pygmaeus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:howler monkey, howler", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:capuchin, ringtail, Cebus capucinus", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:howler monkey, howler", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:howler monkey, howler", "oc": 41}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:howler monkey, howler", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:titi, titi monkey", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:howler monkey, howler", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:spider monkey, Ateles geoffroyi", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:howler monkey, howler", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:lemur:indri, indris, Indri indri, Indri brevicaudatus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:howler monkey, howler", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:place of worshi:shrine:stupa, tope", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:titi, titi monkey", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:ape:anthropoid ape:lesser ape:gibbon, Hylobates lar", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:titi, titi monkey", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:proboscis monkey, Nasalis larvatus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:titi, titi monkey", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:marmoset", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:titi, titi monkey", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:capuchin, ringtail, Cebus capucinus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:titi, titi monkey", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:howler monkey, howler", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:titi, titi monkey", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:titi, titi monkey", "oc": 27}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:titi, titi monkey", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:spider monkey, Ateles geoffroyi", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:titi, titi monkey", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:squirrel monkey, Saimiri sciureus", "oc": 9}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:titi, titi monkey", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:roof:tile roof", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:spider monkey, Ateles geoffroyi", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:iguanid-iguanid:common iguana, iguana, Iguana iguana", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:spider monkey, Ateles geoffroyi", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:edentate:sloth-tree slot:three-toed sloth, ai, Bradypus tridactylus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:spider monkey, Ateles geoffroyi", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:ape:anthropoid ape:great ape-pongi:gorilla, Gorilla gorilla", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:spider monkey, Ateles geoffroyi", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:ape:anthropoid ape:lesser ape:gibbon, Hylobates lar", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:spider monkey, Ateles geoffroyi", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:ape:anthropoid ape:lesser ape:siamang, Hylobates syndactylus, Symphalangus syndactylus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:spider monkey, Ateles geoffroyi", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:guenon, guenon monkey", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:spider monkey, Ateles geoffroyi", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:baboon", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:spider monkey, Ateles geoffroyi", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:capuchin, ringtail, Cebus capucinus", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:spider monkey, Ateles geoffroyi", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:howler monkey, howler", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:spider monkey, Ateles geoffroyi", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:titi, titi monkey", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:spider monkey, Ateles geoffroyi", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:spider monkey, Ateles geoffroyi", "oc": 19}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:spider monkey, Ateles geoffroyi", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:squirrel monkey, Saimiri sciureus", "oc": 9}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:spider monkey, Ateles geoffroyi", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:lemur:indri, indris, Indri indri, Indri brevicaudatus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:squirrel monkey, Saimiri sciureus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:patas, hussar monkey, Erythrocebus patas", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:squirrel monkey, Saimiri sciureus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:macaque", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:squirrel monkey, Saimiri sciureus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:capuchin, ringtail, Cebus capucinus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:squirrel monkey, Saimiri sciureus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:titi, titi monkey", "oc": 6}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:squirrel monkey, Saimiri sciureus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:squirrel monkey, Saimiri sciureus", "oc": 40}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:lemur:Madagascar cat, ring-tailed lemur, Lemur catta", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:fox:grey fox, gray fox, Urocyon cinereoargenteus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:lemur:Madagascar cat, ring-tailed lemur, Lemur catta", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:domestic cat-ho:tabby, tabby cat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:lemur:Madagascar cat, ring-tailed lemur, Lemur catta", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:big cat-cat:snow leopard, ounce, Panthera uncia", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:lemur:Madagascar cat, ring-tailed lemur, Lemur catta", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:proboscis monkey, Nasalis larvatus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:lemur:Madagascar cat, ring-tailed lemur, Lemur catta", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:lemur:Madagascar cat, ring-tailed lemur, Lemur catta", "oc": 38}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:lemur:Madagascar cat, ring-tailed lemur, Lemur catta", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:lemur:indri, indris, Indri indri, Indri brevicaudatus", "oc": 6}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:lemur:Madagascar cat, ring-tailed lemur, Lemur catta", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:roof:thatch, thatched roof", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:lemur:Madagascar cat, ring-tailed lemur, Lemur catta", "at": "root:entity:physical entity:object-physical:geological form:cliff, drop, drop-off", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:lemur:indri, indris, Indri indri, Indri brevicaudatus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:gallinaceous bi:game bird:phasianid:quail", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:lemur:indri, indris, Indri indri, Indri brevicaudatus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:sled dog-sledge:malamute, malemute, Alaskan malamute", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:lemur:indri, indris, Indri indri, Indri brevicaudatus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:langur", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:lemur:indri, indris, Indri indri, Indri brevicaudatus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:howler monkey, howler", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:lemur:indri, indris, Indri indri, Indri brevicaudatus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:lemur:Madagascar cat, ring-tailed lemur, Lemur catta", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:lemur:indri, indris, Indri indri, Indri brevicaudatus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:lemur:indri, indris, Indri indri, Indri brevicaudatus", "oc": 44}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:lemur:indri, indris, Indri indri, Indri brevicaudatus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:procyonid:lesser panda, red panda, panda, bear cat, cat bear, Ailurus fulgens", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:pachyderm:elephant:Indian elephant, Elephas maximus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:tusker", "oc": 16}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:pachyderm:elephant:Indian elephant, Elephas maximus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:bear:brown bear, bruin, Ursus arctos", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:pachyderm:elephant:Indian elephant, Elephas maximus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:bovine:cattle-cows-kin:ox", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:pachyderm:elephant:Indian elephant, Elephas maximus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:ape:anthropoid ape:great ape-pongi:chimpanzee, chimp, Pan troglodytes", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:pachyderm:elephant:Indian elephant, Elephas maximus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:pachyderm:elephant:Indian elephant, Elephas maximus", "oc": 24}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:pachyderm:elephant:Indian elephant, Elephas maximus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:pachyderm:elephant:African elephant, Loxodonta africana", "oc": 5}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:pachyderm:elephant:Indian elephant, Elephas maximus", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:fountain", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:pachyderm:elephant:Indian elephant, Elephas maximus", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:toyshop", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:pachyderm:elephant:African elephant, Loxodonta africana", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:tusker", "oc": 7}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:pachyderm:elephant:African elephant, Loxodonta africana", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:gastropod-univa:conch", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:pachyderm:elephant:African elephant, Loxodonta africana", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:ape:anthropoid ape:great ape-pongi:orangutan, orang, orangutang, Pongo pygmaeus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:pachyderm:elephant:African elephant, Loxodonta africana", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:pachyderm:elephant:Indian elephant, Elephas maximus", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:pachyderm:elephant:African elephant, Loxodonta africana", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:pachyderm:elephant:African elephant, Loxodonta africana", "oc": 37}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:procyonid:lesser panda, red panda, panda, bear cat, cat bear, Ailurus fulgens", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:viverrine-viver:meerkat, mierkat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:procyonid:lesser panda, red panda, panda, bear cat, cat bear, Ailurus fulgens", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:procyonid:lesser panda, red panda, panda, bear cat, cat bear, Ailurus fulgens", "oc": 46}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:procyonid:lesser panda, red panda, panda, bear cat, cat bear, Ailurus fulgens", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:procyonid:giant panda, panda, panda bear, coon bear, Ailuropoda melanoleuca", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:procyonid:giant panda, panda, panda bear, coon bear, Ailuropoda melanoleuca", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:ape:anthropoid ape:lesser ape:gibbon, Hylobates lar", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:procyonid:giant panda, panda, panda bear, coon bear, Ailuropoda melanoleuca", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:procyonid:giant panda, panda, panda bear, coon bear, Ailuropoda melanoleuca", "oc": 48}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:procyonid:giant panda, panda, panda bear, coon bear, Ailuropoda melanoleuca", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:soccer ball", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:food fish:barracouta, snoek", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:cartilaginous f:elasmobranch-se:shark:mackerel shark:great white shark, white shark, man-eater, man-eating shark, Carcharodon carcharias", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:food fish:barracouta, snoek", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:cartilaginous f:elasmobranch-se:shark:requiem shark:tiger shark, Galeocerdo cuvieri", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:food fish:barracouta, snoek", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:cartilaginous f:elasmobranch-se:shark:hammerhead, hammerhead shark", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:food fish:barracouta, snoek", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:food fish:barracouta, snoek", "oc": 38}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:food fish:barracouta, snoek", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:soft-finned fis:salmonid:salmon:coho, cohoe, coho salmon, blue jack, silver salmon, Oncorhynchus kisutch", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:food fish:barracouta, snoek", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:ganoid-ganoid f:gar, garfish, garpike, billfish, Lepisosteus osseus", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:food fish:barracouta, snoek", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:screw", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:soft-finned fis:eel", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:thunder snake, worm snake, Carphophis amoenus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:soft-finned fis:eel", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:water snake", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:soft-finned fis:eel", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:sea snake", "oc": 6}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:soft-finned fis:eel", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:gastropod-univa:conch", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:soft-finned fis:eel", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crab:king crab, Alaska crab, Alaskan king crab, Alaska king crab, Paralithodes camtschatica", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:soft-finned fis:eel", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:hermit crab", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:soft-finned fis:eel", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:soft-finned fis:eel", "oc": 29}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:soft-finned fis:eel", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:ganoid-ganoid f:gar, garfish, garpike, billfish, Lepisosteus osseus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:soft-finned fis:eel", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:spiny-finned fi:scorpaenoid-sco:scorpaenid-scor:lionfish", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:soft-finned fis:eel", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:spiny-finned fi:plectognath-ple:puffer, pufferfish, blowfish, globefish", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:soft-finned fis:eel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:butcher shop, meat market", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:soft-finned fis:eel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:knife:cleaver, meat cleaver, chopper", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:soft-finned fis:eel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:unicycle, monocycle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:soft-finned fis:eel", "at": "root:entity:physical entity:object-physical:geological form:natural elevati:ridge:reef:coral reef", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:soft-finned fis:salmonid:salmon:coho, cohoe, coho salmon, blue jack, silver salmon, Oncorhynchus kisutch", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:soft-finned fis:cypriniform fis:cyprinid-cyprin:tench, Tinca tinca", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:soft-finned fis:salmonid:salmon:coho, cohoe, coho salmon, blue jack, silver salmon, Oncorhynchus kisutch", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:cartilaginous f:elasmobranch-se:shark:mackerel shark:great white shark, white shark, man-eater, man-eating shark, Carcharodon carcharias", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:soft-finned fis:salmonid:salmon:coho, cohoe, coho salmon, blue jack, silver salmon, Oncorhynchus kisutch", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:frog-toad-toad :true frog-ranid:bullfrog, Rana catesbeiana", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:soft-finned fis:salmonid:salmon:coho, cohoe, coho salmon, blue jack, silver salmon, Oncorhynchus kisutch", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:Norwegian elkhound, elkhound", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:soft-finned fis:salmonid:salmon:coho, cohoe, coho salmon, blue jack, silver salmon, Oncorhynchus kisutch", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:food fish:barracouta, snoek", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:soft-finned fis:salmonid:salmon:coho, cohoe, coho salmon, blue jack, silver salmon, Oncorhynchus kisutch", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:soft-finned fis:salmonid:salmon:coho, cohoe, coho salmon, blue jack, silver salmon, Oncorhynchus kisutch", "oc": 39}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:soft-finned fis:salmonid:salmon:coho, cohoe, coho salmon, blue jack, silver salmon, Oncorhynchus kisutch", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:ganoid-ganoid f:sturgeon", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:soft-finned fis:salmonid:salmon:coho, cohoe, coho salmon, blue jack, silver salmon, Oncorhynchus kisutch", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:ganoid-ganoid f:gar, garfish, garpike, billfish, Lepisosteus osseus", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:spiny-finned fi:percoid fish-pe:butterfly fish:rock beauty, Holocanthus tricolor", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:soft-finned fis:eel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:spiny-finned fi:percoid fish-pe:butterfly fish:rock beauty, Holocanthus tricolor", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:spiny-finned fi:percoid fish-pe:butterfly fish:rock beauty, Holocanthus tricolor", "oc": 47}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:spiny-finned fi:percoid fish-pe:butterfly fish:rock beauty, Holocanthus tricolor", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:spiny-finned fi:plectognath-ple:puffer, pufferfish, blowfish, globefish", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:spiny-finned fi:percoid fish-pe:butterfly fish:rock beauty, Holocanthus tricolor", "at": "root:entity:physical entity:object-physical:geological form:natural elevati:ridge:reef:coral reef", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:spiny-finned fi:percoid fish-pe:damselfish-demo:anemone fish", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:coelenterate-cn:anthozoan-actin:sea anemone, anemone", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:spiny-finned fi:percoid fish-pe:damselfish-demo:anemone fish", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:spiny-finned fi:percoid fish-pe:butterfly fish:rock beauty, Holocanthus tricolor", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:spiny-finned fi:percoid fish-pe:damselfish-demo:anemone fish", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:spiny-finned fi:percoid fish-pe:damselfish-demo:anemone fish", "oc": 44}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:spiny-finned fi:percoid fish-pe:damselfish-demo:anemone fish", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:shaker:cocktail shaker", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:spiny-finned fi:percoid fish-pe:damselfish-demo:anemone fish", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:person-individu:explorer-advent:diver-frogman-u:scuba diver", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:ganoid-ganoid f:sturgeon", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:cartilaginous f:elasmobranch-se:shark:requiem shark:tiger shark, Galeocerdo cuvieri", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:ganoid-ganoid f:sturgeon", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:cartilaginous f:elasmobranch-se:ray:electric ray, crampfish, numbfish, torpedo", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:ganoid-ganoid f:sturgeon", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:cartilaginous f:elasmobranch-se:ray:stingray", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:ganoid-ganoid f:sturgeon", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:prototherian:monotreme-egg-l:platypus, duckbill, duckbilled platypus, duck-billed platypus, Ornithorhynchus anatinus", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:ganoid-ganoid f:sturgeon", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:aquatic mammal:sea cow-sirenia:dugong, Dugong dugon", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:ganoid-ganoid f:sturgeon", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:food fish:barracouta, snoek", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:ganoid-ganoid f:sturgeon", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:soft-finned fis:eel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:ganoid-ganoid f:sturgeon", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:soft-finned fis:salmonid:salmon:coho, cohoe, coho salmon, blue jack, silver salmon, Oncorhynchus kisutch", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:ganoid-ganoid f:sturgeon", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:ganoid-ganoid f:sturgeon", "oc": 32}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:ganoid-ganoid f:sturgeon", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:ganoid-ganoid f:gar, garfish, garpike, billfish, Lepisosteus osseus", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:ganoid-ganoid f:sturgeon", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:sailing vessel-:sailboat-sailin:catamaran", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:ganoid-ganoid f:sturgeon", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:lock:padlock", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:ganoid-ganoid f:sturgeon", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:machine-simple :wheel:potter's wheel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:ganoid-ganoid f:sturgeon", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:scarf:stole", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:ganoid-ganoid f:sturgeon", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:litter:stretcher", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:ganoid-ganoid f:gar, garfish, garpike, billfish, Lepisosteus osseus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:cartilaginous f:elasmobranch-se:shark:mackerel shark:great white shark, white shark, man-eater, man-eating shark, Carcharodon carcharias", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:ganoid-ganoid f:gar, garfish, garpike, billfish, Lepisosteus osseus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:cartilaginous f:elasmobranch-se:ray:stingray", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:ganoid-ganoid f:gar, garfish, garpike, billfish, Lepisosteus osseus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:salamander:ambystomid-amby:axolotl, mud puppy, Ambystoma mexicanum", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:ganoid-ganoid f:gar, garfish, garpike, billfish, Lepisosteus osseus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:frog-toad-toad :true frog-ranid:bullfrog, Rana catesbeiana", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:ganoid-ganoid f:gar, garfish, garpike, billfish, Lepisosteus osseus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:elapid-elapid s:cobra:Indian cobra, Naja naja", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:ganoid-ganoid f:gar, garfish, garpike, billfish, Lepisosteus osseus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:sea snake", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:ganoid-ganoid f:gar, garfish, garpike, billfish, Lepisosteus osseus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:viper:pit viper:rattlesnake-rat:diamondback, diamondback rattlesnake, Crotalus adamanteus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:ganoid-ganoid f:gar, garfish, garpike, billfish, Lepisosteus osseus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:centipede", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:ganoid-ganoid f:gar, garfish, garpike, billfish, Lepisosteus osseus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:phasmid-phasmid:walking stick, walkingstick, stick insect", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:ganoid-ganoid f:gar, garfish, garpike, billfish, Lepisosteus osseus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:edentate:armadillo", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:ganoid-ganoid f:gar, garfish, garpike, billfish, Lepisosteus osseus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:food fish:barracouta, snoek", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:ganoid-ganoid f:gar, garfish, garpike, billfish, Lepisosteus osseus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:ganoid-ganoid f:sturgeon", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:ganoid-ganoid f:gar, garfish, garpike, billfish, Lepisosteus osseus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:ganoid-ganoid f:gar, garfish, garpike, billfish, Lepisosteus osseus", "oc": 33}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:ganoid-ganoid f:gar, garfish, garpike, billfish, Lepisosteus osseus", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:firearm-piece-s:autoloader-self:automatic firea:automatic rifle:assault rifle, assault gun", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:ganoid-ganoid f:gar, garfish, garpike, billfish, Lepisosteus osseus", "at": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:towel:paper towel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:ganoid-ganoid f:gar, garfish, garpike, billfish, Lepisosteus osseus", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:vacuum, vacuum cleaner", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:spiny-finned fi:scorpaenoid-sco:scorpaenid-scor:lionfish", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:cartilaginous f:elasmobranch-se:ray:stingray", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:spiny-finned fi:scorpaenoid-sco:scorpaenid-scor:lionfish", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:spiny-finned fi:scorpaenoid-sco:scorpaenid-scor:lionfish", "oc": 47}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:spiny-finned fi:scorpaenoid-sco:scorpaenid-scor:lionfish", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:blind-screen:window blind:window shade", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:spiny-finned fi:scorpaenoid-sco:scorpaenid-scor:lionfish", "at": "root:entity:physical entity:object-physical:geological form:natural elevati:ridge:reef:coral reef", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:spiny-finned fi:plectognath-ple:puffer, pufferfish, blowfish, globefish", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:cartilaginous f:elasmobranch-se:ray:electric ray, crampfish, numbfish, torpedo", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:spiny-finned fi:plectognath-ple:puffer, pufferfish, blowfish, globefish", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:frog-toad-toad :true frog-ranid:bullfrog, Rana catesbeiana", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:spiny-finned fi:plectognath-ple:puffer, pufferfish, blowfish, globefish", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:echinoderm:sea cucumber, holothurian", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:spiny-finned fi:plectognath-ple:puffer, pufferfish, blowfish, globefish", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:spiny-finned fi:scorpaenoid-sco:scorpaenid-scor:lionfish", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:spiny-finned fi:plectognath-ple:puffer, pufferfish, blowfish, globefish", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:spiny-finned fi:plectognath-ple:puffer, pufferfish, blowfish, globefish", "oc": 42}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:spiny-finned fi:plectognath-ple:puffer, pufferfish, blowfish, globefish", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:breathing devic:snorkel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:spiny-finned fi:plectognath-ple:puffer, pufferfish, blowfish, globefish", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:swing", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:spiny-finned fi:plectognath-ple:puffer, pufferfish, blowfish, globefish", "at": "root:entity:physical entity:object-physical:geological form:natural elevati:ridge:reef:coral reef", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:calculator-calc:abacus", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:calculator-calc:abacus", "oc": 40}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:calculator-calc:abacus", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:baby bed-babys :crib, cot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:calculator-calc:abacus", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:table:dining table, board", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:calculator-calc:abacus", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:guitar:electric guitar", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:calculator-calc:abacus", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:clip:hair slide", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:calculator-calc:abacus", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:system:maze, labyrinth", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:calculator-calc:abacus", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:decoration-orna:adornment:jewelry-jewelle:necklace", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:calculator-calc:abacus", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:pencil box, pencil case", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:calculator-calc:abacus", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:pin:safety pin", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:calculator-calc:abacus", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:spotlight, spot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:calculator-calc:abacus", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:roof:tile roof", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:robe:abaya", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:robe:abaya", "oc": 38}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:robe:abaya", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloak", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:robe:abaya", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:coat:fur coat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:robe:abaya", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:robe:kimono", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:robe:abaya", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:cap:mortarboard", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:robe:abaya", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:restaurant, eating house, eating place, eatery", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:robe:abaya", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:mask:face mask:ski mask", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:robe:abaya", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:suit, suit of clothes", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:robe:abaya", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:coat:raincoat-waterp:trench coat", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:robe:abaya", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:attire-garb-dre:hairpiece-false:wig", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:outerwear-overc:gown-robe:academic gown, academic robe, judge's robe", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:robe:abaya", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:outerwear-overc:gown-robe:academic gown, academic robe, judge's robe", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:outerwear-overc:gown-robe:academic gown, academic robe, judge's robe", "oc": 19}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:outerwear-overc:gown-robe:academic gown, academic robe, judge's robe", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:barbershop", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:outerwear-overc:gown-robe:academic gown, academic robe, judge's robe", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:marimba, xylophone", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:outerwear-overc:gown-robe:academic gown, academic robe, judge's robe", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:uniform:military uniform", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:outerwear-overc:gown-robe:academic gown, academic robe, judge's robe", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:cap:mortarboard", "oc": 18}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:outerwear-overc:gown-robe:academic gown, academic robe, judge's robe", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:runner:ski", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:outerwear-overc:gown-robe:academic gown, academic robe, judge's robe", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:surface:horizontal surf:platform:stage", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:outerwear-overc:gown-robe:academic gown, academic robe, judge's robe", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:suit, suit of clothes", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:outerwear-overc:gown-robe:academic gown, academic robe, judge's robe", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:coat:raincoat-waterp:trench coat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:outerwear-overc:gown-robe:academic gown, academic robe, judge's robe", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:outerwear-overc:gown-robe:vestment", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:outerwear-overc:gown-robe:academic gown, academic robe, judge's robe", "at": "root:entity:abstraction-abs:communication:sign:street sign", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:outerwear-overc:gown-robe:academic gown, academic robe, judge's robe", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:person-individu:peer-equal-matc:associate:participant:groom, bridegroom", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:keyboard instru:accordion, piano accordion, squeeze box", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:keyboard instru:accordion, piano accordion, squeeze box", "oc": 41}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:keyboard instru:accordion, piano accordion, squeeze box", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:bowed stringed :cello, violoncello", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:keyboard instru:accordion, piano accordion, squeeze box", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:telephone-phone:radiotelephone-:cellular telephone, cellular phone, cellphone, cell, mobile phone", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:keyboard instru:accordion, piano accordion, squeeze box", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:keyboard:computer keyboard, keypad", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:keyboard instru:accordion, piano accordion, squeeze box", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:coat:lab coat, laboratory coat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:keyboard instru:accordion, piano accordion, squeeze box", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:motor scooter, scooter", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:keyboard instru:accordion, piano accordion, squeeze box", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:restaurant, eating house, eating place, eatery", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:keyboard instru:accordion, piano accordion, squeeze box", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:screwdriver", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:keyboard instru:accordion, piano accordion, squeeze box", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:surface:horizontal surf:platform:stage", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:guitar:acoustic guitar", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:guitar:acoustic guitar", "oc": 25}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:guitar:acoustic guitar", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:banjo", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:guitar:acoustic guitar", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:carton", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:guitar:acoustic guitar", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:guitar:electric guitar", "oc": 7}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:guitar:acoustic guitar", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:chordophone:harp", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:guitar:acoustic guitar", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:garden tool-law:lawn mower, mower", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:guitar:acoustic guitar", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electrical devi:transducer:electro-acousti:microphone, mike", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:guitar:acoustic guitar", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:beating-reed in:double-reed ins:oboe, hautboy, hautbois", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:guitar:acoustic guitar", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:pipe:panpipe, pandean pipe, syrinx", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:guitar:acoustic guitar", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:surface:horizontal surf:platform:stage", "oc": 11}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:warship-war ves:aircraft carrier, carrier, flattop, attack aircraft carrier", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:warship-war ves:aircraft carrier, carrier, flattop, attack aircraft carrier", "oc": 43}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:warship-war ves:aircraft carrier, carrier, flattop, attack aircraft carrier", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:breakwater, groin, groyne, mole, bulwark, seawall, jetty", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:warship-war ves:aircraft carrier, carrier, flattop, attack aircraft carrier", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:cargo ship-carg:container ship, containership, container vessel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:warship-war ves:aircraft carrier, carrier, flattop, attack aircraft carrier", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:gear-parapherna:rig:drill rig-drill:drilling platform, offshore rig", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:warship-war ves:aircraft carrier, carrier, flattop, attack aircraft carrier", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:passenger ship:liner, ocean liner", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:warship-war ves:aircraft carrier, carrier, flattop, attack aircraft carrier", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:aircraft:heavier-than-ai:warplane, military plane", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:aircraft:heavier-than-ai:airplane-aeropl:airliner", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:aircraft:heavier-than-ai:airplane-aeropl:airliner", "oc": 46}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:aircraft:heavier-than-ai:airplane-aeropl:airliner", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:pirate, pirate ship", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:aircraft:heavier-than-ai:airplane-aeropl:airliner", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:aircraft:heavier-than-ai:warplane, military plane", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:aircraft:lighter-than-ai:airship, dirigible", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:seabird-sea bir:pelagic bird-oc:albatross, mollymawk", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:aircraft:lighter-than-ai:airship, dirigible", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:aircraft:lighter-than-ai:airship, dirigible", "oc": 35}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:aircraft:lighter-than-ai:airship, dirigible", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:banjo", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:aircraft:lighter-than-ai:airship, dirigible", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:bell cote, bell cot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:aircraft:lighter-than-ai:airship, dirigible", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:breakwater, groin, groyne, mole, bulwark, seawall, jetty", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:aircraft:lighter-than-ai:airship, dirigible", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:defensive struc:fortification-m:castle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:aircraft:lighter-than-ai:airship, dirigible", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:lifting device:crane", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:aircraft:lighter-than-ai:airship, dirigible", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:supporting stru:support:pedestal, plinth, footstall", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:aircraft:lighter-than-ai:airship, dirigible", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:support:pier", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:aircraft:lighter-than-ai:airship, dirigible", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:sundial", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:aircraft:lighter-than-ai:airship, dirigible", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:aircraft:heavier-than-ai:warplane, military plane", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:aircraft:lighter-than-ai:airship, dirigible", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:airfoil-aerofoi:wing", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:aircraft:lighter-than-ai:airship, dirigible", "at": "root:entity:abstraction-abs:communication:signal-signalin:visual signal:light:traffic light, traffic signal, stoplight", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:aircraft:lighter-than-ai:airship, dirigible", "at": "root:entity:physical entity:object-physical:geological form:natural elevati:promontory, headland, head, foreland", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:altar", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:altar", "oc": 35}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:altar", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:place of worshi:church, church building", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:altar", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:organ, pipe organ", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:altar", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:house:residence:palace", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:altar", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:place of worshi:shrine:stupa, tope", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:altar", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:chair of state:throne", "oc": 5}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:altar", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:arch:triumphal arch", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:altar", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:roof:vault", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:altar", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:clock:wall clock", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:ambulance", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:ambulance", "oc": 43}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:ambulance", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:cab, hack, taxi, taxicab", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:ambulance", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:fire engine, fire truck", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:ambulance", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:van:police van, police wagon, paddy wagon, patrol wagon, wagon, black Maria", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:amphibian, amphibious vehicle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:amphibian, amphibious vehicle", "oc": 35}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:amphibian, amphibious vehicle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:tower:beacon, lighthouse, beacon light, pharos", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:amphibian, amphibious vehicle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:military vehicl:half track", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:amphibian, amphibious vehicle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:snowplow, snowplough", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:amphibian, amphibious vehicle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:boat:motorboat-power:speedboat", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:amphibian, amphibious vehicle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :armored vehicle:tank, army tank, armored combat vehicle, armoured combat vehicle", "oc": 10}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:clock:analog clock", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:clock:analog clock", "oc": 27}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:clock:analog clock", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:barometer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:clock:analog clock", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:bell cote, bell cot", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:clock:analog clock", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:audio system-so:reproducer:stereo-stereoph:iPod", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:clock:analog clock", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:navigational in:compass:magnetic compass", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:clock:analog clock", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:meter:odometer, hodometer, mileometer, milometer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:clock:analog clock", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:oscilloscope, scope, cathode-ray oscilloscope, CRO", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:clock:analog clock", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:spotlight, spot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:clock:analog clock", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:timer:stopwatch, stop watch", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:clock:analog clock", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:clock:wall clock", "oc": 12}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:clock:analog clock", "at": "root:entity:abstraction-abs:communication:sign:street sign", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:clock:analog clock", "at": "root:entity:abstraction-abs:communication:signal-signalin:visual signal:light:traffic light, traffic signal, stoplight", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:outbuilding:shed:apiary, bee house", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:outbuilding:shed:apiary, bee house", "oc": 43}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:outbuilding:shed:apiary, bee house", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:handcart-pushca:barrow, garden cart, lawn cart, wheelbarrow", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:outbuilding:shed:apiary, bee house", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:birdhouse", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:outbuilding:shed:apiary, bee house", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:supporting stru:framework:honeycomb", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:outbuilding:shed:apiary, bee house", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:picket fence, paling", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:protective garm:apron", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:protective garm:apron", "oc": 32}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:protective garm:apron", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:backpack, back pack, knapsack, packsack, rucksack, haversack", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:protective garm:apron", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:footwear:hosiery-hose:stocking:Christmas stocking", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:protective garm:apron", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:womans clothing:dress-frock:gown", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:protective garm:apron", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:marketplace-mar:grocery store, grocery, food market, market", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:protective garm:apron", "at": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:handkerchief, hankie, hanky, hankey", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:protective garm:apron", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shade:lampshade, lamp shade", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:protective garm:apron", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:support:structural memb:upright-vertica:post:maypole", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:protective garm:apron", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:miniskirt, mini", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:protective garm:apron", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:overskirt", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:protective garm:apron", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:nightwear-sleep:pajama, pyjama, pj's, jammies", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:protective garm:apron", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:sarong", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:protective garm:apron", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:cap:shower cap", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bin:ashcan, trash can, garbage can, wastebin, ash bin, ash-bin, ashbin, dustbin, trash barrel, trash bin", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:rodent-gnawer:porcupine, hedgehog", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bin:ashcan, trash can, garbage can, wastebin, ash bin, ash-bin, ashbin, dustbin, trash barrel, trash bin", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:black-footed ferret, ferret, Mustela nigripes", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bin:ashcan, trash can, garbage can, wastebin, ash bin, ash-bin, ashbin, dustbin, trash barrel, trash bin", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:ganoid-ganoid f:sturgeon", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bin:ashcan, trash can, garbage can, wastebin, ash bin, ash-bin, ashbin, dustbin, trash barrel, trash bin", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bin:ashcan, trash can, garbage can, wastebin, ash bin, ash-bin, ashbin, dustbin, trash barrel, trash bin", "oc": 21}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bin:ashcan, trash can, garbage can, wastebin, ash bin, ash-bin, ashbin, dustbin, trash barrel, trash bin", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:top-cover:cap:bottlecap", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bin:ashcan, trash can, garbage can, wastebin, ash bin, ash-bin, ashbin, dustbin, trash barrel, trash bin", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bucket, pail", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bin:ashcan, trash can, garbage can, wastebin, ash bin, ash-bin, ashbin, dustbin, trash barrel, trash bin", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:chainlink fence", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bin:ashcan, trash can, garbage can, wastebin, ash bin, ash-bin, ashbin, dustbin, trash barrel, trash bin", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pot:coffeepot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bin:ashcan, trash can, garbage can, wastebin, ash bin, ash-bin, ashbin, dustbin, trash barrel, trash bin", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:pump:gas pump, gasoline pump, petrol pump, island dispenser", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bin:ashcan, trash can, garbage can, wastebin, ash bin, ash-bin, ashbin, dustbin, trash barrel, trash bin", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:free-reed instr:harmonica, mouth organ, harp, mouth harp", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bin:ashcan, trash can, garbage can, wastebin, ash bin, ash-bin, ashbin, dustbin, trash barrel, trash bin", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:mailbox, letter box", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bin:ashcan, trash can, garbage can, wastebin, ash bin, ash-bin, ashbin, dustbin, trash barrel, trash bin", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:machine-simple :wheel:paddlewheel, paddle wheel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bin:ashcan, trash can, garbage can, wastebin, ash bin, ash-bin, ashbin, dustbin, trash barrel, trash bin", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:timer:parking meter", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bin:ashcan, trash can, garbage can, wastebin, ash bin, ash-bin, ashbin, dustbin, trash barrel, trash bin", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:telephone-phone:pay-phone, pay-station", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bin:ashcan, trash can, garbage can, wastebin, ash bin, ash-bin, ashbin, dustbin, trash barrel, trash bin", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:supporting stru:support:pedestal, plinth, footstall", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bin:ashcan, trash can, garbage can, wastebin, ash bin, ash-bin, ashbin, dustbin, trash barrel, trash bin", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:cloak:poncho", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bin:ashcan, trash can, garbage can, wastebin, ash bin, ash-bin, ashbin, dustbin, trash barrel, trash bin", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:punching bag, punch bag, punching ball, punchball", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bin:ashcan, trash can, garbage can, wastebin, ash bin, ash-bin, ashbin, dustbin, trash barrel, trash bin", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:excavation:pool:cistern:rain barrel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bin:ashcan, trash can, garbage can, wastebin, ash bin, ash-bin, ashbin, dustbin, trash barrel, trash bin", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:white goods:refrigerator, icebox", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bin:ashcan, trash can, garbage can, wastebin, ash bin, ash-bin, ashbin, dustbin, trash barrel, trash bin", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:shaker:saltshaker, salt shaker", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bin:ashcan, trash can, garbage can, wastebin, ash bin, ash-bin, ashbin, dustbin, trash barrel, trash bin", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:snowplow, snowplough", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bin:ashcan, trash can, garbage can, wastebin, ash bin, ash-bin, ashbin, dustbin, trash barrel, trash bin", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:steel drum", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bin:ashcan, trash can, garbage can, wastebin, ash bin, ash-bin, ashbin, dustbin, trash barrel, trash bin", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:filter:strainer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bin:ashcan, trash can, garbage can, wastebin, ash bin, ash-bin, ashbin, dustbin, trash barrel, trash bin", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:tub, vat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bin:ashcan, trash can, garbage can, wastebin, ash bin, ash-bin, ashbin, dustbin, trash barrel, trash bin", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:movable barrier:gate:turnstile", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bin:ashcan, trash can, garbage can, wastebin, ash bin, ash-bin, ashbin, dustbin, trash barrel, trash bin", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:jar:vase", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:firearm-piece-s:autoloader-self:automatic firea:automatic rifle:assault rifle, assault gun", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:sea turtle-mari:leatherback turtle, leatherback, leathery turtle, Dermochelys coriacea", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:firearm-piece-s:autoloader-self:automatic firea:automatic rifle:assault rifle, assault gun", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:firearm-piece-s:autoloader-self:automatic firea:automatic rifle:assault rifle, assault gun", "oc": 23}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:firearm-piece-s:autoloader-self:automatic firea:automatic rifle:assault rifle, assault gun", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:bearskin, busby, shako", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:firearm-piece-s:autoloader-self:automatic firea:automatic rifle:assault rifle, assault gun", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:lifting device:crane", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:firearm-piece-s:autoloader-self:automatic firea:automatic rifle:assault rifle, assault gun", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :forklift", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:firearm-piece-s:autoloader-self:automatic firea:automatic rifle:assault rifle, assault gun", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:mask:gasmask, respirator, gas helmet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:firearm-piece-s:autoloader-self:automatic firea:automatic rifle:assault rifle, assault gun", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:uniform:military uniform", "oc": 7}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:firearm-piece-s:autoloader-self:automatic firea:automatic rifle:assault rifle, assault gun", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:bicycle-bike-wh:mountain bike, all-terrain bike, off-roader", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:firearm-piece-s:autoloader-self:automatic firea:automatic rifle:assault rifle, assault gun", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:plow, plough", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:firearm-piece-s:autoloader-self:automatic firea:automatic rifle:assault rifle, assault gun", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:firearm-piece-s:pistol-handgun-:revolver, six-gun, six-shooter", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:firearm-piece-s:autoloader-self:automatic firea:automatic rifle:assault rifle, assault gun", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:firearm-piece-s:rifle", "oc": 9}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:firearm-piece-s:autoloader-self:automatic firea:automatic rifle:assault rifle, assault gun", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:medical instrum:syringe", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:firearm-piece-s:autoloader-self:automatic firea:automatic rifle:assault rifle, assault gun", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:support:rack-stand:tripod", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:firearm-piece-s:autoloader-self:automatic firea:automatic rifle:assault rifle, assault gun", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:vacuum, vacuum cleaner", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:backpack, back pack, knapsack, packsack, rucksack, haversack", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:backpack, back pack, knapsack, packsack, rucksack, haversack", "oc": 15}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:backpack, back pack, knapsack, packsack, rucksack, haversack", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:bearskin, busby, shako", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:backpack, back pack, knapsack, packsack, rucksack, haversack", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:memorial-monume:brass, memorial tablet, plaque", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:backpack, back pack, knapsack, packsack, rucksack, haversack", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:vest-waistcoat:bulletproof vest", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:backpack, back pack, knapsack, packsack, rucksack, haversack", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:confectionery, confectionary, candy store", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:backpack, back pack, knapsack, packsack, rucksack, haversack", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:helmet:crash helmet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:backpack, back pack, knapsack, packsack, rucksack, haversack", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:staff:flagpole, flagstaff", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:backpack, back pack, knapsack, packsack, rucksack, haversack", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:mask:gasmask, respirator, gas helmet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:backpack, back pack, knapsack, packsack, rucksack, haversack", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:protective garm:knee pad", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:backpack, back pack, knapsack, packsack, rucksack, haversack", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:mailbag, postbag", "oc": 8}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:backpack, back pack, knapsack, packsack, rucksack, haversack", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:support:structural memb:upright-vertica:post:maypole", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:backpack, back pack, knapsack, packsack, rucksack, haversack", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:uniform:military uniform", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:backpack, back pack, knapsack, packsack, rucksack, haversack", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:miniskirt, mini", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:backpack, back pack, knapsack, packsack, rucksack, haversack", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:shelter:tent-collapsibl:mountain tent", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:backpack, back pack, knapsack, packsack, rucksack, haversack", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:pencil box, pencil case", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:backpack, back pack, knapsack, packsack, rucksack, haversack", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:purse", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:backpack, back pack, knapsack, packsack, rucksack, haversack", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:sports implemen:racket, racquet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:backpack, back pack, knapsack, packsack, rucksack, haversack", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:basket-handbask:shopping basket", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:backpack, back pack, knapsack, packsack, rucksack, haversack", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:sleeping bag", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:backpack, back pack, knapsack, packsack, rucksack, haversack", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :streetcar, tram, tramcar, trolley, trolley car", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:backpack, back pack, knapsack, packsack, rucksack, haversack", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:litter:stretcher", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:backpack, back pack, knapsack, packsack, rucksack, haversack", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:swimsuit-swimwe:swimming trunks, bathing trunks", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:backpack, back pack, knapsack, packsack, rucksack, haversack", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:canopy:umbrella", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:backpack, back pack, knapsack, packsack, rucksack, haversack", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:case:wallet, billfold, notecase, pocketbook", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:backpack, back pack, knapsack, packsack, rucksack, haversack", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:white goods:washer, automatic washer, washing machine", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:backpack, back pack, knapsack, packsack, rucksack, haversack", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:dessert-sweet-a:frozen dessert:ice lolly, lolly, lollipop, popsicle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:bakery, bakeshop, bakehouse", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:bakery, bakeshop, bakehouse", "oc": 20}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:bakery, bakeshop, bakehouse", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:barbershop", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:bakery, bakeshop, bakehouse", "at": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:bib", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:bakery, bakeshop, bakehouse", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:bookshop, bookstore, bookstall", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:bakery, bakeshop, bakehouse", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:neckwear:necktie-tie:bow tie, bow-tie, bowtie", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:bakery, bakeshop, bakehouse", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:butcher shop, meat market", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:bakery, bakeshop, bakehouse", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:theater-theatre:cinema, movie theater, movie theatre, movie house, picture palace", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:bakery, bakeshop, bakehouse", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cosmetic:makeup-make-up-:face powder", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:bakery, bakeshop, bakehouse", "at": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:handkerchief, hankie, hanky, hankey", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:bakery, bakeshop, bakehouse", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:overskirt", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:bakery, bakeshop, bakehouse", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:package-parcel:packet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:bakery, bakeshop, bakehouse", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:sharpener:pencil sharpener", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:bakery, bakeshop, bakehouse", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:white goods:refrigerator, icebox", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:bakery, bakeshop, bakehouse", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:restaurant, eating house, eating place, eatery", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:bakery, bakeshop, bakehouse", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:shoe:running shoe", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:bakery, bakeshop, bakehouse", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:turner-food tur:spatula", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:bakery, bakeshop, bakehouse", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:tennis ball", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:bakery, bakeshop, bakehouse", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:chair of state:throne", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:bakery, bakeshop, bakehouse", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:jar:vase", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:bakery, bakeshop, bakehouse", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:tank-storage ta:reservoir:water tower", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:bakery, bakeshop, bakehouse", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:dessert-sweet-a:frozen dessert:ice cream, icecream", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:bakery, bakeshop, bakehouse", "at": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:loaf of bread-l:French loaf", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:bakery, bakeshop, bakehouse", "at": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:cracker:pretzel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:bakery, bakeshop, bakehouse", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:snack food:sandwich:hamburger-beefb:cheeseburger", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:bakery, bakeshop, bakehouse", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:snack food:sandwich:hotdog, hot dog, red hot", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:bakery, bakeshop, bakehouse", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:berry:strawberry", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:bakery, bakeshop, bakehouse", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:potpie", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:bakery, bakeshop, bakehouse", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:burrito", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:gymnastic appar:balance beam, beam", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:gymnastic appar:balance beam, beam", "oc": 44}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:gymnastic appar:balance beam, beam", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:bannister, banister, balustrade, balusters, handrail", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:gymnastic appar:balance beam, beam", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:gymnastic appar:horizontal bar, high bar", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:gymnastic appar:balance beam, beam", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:gymnastic appar:parallel bars, bars", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:aircraft:lighter-than-ai:balloon", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:aircraft:lighter-than-ai:balloon", "oc": 43}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:aircraft:lighter-than-ai:balloon", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:car-railcar-rai:freight car", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:aircraft:lighter-than-ai:balloon", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:farm machine:harvester, reaper", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:aircraft:lighter-than-ai:balloon", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:lantern:jack-o'-lantern", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:aircraft:lighter-than-ai:balloon", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:rescue equipmen:parachute, chute", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:aircraft:lighter-than-ai:balloon", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:pirate, pirate ship", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:aircraft:lighter-than-ai:balloon", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:rod:pole", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:aircraft:lighter-than-ai:balloon", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:blind-screen:curtain-drape-d:shower curtain", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:writing impleme:pen:ballpoint, ballpoint pen, ballpen, Biro", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:writing impleme:pen:ballpoint, ballpoint pen, ballpen, Biro", "oc": 31}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:writing impleme:pen:ballpoint, ballpoint pen, ballpen, Biro", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:binder, ring-binder", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:writing impleme:pen:ballpoint, ballpoint pen, ballpen, Biro", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:drumstick", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:writing impleme:pen:ballpoint, ballpoint pen, ballpen, Biro", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:writing impleme:pen:fountain pen", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:writing impleme:pen:ballpoint, ballpoint pen, ballpen, Biro", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:matchstick", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:writing impleme:pen:ballpoint, ballpoint pen, ballpen, Biro", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:projectile, missile", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:writing impleme:pen:ballpoint, ballpoint pen, ballpen, Biro", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:eraser:rubber eraser, rubber, pencil eraser", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:writing impleme:pen:ballpoint, ballpoint pen, ballpen, Biro", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:screwdriver", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:writing impleme:pen:ballpoint, ballpoint pen, ballpen, Biro", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:basket-handbask:shopping basket", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:writing impleme:pen:ballpoint, ballpoint pen, ballpen, Biro", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:medical instrum:stethoscope", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:writing impleme:pen:ballpoint, ballpoint pen, ballpen, Biro", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:medical instrum:syringe", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:writing impleme:pen:ballpoint, ballpoint pen, ballpen, Biro", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:toyshop", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:writing impleme:pen:ballpoint, ballpoint pen, ballpen, Biro", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:game:puzzle:crossword puzzle, crossword", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloth covering:dressing-medica:bandage-patch:adhesive bandag:Band Aid", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:German shepherd, German shepherd dog, German police dog, alsatian", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloth covering:dressing-medica:bandage-patch:adhesive bandag:Band Aid", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloth covering:dressing-medica:bandage-patch:adhesive bandag:Band Aid", "oc": 27}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloth covering:dressing-medica:bandage-patch:adhesive bandag:Band Aid", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:swimsuit-swimwe:bikini, two-piece", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloth covering:dressing-medica:bandage-patch:adhesive bandag:Band Aid", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:neckwear:necktie-tie:bow tie, bow-tie, bowtie", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloth covering:dressing-medica:bandage-patch:adhesive bandag:Band Aid", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:undergarment-un:brassiere, bra, bandeau", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloth covering:dressing-medica:bandage-patch:adhesive bandag:Band Aid", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:diaper, nappy, napkin", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloth covering:dressing-medica:bandage-patch:adhesive bandag:Band Aid", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:envelope", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloth covering:dressing-medica:bandage-patch:adhesive bandag:Band Aid", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:game:puzzle:jigsaw puzzle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloth covering:dressing-medica:bandage-patch:adhesive bandag:Band Aid", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:coat:lab coat, laboratory coat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloth covering:dressing-medica:bandage-patch:adhesive bandag:Band Aid", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:matchstick", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloth covering:dressing-medica:bandage-patch:adhesive bandag:Band Aid", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:strengthener-re:brace:neck brace", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloth covering:dressing-medica:bandage-patch:adhesive bandag:Band Aid", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:package-parcel:packet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloth covering:dressing-medica:bandage-patch:adhesive bandag:Band Aid", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:savings bank-co:piggy bank, penny bank", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloth covering:dressing-medica:bandage-patch:adhesive bandag:Band Aid", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:eraser:rubber eraser, rubber, pencil eraser", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloth covering:dressing-medica:bandage-patch:adhesive bandag:Band Aid", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:shoe:sandal", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloth covering:dressing-medica:bandage-patch:adhesive bandag:Band Aid", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:cap:shower cap", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloth covering:dressing-medica:bandage-patch:adhesive bandag:Band Aid", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:medical instrum:stethoscope", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloth covering:dressing-medica:bandage-patch:adhesive bandag:Band Aid", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:dessert-sweet-a:frozen dessert:ice lolly, lolly, lollipop, popsicle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloth covering:dressing-medica:bandage-patch:adhesive bandag:Band Aid", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:squash:winter squash:butternut squash", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloth covering:dressing-medica:bandage-patch:adhesive bandag:Band Aid", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:pizza, pizza pie", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloth covering:dressing-medica:bandage-patch:adhesive bandag:Band Aid", "at": "root:entity:abstraction-abs:attribute:shape-form:round shape:sphere:ball-globe-orb:globule:bubble", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:banjo", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:banjo", "oc": 43}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:banjo", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:beating-reed in:double-reed ins:bassoon", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:banjo", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:guitar:electric guitar", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:banjo", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:pick, plectrum, plectron", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:banjo", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:bowed stringed :violin, fiddle", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:banjo", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:dessert-sweet-a:frozen dessert:ice lolly, lolly, lollipop, popsicle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:bannister, banister, balustrade, balusters, handrail", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:calculator-calc:abacus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:bannister, banister, balustrade, balusters, handrail", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:bannister, banister, balustrade, balusters, handrail", "oc": 29}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:bannister, banister, balustrade, balusters, handrail", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:public transpor:train-railroad :passenger train:bullet train, bullet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:bannister, banister, balustrade, balusters, handrail", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:candle, taper, wax light", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:bannister, banister, balustrade, balusters, handrail", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:coil, spiral, volute, whorl, helix", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:bannister, banister, balustrade, balusters, handrail", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:crate", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:bannister, banister, balustrade, balusters, handrail", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:baby bed-babys :crib, cot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:bannister, banister, balustrade, balusters, handrail", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:table:dining table, board", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:bannister, banister, balustrade, balusters, handrail", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:piano-pianofort:grand piano, grand", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:bannister, banister, balustrade, balusters, handrail", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building comple:plant-works-ind:factory-mill-ma:lumbermill, sawmill", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:bannister, banister, balustrade, balusters, handrail", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:gymnastic appar:parallel bars, bars", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:bannister, banister, balustrade, balusters, handrail", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:area:patio, terrace", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:bannister, banister, balustrade, balusters, handrail", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:picket fence, paling", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:bannister, banister, balustrade, balusters, handrail", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:supporting stru:framework:rack:plate rack", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:bannister, banister, balustrade, balusters, handrail", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:institution:penal instituti:correctional in:prison, prison house", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:bannister, banister, balustrade, balusters, handrail", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:excavation:pool:cistern:rain barrel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:bannister, banister, balustrade, balusters, handrail", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:handcart-pushca:shopping cart", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:bannister, banister, balustrade, balusters, handrail", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:reflector:solar dish, solar collector, solar furnace", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:bannister, banister, balustrade, balusters, handrail", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:blind-screen:window blind:window shade", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:weight-free wei:barbell", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:weight-free wei:barbell", "oc": 29}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:weight-free wei:barbell", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:croquet ball", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:weight-free wei:barbell", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:staff:crutch", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:weight-free wei:barbell", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:weight-free wei:dumbbell", "oc": 11}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:weight-free wei:barbell", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:library", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:weight-free wei:barbell", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:ping-pong ball", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:weight-free wei:barbell", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:rotating mechan:circle-round:disk-disc:puck, hockey puck", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:weight-free wei:barbell", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:system:communication s:radio, wireless", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:weight-free wei:barbell", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:firearm-piece-s:rifle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:weight-free wei:barbell", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:pin:safety pin", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:weight-free wei:barbell", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:screw", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:weight-free wei:barbell", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:unicycle, monocycle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:barber chair", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:barber chair", "oc": 33}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:barber chair", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:barbershop", "oc": 10}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:barber chair", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:butcher shop, meat market", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:barber chair", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:table:desk", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:barber chair", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:theater-theatre:home theater, home theatre", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:barber chair", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:steel drum", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:barber chair", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:chair of state:throne", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:barber chair", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:game:puzzle:crossword puzzle, crossword", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:barbershop", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:bakery, bakeshop, bakehouse", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:barbershop", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:banjo", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:barbershop", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:barber chair", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:barbershop", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:barbershop", "oc": 29}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:barbershop", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:bearskin, busby, shako", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:barbershop", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:bookshop, bookstore, bookstall", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:barbershop", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:cash machine, cash dispenser, automated teller machine, automatic teller machine, automated teller, automatic teller, ATM", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:barbershop", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:guitar:electric guitar", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:barbershop", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :forklift", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:barbershop", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:greenhouse, nursery, glasshouse", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:barbershop", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:hair spray", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:barbershop", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:wagon-waggon:cart:jinrikisha, ricksha, rickshaw", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:barbershop", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:coat:lab coat, laboratory coat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:barbershop", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:area:patio, terrace", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:barbershop", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:restaurant, eating house, eating place, eatery", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:barbershop", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:system:communication s:telecommunicati:television, television system", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:barbershop", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:tobacco shop, tobacconist shop, tobacconist", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:barbershop", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:toyshop", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:barbershop", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:movable barrier:gate:turnstile", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:barbershop", "at": "root:entity:abstraction-abs:communication:sign:street sign", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:barbershop", "at": "root:entity:physical entity:matter:substance:food-nutrient:fare:menu", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:farm building:barn", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:otter", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:farm building:barn", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:farm building:barn", "oc": 48}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:farm building:barn", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:restaurant, eating house, eating place, eatery", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:barometer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:barometer", "oc": 43}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:barometer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:top-cover:cap:bottlecap", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:barometer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:watch-ticker:digital watch", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:barometer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:navigational in:compass:magnetic compass", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:barometer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:scale, weighing machine", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:barometer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:analog computer:slide rule, slipstick", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:barometer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:clock:wall clock", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:barrel, cask", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bin:ashcan, trash can, garbage can, wastebin, ash bin, ash-bin, ashbin, dustbin, trash barrel, trash bin", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:barrel, cask", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:barrel, cask", "oc": 26}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:barrel, cask", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:binoculars, field glasses, opera glasses", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:barrel, cask", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pot:caldron, cauldron", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:barrel, cask", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:envelope", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:barrel, cask", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:hair spray", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:barrel, cask", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cosmetic:makeup-make-up-:lipstick, lip rouge", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:barrel, cask", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:can-tin-tin can:milk can", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:barrel, cask", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:filter:oil filter", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:barrel, cask", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:pot, flowerpot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:barrel, cask", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:excavation:pool:cistern:rain barrel", "oc": 10}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:barrel, cask", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:shoe shop, shoe-shop, shoe store", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:barrel, cask", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dispenser:soap dispenser", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:barrel, cask", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:boat:motorboat-power:speedboat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:barrel, cask", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cream-ointment-:sunscreen, sunblock, sun blocker", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:barrel, cask", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:jar:vase", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:handcart-pushca:barrow, garden cart, lawn cart, wheelbarrow", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Rottweiler", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:handcart-pushca:barrow, garden cart, lawn cart, wheelbarrow", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:echinoderm:starfish, sea star", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:handcart-pushca:barrow, garden cart, lawn cart, wheelbarrow", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:barrel, cask", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:handcart-pushca:barrow, garden cart, lawn cart, wheelbarrow", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:handcart-pushca:barrow, garden cart, lawn cart, wheelbarrow", "oc": 35}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:handcart-pushca:barrow, garden cart, lawn cart, wheelbarrow", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:boat:small boat:canoe", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:handcart-pushca:barrow, garden cart, lawn cart, wheelbarrow", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:staff:crutch", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:handcart-pushca:barrow, garden cart, lawn cart, wheelbarrow", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:coat:fur coat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:handcart-pushca:barrow, garden cart, lawn cart, wheelbarrow", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:piano-pianofort:grand piano, grand", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:handcart-pushca:barrow, garden cart, lawn cart, wheelbarrow", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:farm machine:harvester, reaper", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:handcart-pushca:barrow, garden cart, lawn cart, wheelbarrow", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:garden tool-law:lawn mower, mower", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:handcart-pushca:barrow, garden cart, lawn cart, wheelbarrow", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:marimba, xylophone", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:handcart-pushca:barrow, garden cart, lawn cart, wheelbarrow", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:area:patio, terrace", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:handcart-pushca:barrow, garden cart, lawn cart, wheelbarrow", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:pot, flowerpot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:handcart-pushca:barrow, garden cart, lawn cart, wheelbarrow", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:institution:penal instituti:correctional in:prison, prison house", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:handcart-pushca:barrow, garden cart, lawn cart, wheelbarrow", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:tricycle, trike, velocipede", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:handcart-pushca:barrow, garden cart, lawn cart, wheelbarrow", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:banana", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:baseball equipm:baseball", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:gastropod-univa:snail", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:baseball equipm:baseball", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:baseball equipm:baseball", "oc": 36}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:baseball equipm:baseball", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:chainlink fence", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:baseball equipm:baseball", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:drum, membranophone, tympan", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:baseball equipm:baseball", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:garden tool-law:lawn mower, mower", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:baseball equipm:baseball", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:sports implemen:racket, racquet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:baseball equipm:baseball", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:rugby ball", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:baseball equipm:baseball", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:swing", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:baseball equipm:baseball", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:volleyball", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:baseball equipm:baseball", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:person-individu:contestant:player-particip:ballplayer, baseball player", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:basketball equi:basketball", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:basketball equi:basketball", "oc": 42}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:basketball equi:basketball", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:bicycle-bike-wh:bicycle-built-for-two, tandem bicycle, tandem", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:basketball equi:basketball", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:drum, membranophone, tympan", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:basketball equi:basketball", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:rugby ball", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:basketball equi:basketball", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:volleyball", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:baby bed-babys :bassinet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:baby bed-babys :bassinet", "oc": 35}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:baby bed-babys :bassinet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:baby bed-babys :cradle", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:baby bed-babys :bassinet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:baby bed-babys :crib, cot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:baby bed-babys :bassinet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:diaper, nappy, napkin", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:baby bed-babys :bassinet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:basket-handbask:hamper", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:baby bed-babys :bassinet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:top-cover:cap:nipple", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:baby bed-babys :bassinet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:printer-printin:printer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:baby bed-babys :bassinet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:cap:shower cap", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:baby bed-babys :bassinet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:sleeping bag", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:baby bed-babys :bassinet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:vacuum, vacuum cleaner", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:beating-reed in:double-reed ins:bassoon", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:beating-reed in:double-reed ins:bassoon", "oc": 37}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:beating-reed in:double-reed ins:bassoon", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:bowed stringed :cello, violoncello", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:beating-reed in:double-reed ins:bassoon", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:chest", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:beating-reed in:double-reed ins:bassoon", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:staff:crutch", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:beating-reed in:double-reed ins:bassoon", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:drum, membranophone, tympan", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:beating-reed in:double-reed ins:bassoon", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:writing impleme:pen:fountain pen", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:beating-reed in:double-reed ins:bassoon", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:beating-reed in:double-reed ins:oboe, hautboy, hautbois", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:beating-reed in:double-reed ins:bassoon", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:beating-reed in:single-reed ins:sax, saxophone", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:beating-reed in:double-reed ins:bassoon", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:shovel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:beating-reed in:double-reed ins:bassoon", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:brass-brass ins:trombone", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:cap:bathing cap, swimming cap", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:cap:bathing cap, swimming cap", "oc": 33}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:cap:bathing cap, swimming cap", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bathtub, bathing tub, bath, tub", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:cap:bathing cap, swimming cap", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:armor-armour:body armor-body:chain mail, ring mail, mail, chain armor, chain armour, ring armor, ring armour", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:cap:bathing cap, swimming cap", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:marketplace-mar:grocery store, grocery, food market, market", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:cap:bathing cap, swimming cap", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:swimsuit-swimwe:maillot, tank suit", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:cap:bathing cap, swimming cap", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:cap:mortarboard", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:cap:bathing cap, swimming cap", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:oar:paddle, boat paddle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:cap:bathing cap, swimming cap", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:rod:pole", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:cap:bathing cap, swimming cap", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:sports implemen:racket, racquet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:cap:bathing cap, swimming cap", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:cap:shower cap", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:cap:bathing cap, swimming cap", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:breathing devic:snorkel", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:cap:bathing cap, swimming cap", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:warship-war ves:submersible-sub:submarine, pigboat, sub, U-boat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:cap:bathing cap, swimming cap", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:spectacles-spec:sunglasses, dark glasses, shades", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:cap:bathing cap, swimming cap", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:tub, vat", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:towel:bath towel", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:greyhound:Italian greyhound", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:towel:bath towel", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:golden retriever", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:towel:bath towel", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:rodent-gnawer:cavy:guinea pig, Cavia cobaya", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:towel:bath towel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:protective garm:apron", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:towel:bath towel", "at": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:towel:bath towel", "oc": 25}, {"rt": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:towel:bath towel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bathtub, bathing tub, bath, tub", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:towel:bath towel", "at": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:bib", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:towel:bath towel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:bonnet, poke bonnet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:towel:bath towel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloak", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:towel:bath towel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:diaper, nappy, napkin", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:towel:bath towel", "at": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:handkerchief, hankie, hanky, hankey", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:towel:bath towel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:apparel-wearing:workwear:jean, blue jean, denim", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:towel:bath towel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shade:lampshade, lamp shade", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:towel:bath towel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:top-cover:cap:nipple", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:towel:bath towel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:pencil box, pencil case", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:towel:bath towel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:padding-cushion:cushion:pillow", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:towel:bath towel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloth covering:bedclothes-bed :quilt, comforter, comfort, puff", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:towel:bath towel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:sweater-jumper:pullover-slipov:sweatshirt", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:towel:bath towel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:wardrobe, closet, press", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:towel:bath towel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:rail fence:worm fence, snake fence, snake-rail fence, Virginia fence", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bathtub, bathing tub, bath, tub", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:golden retriever", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bathtub, bathing tub, bath, tub", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:domestic cat-ho:Siamese cat, Siamese", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bathtub, bathing tub, bath, tub", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:amphibian, amphibious vehicle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bathtub, bathing tub, bath, tub", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bathtub, bathing tub, bath, tub", "oc": 21}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bathtub, bathing tub, bath, tub", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bucket, pail", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bathtub, bathing tub, bath, tub", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:knife:cleaver, meat cleaver, chopper", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bathtub, bathing tub, bath, tub", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:diaper, nappy, napkin", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bathtub, bathing tub, bath, tub", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:watch-ticker:digital watch", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bathtub, bathing tub, bath, tub", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:staff:flagpole, flagstaff", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bathtub, bathing tub, bath, tub", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:helmet:football helmet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bathtub, bathing tub, bath, tub", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:golfcart, golf cart", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bathtub, bathing tub, bath, tub", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:free-reed instr:harmonica, mouth organ, harp, mouth harp", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bathtub, bathing tub, bath, tub", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:iron, smoothing iron", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bathtub, bathing tub, bath, tub", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:blind-screen:curtain-drape-d:shower curtain", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bathtub, bathing tub, bath, tub", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:swimsuit-swimwe:swimming trunks, bathing trunks", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bathtub, bathing tub, bath, tub", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:tub, vat", "oc": 12}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bathtub, bathing tub, bath, tub", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:basin:washbasin, handbasin, washbowl, lavabo, wash-hand basin", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bathtub, bathing tub, bath, tub", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:article:ware:tableware:cutlery-eating :spoon:wooden spoon", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bathtub, bathing tub, bath, tub", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:artichoke, globe artichoke", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:beach wagon, station wagon, wagon, estate car, beach waggon, station waggon, waggon", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:ambulance", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:beach wagon, station wagon, wagon, estate car, beach waggon, station waggon, waggon", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:beach wagon, station wagon, wagon, estate car, beach waggon, station waggon, waggon", "oc": 31}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:beach wagon, station wagon, wagon, estate car, beach waggon, station waggon, waggon", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:cab, hack, taxi, taxicab", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:beach wagon, station wagon, wagon, estate car, beach waggon, station waggon, waggon", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:machine-simple :wheel:car wheel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:beach wagon, station wagon, wagon, estate car, beach waggon, station waggon, waggon", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:convertible", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:beach wagon, station wagon, wagon, estate car, beach waggon, station waggon, waggon", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:grate-grating:grille, radiator grille", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:beach wagon, station wagon, wagon, estate car, beach waggon, station waggon, waggon", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:limousine, limo", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:beach wagon, station wagon, wagon, estate car, beach waggon, station waggon, waggon", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:van:passenger van:minivan", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:beach wagon, station wagon, wagon, estate car, beach waggon, station waggon, waggon", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:pickup, pickup truck", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:beach wagon, station wagon, wagon, estate car, beach waggon, station waggon, waggon", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:van:police van, police wagon, paddy wagon, patrol wagon, wagon, black Maria", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:beach wagon, station wagon, wagon, estate car, beach waggon, station waggon, waggon", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:institution:penal instituti:correctional in:prison, prison house", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:beach wagon, station wagon, wagon, estate car, beach waggon, station waggon, waggon", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:sports car, sport car", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:beach wagon, station wagon, wagon, estate car, beach waggon, station waggon, waggon", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:aircraft:heavier-than-ai:warplane, military plane", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:tower:beacon, lighthouse, beacon light, pharos", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:tower:beacon, lighthouse, beacon light, pharos", "oc": 35}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:tower:beacon, lighthouse, beacon light, pharos", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:breakwater, groin, groyne, mole, bulwark, seawall, jetty", "oc": 5}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:tower:beacon, lighthouse, beacon light, pharos", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:coil, spiral, volute, whorl, helix", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:tower:beacon, lighthouse, beacon light, pharos", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:dam, dike, dyke", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:tower:beacon, lighthouse, beacon light, pharos", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:memorial-monume:megalith, megalithic structure", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:tower:beacon, lighthouse, beacon light, pharos", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:sailing vessel-:schooner", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:tower:beacon, lighthouse, beacon light, pharos", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electronic devi:display-video d:screen, CRT screen", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:tower:beacon, lighthouse, beacon light, pharos", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:warship-war ves:submersible-sub:submarine, pigboat, sub, U-boat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:tower:beacon, lighthouse, beacon light, pharos", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:bridge-span:suspension bridge", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:tower:beacon, lighthouse, beacon light, pharos", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:trailer truck, tractor trailer, trucking rig, rig, articulated lorry, semi", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:tower:beacon, lighthouse, beacon light, pharos", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:tank-storage ta:reservoir:water tower", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:tower:beacon, lighthouse, beacon light, pharos", "at": "root:entity:physical entity:object-physical:geological form:natural elevati:promontory, headland, head, foreland", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:jar:beaker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:jar:beaker", "oc": 27}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:jar:beaker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:glass-drinking :beer glass", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:jar:beaker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:candle, taper, wax light", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:jar:beaker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:coat:lab coat, laboratory coat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:jar:beaker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:ladle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:jar:beaker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:measure:measuring cup", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:jar:beaker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dish:bowl:mixing bowl", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:jar:beaker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:perfume, essence", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:jar:beaker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dish:Petri dish", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:jar:beaker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:ping-pong ball", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:jar:beaker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:pop bottle, soda bottle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:jar:beaker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:turner-food tur:spatula", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:jar:beaker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:medical instrum:syringe", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:jar:beaker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:piano-pianofort:upright, upright piano", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:jar:beaker", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:soup:consomme", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:jar:beaker", "at": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:wine-vino:red wine", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:jar:beaker", "at": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:mixed drink:punch:eggnog", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:bearskin, busby, shako", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:bearskin, busby, shako", "oc": 42}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:bearskin, busby, shako", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:cowboy hat, ten-gallon hat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:bearskin, busby, shako", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:drum, membranophone, tympan", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:bearskin, busby, shako", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:uniform:military uniform", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:bearskin, busby, shako", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:house:residence:religious resid:monastery", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:bearskin, busby, shako", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shield:plate-scale-she:armor plate-arm:helmet:pickelhaube", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:bearskin, busby, shako", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:arch:triumphal arch", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:bearskin, busby, shako", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:outerwear-overc:gown-robe:vestment", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:bearskin, busby, shako", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:person-individu:peer-equal-matc:associate:participant:groom, bridegroom", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:beer bottle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:beer bottle", "oc": 33}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:beer bottle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:glass-drinking :beer glass", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:beer bottle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:cannon", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:beer bottle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:opener:bottle opener:corkscrew, bottle screw", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:beer bottle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:folding chair", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:beer bottle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:marketplace-mar:grocery store, grocery, food market, market", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:beer bottle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cosmetic:makeup-make-up-:lipstick, lip rouge", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:beer bottle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:pill bottle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:beer bottle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:pop bottle, soda bottle", "oc": 5}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:beer bottle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:drill:power drill", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:beer bottle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:signboard-sign:scoreboard", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:beer bottle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:screwdriver", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:beer bottle", "at": "root:entity:abstraction-abs:communication:signal-signalin:visual signal:light:traffic light, traffic signal, stoplight", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:beer bottle", "at": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:mixed drink:punch:eggnog", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:glass-drinking :beer glass", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:jar:beaker", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:glass-drinking :beer glass", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:beer bottle", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:glass-drinking :beer glass", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:glass-drinking :beer glass", "oc": 33}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:glass-drinking :beer glass", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:candle, taper, wax light", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:glass-drinking :beer glass", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:glass-drinking :goblet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:glass-drinking :beer glass", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:lighter, light, igniter, ignitor", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:glass-drinking :beer glass", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:measure:measuring cup", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:glass-drinking :beer glass", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:applicator-appl:paintbrush", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:glass-drinking :beer glass", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:perfume, essence", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:glass-drinking :beer glass", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:pop bottle, soda bottle", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:glass-drinking :beer glass", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:restaurant, eating house, eating place, eatery", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:glass-drinking :beer glass", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:water bottle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:glass-drinking :beer glass", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:wine bottle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:glass-drinking :beer glass", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:soup:consomme", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:glass-drinking :beer glass", "at": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:mixed drink:punch:cup", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:bell cote, bell cot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:clock:analog clock", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:bell cote, bell cot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:bell cote, bell cot", "oc": 31}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:bell cote, bell cot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:defensive struc:fortification-m:castle", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:bell cote, bell cot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:chime, bell, gong", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:bell cote, bell cot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:place of worshi:church, church building", "oc": 6}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:bell cote, bell cot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:instrument of e:guillotine", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:bell cote, bell cot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:house:residence:religious resid:monastery", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:bell cote, bell cot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:column-pillar:obelisk", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:bell cote, bell cot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:picket fence, paling", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:bell cote, bell cot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:place of worshi:shrine:stupa, tope", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:bell cote, bell cot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:roof:tile roof", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:bib", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:protective garm:apron", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:bib", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:baby bed-babys :bassinet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:bib", "at": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:towel:bath towel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:bib", "at": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:bib", "oc": 29}, {"rt": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:bib", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:bonnet, poke bonnet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:bib", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:candle, taper, wax light", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:bib", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:diaper, nappy, napkin", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:bib", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:envelope", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:bib", "at": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:handkerchief, hankie, hanky, hankey", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:bib", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:free-reed instr:harmonica, mouth organ, harp, mouth harp", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:bib", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:shirt:jersey, T-shirt, tee shirt", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:bib", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:top-cover:cap:nipple", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:bib", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:sharpener:pencil sharpener", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:bib", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:padding-cushion:cushion:pillow", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:bib", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:cloak:poncho", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:bib", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:purse", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:bib", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:spectacles-spec:sunglasses, dark glasses, shades", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:bib", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:swing", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:bib", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:dessert-sweet-a:frozen dessert:ice lolly, lolly, lollipop, popsicle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:bicycle-bike-wh:bicycle-built-for-two, tandem bicycle, tandem", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:bicycle-bike-wh:bicycle-built-for-two, tandem bicycle, tandem", "oc": 44}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:bicycle-bike-wh:bicycle-built-for-two, tandem bicycle, tandem", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:staff:crutch", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:bicycle-bike-wh:bicycle-built-for-two, tandem bicycle, tandem", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:wagon-waggon:cart:jinrikisha, ricksha, rickshaw", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:bicycle-bike-wh:bicycle-built-for-two, tandem bicycle, tandem", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:motorcycle-bike:minibike-motorb:moped", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:bicycle-bike-wh:bicycle-built-for-two, tandem bicycle, tandem", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:tricycle, trike, velocipede", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:bicycle-bike-wh:bicycle-built-for-two, tandem bicycle, tandem", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:screen:window screen", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:swimsuit-swimwe:bikini, two-piece", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:Labrador retriever", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:swimsuit-swimwe:bikini, two-piece", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:cap:bathing cap, swimming cap", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:swimsuit-swimwe:bikini, two-piece", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:swimsuit-swimwe:bikini, two-piece", "oc": 29}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:swimsuit-swimwe:bikini, two-piece", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:undergarment-un:brassiere, bra, bandeau", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:swimsuit-swimwe:bikini, two-piece", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:blower:hand blower, blow dryer, blow drier, hair dryer, hair drier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:swimsuit-swimwe:bikini, two-piece", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:footwear:hosiery-hose:tights-leotards:maillot", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:swimsuit-swimwe:bikini, two-piece", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:maraca", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:swimsuit-swimwe:bikini, two-piece", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:institution:penal instituti:correctional in:prison, prison house", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:swimsuit-swimwe:bikini, two-piece", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:breathing devic:snorkel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:swimsuit-swimwe:bikini, two-piece", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:optical device:lens-lense-lens:converging lens:sunglass", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:swimsuit-swimwe:bikini, two-piece", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:swimsuit-swimwe:swimming trunks, bathing trunks", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:swimsuit-swimwe:bikini, two-piece", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:tub, vat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:swimsuit-swimwe:bikini, two-piece", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:volleyball", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:swimsuit-swimwe:bikini, two-piece", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:attire-garb-dre:hairpiece-false:wig", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:swimsuit-swimwe:bikini, two-piece", "at": "root:entity:physical entity:object-physical:geological form:shore:seashore, coast, seacoast, sea-coast", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:binder, ring-binder", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:backpack, back pack, knapsack, packsack, rucksack, haversack", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:binder, ring-binder", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:binder, ring-binder", "oc": 30}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:binder, ring-binder", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:carton", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:binder, ring-binder", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:theater-theatre:cinema, movie theater, movie theatre, movie house, picture palace", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:binder, ring-binder", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:desktop computer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:binder, ring-binder", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:envelope", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:binder, ring-binder", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:writing impleme:pen:fountain pen", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:binder, ring-binder", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:memory device-s:magnetic disk-m:hard disc, hard disk, fixed disk", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:binder, ring-binder", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electrical devi:transducer:electro-acousti:loudspeaker, speaker, speaker unit, loudspeaker system, speaker system", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:binder, ring-binder", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:scientific inst:magnifier:microscope:light microscop:hand glass-simp:loupe, jeweler's loupe", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:binder, ring-binder", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:mailbag, postbag", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:binder, ring-binder", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:package-parcel:packet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:binder, ring-binder", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:apparatus-setup:duplicator-copi:photocopier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:binder, ring-binder", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:eraser:rubber eraser, rubber, pencil eraser", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:binder, ring-binder", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:case:wallet, billfold, notecase, pocketbook", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:binder, ring-binder", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:wrapping-wrap-w:jacket:book jacket, dust cover, dust jacket, dust wrapper", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:binoculars, field glasses, opera glasses", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:aquatic mammal:cetacean-cetace:whale:toothed whale:dolphin:killer whale, killer, orca, grampus, sea wolf, Orcinus orca", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:binoculars, field glasses, opera glasses", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke:macaque", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:binoculars, field glasses, opera glasses", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:bannister, banister, balustrade, balusters, handrail", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:binoculars, field glasses, opera glasses", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:barbershop", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:binoculars, field glasses, opera glasses", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:barrel, cask", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:binoculars, field glasses, opera glasses", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:binoculars, field glasses, opera glasses", "oc": 29}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:binoculars, field glasses, opera glasses", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:sled-sledge-sle:bobsled, bobsleigh, bob", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:binoculars, field glasses, opera glasses", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:buckle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:binoculars, field glasses, opera glasses", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:cannon", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:binoculars, field glasses, opera glasses", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:landing-landing:dock, dockage, docking facility", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:binoculars, field glasses, opera glasses", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:free-reed instr:harmonica, mouth organ, harp, mouth harp", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:binoculars, field glasses, opera glasses", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:control-control:joystick", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:binoculars, field glasses, opera glasses", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:protective garm:knee pad", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:binoculars, field glasses, opera glasses", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:marimba, xylophone", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:binoculars, field glasses, opera glasses", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:rocket-projecti:missile", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:binoculars, field glasses, opera glasses", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:timer:parking meter", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:binoculars, field glasses, opera glasses", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:racer, race car, racing car", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:binoculars, field glasses, opera glasses", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cream-ointment-:sunscreen, sunblock, sun blocker", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:binoculars, field glasses, opera glasses", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:bridge-span:suspension bridge", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:binoculars, field glasses, opera glasses", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:cap:thimble", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:binoculars, field glasses, opera glasses", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:support:rack-stand:tripod", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:binoculars, field glasses, opera glasses", "at": "root:entity:physical entity:object-physical:geological form:natural elevati:promontory, headland, head, foreland", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:birdhouse", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:finch:house finch, linnet, Carpodacus mexicanus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:birdhouse", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:birdhouse", "oc": 44}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:birdhouse", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:bedroom furnitu:bed:four-poster", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:birdhouse", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:instrument of e:guillotine", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:birdhouse", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:nail", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:birdhouse", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:hip, rose hip, rosehip", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:birdhouse", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:fungus:bolete", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:outbuilding:shed:boathouse", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:farm building:barn", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:outbuilding:shed:boathouse", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:outbuilding:shed:boathouse", "oc": 39}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:outbuilding:shed:boathouse", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:breakwater, groin, groyne, mole, bulwark, seawall, jetty", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:outbuilding:shed:boathouse", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:table:dining table, board", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:outbuilding:shed:boathouse", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:landing-landing:dock, dockage, docking facility", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:outbuilding:shed:boathouse", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:support:pier", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:outbuilding:shed:boathouse", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :recreational vehicle, RV, R.V.", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:outbuilding:shed:boathouse", "at": "root:entity:physical entity:object-physical:geological form:shore:lakeside, lakeshore", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:sled-sledge-sle:bobsled, bobsleigh, bob", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:ambulance", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:sled-sledge-sle:bobsled, bobsleigh, bob", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:sled-sledge-sle:bobsled, bobsleigh, bob", "oc": 41}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:sled-sledge-sle:bobsled, bobsleigh, bob", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:dam, dike, dyke", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:sled-sledge-sle:bobsled, bobsleigh, bob", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:helmet:football helmet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:sled-sledge-sle:bobsled, bobsleigh, bob", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:racer, race car, racing car", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:sled-sledge-sle:bobsled, bobsleigh, bob", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :tracked vehicle:snowmobile", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:sled-sledge-sle:bobsled, bobsleigh, bob", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:boat:motorboat-power:speedboat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:sled-sledge-sle:bobsled, bobsleigh, bob", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:litter:stretcher", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:neckwear:necktie-tie:bolo tie, bolo, bola tie, bola", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:neckwear:necktie-tie:bolo tie, bolo, bola tie, bola", "oc": 39}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:neckwear:necktie-tie:bolo tie, bolo, bola tie, bola", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:buckle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:neckwear:necktie-tie:bolo tie, bolo, bola tie, bola", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:chime, bell, gong", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:neckwear:necktie-tie:bolo tie, bolo, bola tie, bola", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:hook, claw", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:neckwear:necktie-tie:bolo tie, bolo, bola tie, bola", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:coat:lab coat, laboratory coat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:neckwear:necktie-tie:bolo tie, bolo, bola tie, bola", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:knife:letter opener, paper knife, paperknife", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:neckwear:necktie-tie:bolo tie, bolo, bola tie, bola", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:ocarina, sweet potato", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:neckwear:necktie-tie:bolo tie, bolo, bola tie, bola", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:sheath:scabbard", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:neckwear:necktie-tie:bolo tie, bolo, bola tie, bola", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:toyshop", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:neckwear:necktie-tie:bolo tie, bolo, bola tie, bola", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:mushroom", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:bonnet, poke bonnet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:neckwear:necktie-tie:bolo tie, bolo, bola tie, bola", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:bonnet, poke bonnet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:bonnet, poke bonnet", "oc": 36}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:bonnet, poke bonnet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:armor-armour:body armor-body:chain mail, ring mail, mail, chain armor, chain armour, ring armor, ring armour", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:bonnet, poke bonnet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:footwear:hosiery-hose:stocking:Christmas stocking", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:bonnet, poke bonnet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:cowboy hat, ten-gallon hat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:bonnet, poke bonnet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:support:structural memb:upright-vertica:post:maypole", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:bonnet, poke bonnet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:handwear-hand w:glove:mitten", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:bonnet, poke bonnet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:cloak:poncho", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:bonnet, poke bonnet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:purse", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:bonnet, poke bonnet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:footwear:hosiery-hose:sock", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:bonnet, poke bonnet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:sombrero", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:bonnet, poke bonnet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:swing", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:bonnet, poke bonnet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:tricycle, trike, velocipede", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:bookcase", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:bookcase", "oc": 31}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:bookcase", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:bookshop, bookstore, bookstall", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:bookcase", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:chest", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:bookcase", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:chest of drawer:chiffonier, commode", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:bookcase", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:cabinet:china cabinet, china closet", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:bookcase", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:wall unit:entertainment center", "oc": 5}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:bookcase", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:bedroom furnitu:bed:four-poster", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:bookcase", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:library", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:bookcase", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:cabinet:medicine chest, medicine cabinet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:bookcase", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:sofa-couch-loun:convertible-sof:studio couch, day bed", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:bookcase", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:wrapping-wrap-w:jacket:book jacket, dust cover, dust jacket, dust wrapper", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:bookshop, bookstore, bookstall", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:domestic cat-ho:Persian cat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:bookshop, bookstore, bookstall", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:bakery, bakeshop, bakehouse", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:bookshop, bookstore, bookstall", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:barbershop", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:bookshop, bookstore, bookstall", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:bookshop, bookstore, bookstall", "oc": 24}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:bookshop, bookstore, bookstall", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:theater-theatre:cinema, movie theater, movie theatre, movie house, picture palace", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:bookshop, bookstore, bookstall", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:confectionery, confectionary, candy store", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:bookshop, bookstore, bookstall", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:table:desk", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:bookshop, bookstore, bookstall", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:marketplace-mar:grocery store, grocery, food market, market", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:bookshop, bookstore, bookstall", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:sandglass:hourglass", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:bookshop, bookstore, bookstall", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:library", "oc": 7}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:bookshop, bookstore, bookstall", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:cabinet:medicine chest, medicine cabinet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:bookshop, bookstore, bookstall", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:package-parcel:packet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:bookshop, bookstore, bookstall", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:restaurant, eating house, eating place, eatery", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:bookshop, bookstore, bookstall", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:sarong", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:bookshop, bookstore, bookstall", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:blind-screen:curtain-drape-d:shower curtain", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:bookshop, bookstore, bookstall", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:tobacco shop, tobacconist shop, tobacconist", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:bookshop, bookstore, bookstall", "at": "root:entity:abstraction-abs:communication:sign:street sign", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:top-cover:cap:bottlecap", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:chiton, coat-of-mail shell, sea cradle, polyplacophore", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:top-cover:cap:bottlecap", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:beer bottle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:top-cover:cap:bottlecap", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:top-cover:cap:bottlecap", "oc": 32}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:top-cover:cap:bottlecap", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:opener:can opener, tin opener", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:top-cover:cap:bottlecap", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:power tool:power saw-saw-s:chain saw, chainsaw", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:top-cover:cap:bottlecap", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:opener:bottle opener:corkscrew, bottle screw", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:top-cover:cap:bottlecap", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cosmetic:makeup-make-up-:face powder", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:top-cover:cap:bottlecap", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:basket-handbask:hamper", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:top-cover:cap:bottlecap", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:game:puzzle:jigsaw puzzle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:top-cover:cap:bottlecap", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:decoration-orna:adornment:jewelry-jewelle:necklace", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:top-cover:cap:bottlecap", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:pill bottle", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:top-cover:cap:bottlecap", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:machine-simple :wheel:pinwheel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:top-cover:cap:bottlecap", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:white goods:refrigerator, icebox", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:top-cover:cap:bottlecap", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:measuring stick:rule, ruler", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:bow", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:binoculars, field glasses, opera glasses", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:bow", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:bow", "oc": 32}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:bow", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:gymnastic appar:horizontal bar, high bar", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:bow", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:support:structural memb:upright-vertica:post:maypole", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:bow", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:miniskirt, mini", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:bow", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:bicycle-bike-wh:mountain bike, all-terrain bike, off-roader", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:bow", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:decoration-orna:adornment:jewelry-jewelle:necklace", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:bow", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:rescue equipmen:parachute, chute", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:bow", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:gymnastic appar:parallel bars, bars", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:bow", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:supporting stru:support:pedestal, plinth, footstall", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:bow", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:beating-reed in:single-reed ins:sax, saxophone", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:bow", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:armor-armour:shield, buckler", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:bow", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:shovel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:bow", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:runner:ski", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:bow", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:swing", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:bow", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:support:rack-stand:tripod", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:bow", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:bowed stringed :violin, fiddle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:neckwear:necktie-tie:bow tie, bow-tie, bowtie", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bathtub, bathing tub, bath, tub", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:neckwear:necktie-tie:bow tie, bow-tie, bowtie", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:bearskin, busby, shako", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:neckwear:necktie-tie:bow tie, bow-tie, bowtie", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:neckwear:necktie-tie:bow tie, bow-tie, bowtie", "oc": 35}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:neckwear:necktie-tie:bow tie, bow-tie, bowtie", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:buckle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:neckwear:necktie-tie:bow tie, bow-tie, bowtie", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:candle, taper, wax light", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:neckwear:necktie-tie:bow tie, bow-tie, bowtie", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:staff:crutch", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:neckwear:necktie-tie:bow tie, bow-tie, bowtie", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:footwear:hosiery-hose:tights-leotards:maillot", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:neckwear:necktie-tie:bow tie, bow-tie, bowtie", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:uniform:military uniform", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:neckwear:necktie-tie:bow tie, bow-tie, bowtie", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:portable comput:notebook, notebook computer", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:neckwear:necktie-tie:bow tie, bow-tie, bowtie", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:nightwear-sleep:pajama, pyjama, pj's, jammies", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:neckwear:necktie-tie:bow tie, bow-tie, bowtie", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:safety belt-lif:seat belt, seatbelt", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:neckwear:necktie-tie:bow tie, bow-tie, bowtie", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:suit, suit of clothes", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:neckwear:necktie-tie:bow tie, bow-tie, bowtie", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:person-individu:peer-equal-matc:associate:participant:groom, bridegroom", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:memorial-monume:brass, memorial tablet, plaque", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:top-cover:cap:bottlecap", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:memorial-monume:brass, memorial tablet, plaque", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:memorial-monume:brass, memorial tablet, plaque", "oc": 45}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:memorial-monume:brass, memorial tablet, plaque", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:buckle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:memorial-monume:brass, memorial tablet, plaque", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:portable comput:notebook, notebook computer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:memorial-monume:brass, memorial tablet, plaque", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:signboard-sign:scoreboard", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:memorial-monume:brass, memorial tablet, plaque", "at": "root:entity:physical entity:matter:substance:food-nutrient:fare:menu", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:undergarment-un:brassiere, bra, bandeau", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crayfish, crawfish, crawdad, crawdaddy", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:undergarment-un:brassiere, bra, bandeau", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:gymnastic appar:balance beam, beam", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:undergarment-un:brassiere, bra, bandeau", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloth covering:dressing-medica:bandage-patch:adhesive bandag:Band Aid", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:undergarment-un:brassiere, bra, bandeau", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bathtub, bathing tub, bath, tub", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:undergarment-un:brassiere, bra, bandeau", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:swimsuit-swimwe:bikini, two-piece", "oc": 5}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:undergarment-un:brassiere, bra, bandeau", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:neckwear:necktie-tie:bow tie, bow-tie, bowtie", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:undergarment-un:brassiere, bra, bandeau", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:undergarment-un:brassiere, bra, bandeau", "oc": 26}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:undergarment-un:brassiere, bra, bandeau", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:sweater-jumper:cardigan", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:undergarment-un:brassiere, bra, bandeau", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:sheath:holster", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:undergarment-un:brassiere, bra, bandeau", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:footwear:hosiery-hose:tights-leotards:maillot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:undergarment-un:brassiere, bra, bandeau", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:strengthener-re:brace:neck brace", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:undergarment-un:brassiere, bra, bandeau", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:drill:power drill", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:undergarment-un:brassiere, bra, bandeau", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:printer-printin:printer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:undergarment-un:brassiere, bra, bandeau", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloth covering:bedclothes-bed :quilt, comforter, comfort, puff", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:undergarment-un:brassiere, bra, bandeau", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:shoe shop, shoe-shop, shoe store", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:undergarment-un:brassiere, bra, bandeau", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:medical instrum:stethoscope", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:undergarment-un:brassiere, bra, bandeau", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:swimsuit-swimwe:swimming trunks, bathing trunks", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:undergarment-un:brassiere, bra, bandeau", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:plaything-toy:teddy, teddy bear", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:undergarment-un:brassiere, bra, bandeau", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:system:communication s:telecommunicati:television, television system", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:undergarment-un:brassiere, bra, bandeau", "at": "root:entity:abstraction-abs:communication:signal-signalin:visual signal:light:traffic light, traffic signal, stoplight", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:breakwater, groin, groyne, mole, bulwark, seawall, jetty", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:bannister, banister, balustrade, balusters, handrail", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:breakwater, groin, groyne, mole, bulwark, seawall, jetty", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:tower:beacon, lighthouse, beacon light, pharos", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:breakwater, groin, groyne, mole, bulwark, seawall, jetty", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:breakwater, groin, groyne, mole, bulwark, seawall, jetty", "oc": 34}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:breakwater, groin, groyne, mole, bulwark, seawall, jetty", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:boat:small boat:canoe", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:breakwater, groin, groyne, mole, bulwark, seawall, jetty", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:dam, dike, dyke", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:breakwater, groin, groyne, mole, bulwark, seawall, jetty", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:support:pier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:breakwater, groin, groyne, mole, bulwark, seawall, jetty", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:institution:penal instituti:correctional in:prison, prison house", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:breakwater, groin, groyne, mole, bulwark, seawall, jetty", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:stone wall", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:breakwater, groin, groyne, mole, bulwark, seawall, jetty", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:wreck", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:breakwater, groin, groyne, mole, bulwark, seawall, jetty", "at": "root:entity:physical entity:object-physical:geological form:cliff, drop, drop-off", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:breakwater, groin, groyne, mole, bulwark, seawall, jetty", "at": "root:entity:physical entity:object-physical:geological form:natural elevati:promontory, headland, head, foreland", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:breakwater, groin, groyne, mole, bulwark, seawall, jetty", "at": "root:entity:physical entity:object-physical:geological form:natural elevati:ridge:bar:sandbar, sand bar", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:breakwater, groin, groyne, mole, bulwark, seawall, jetty", "at": "root:entity:physical entity:object-physical:geological form:shore:seashore, coast, seacoast, sea-coast", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shield:plate-scale-she:armor plate-arm:breastplate, aegis, egis", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:gastropod-univa:conch", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shield:plate-scale-she:armor plate-arm:breastplate, aegis, egis", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:aquatic mammal:pinniped mammal:seal:eared seal:sea lion", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shield:plate-scale-she:armor plate-arm:breastplate, aegis, egis", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shield:plate-scale-she:armor plate-arm:breastplate, aegis, egis", "oc": 21}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shield:plate-scale-she:armor plate-arm:breastplate, aegis, egis", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pot:caldron, cauldron", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shield:plate-scale-she:armor plate-arm:breastplate, aegis, egis", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:armor-armour:body armor-body:chain mail, ring mail, mail, chain armor, chain armour, ring armor, ring armour", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shield:plate-scale-she:armor plate-arm:breastplate, aegis, egis", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloak", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shield:plate-scale-she:armor plate-arm:breastplate, aegis, egis", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:armor-armour:body armor-body:cuirass", "oc": 19}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shield:plate-scale-she:armor plate-arm:breastplate, aegis, egis", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:armor-armour:shield, buckler", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shield:plate-scale-she:armor plate-arm:breastplate, aegis, egis", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:heater-warmer:space heater", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:cleaning implem:broom", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:golden retriever", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:cleaning implem:broom", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:dictyopterous i:mantis, mantid", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:cleaning implem:broom", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke:marmoset", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:cleaning implem:broom", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:ambulance", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:cleaning implem:broom", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:cleaning implem:broom", "oc": 30}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:cleaning implem:broom", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloak", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:cleaning implem:broom", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:drumstick", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:cleaning implem:broom", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:hoopskirt, crinoline", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:cleaning implem:broom", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:maraca", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:cleaning implem:broom", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:matchstick", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:cleaning implem:broom", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:applicator-appl:paintbrush", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:cleaning implem:broom", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:plunger, plumber's helper", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:cleaning implem:broom", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:rotating mechan:circle-round:disk-disc:puck, hockey puck", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:cleaning implem:broom", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:winder:reel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:cleaning implem:broom", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:spindle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:cleaning implem:broom", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:cleaning implem:swab, swob, mop", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:cleaning implem:broom", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:roof:thatch, thatched roof", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bucket, pail", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bin:ashcan, trash can, garbage can, wastebin, ash bin, ash-bin, ashbin, dustbin, trash barrel, trash bin", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bucket, pail", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:barrel, cask", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bucket, pail", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:handcart-pushca:barrow, garden cart, lawn cart, wheelbarrow", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bucket, pail", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:baseball equipm:baseball", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bucket, pail", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bucket, pail", "oc": 27}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bucket, pail", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:shaker:cocktail shaker", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bucket, pail", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:drinking vessel:mug:coffee mug", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bucket, pail", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:cooker:Crock Pot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bucket, pail", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:croquet ball", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bucket, pail", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:brake:brake system-br:hydraulic brake:disk brake, disc brake", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bucket, pail", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:oven:Dutch oven", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bucket, pail", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:fountain", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bucket, pail", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:scientific inst:magnifier:microscope:light microscop:hand glass-simp:loupe, jeweler's loupe", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bucket, pail", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:maraca", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bucket, pail", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dish:bowl:mixing bowl", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bucket, pail", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:pot, flowerpot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bucket, pail", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:filter:strainer", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bucket, pail", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:cleaning implem:swab, swob, mop", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bucket, pail", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:support:rack-stand:tripod", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:buckle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:bearskin, busby, shako", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:buckle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:swimsuit-swimwe:bikini, two-piece", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:buckle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:neckwear:necktie-tie:bolo tie, bolo, bola tie, bola", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:buckle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:buckle", "oc": 22}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:buckle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:opener:can opener, tin opener", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:buckle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:sweater-jumper:cardigan", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:buckle", "at": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:dishrag, dishcloth", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:buckle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:clip:hair slide", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:buckle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:lighter, light, igniter, ignitor", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:buckle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:mailbag, postbag", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:buckle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:miniskirt, mini", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:buckle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:muzzle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:buckle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:decoration-orna:adornment:jewelry-jewelle:necklace", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:buckle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shield:plate-scale-she:armor plate-arm:helmet:pickelhaube", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:buckle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:sports implemen:racket, racquet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:buckle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:remote control, remote", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:buckle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:firearm-piece-s:pistol-handgun-:revolver, six-gun, six-shooter", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:buckle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:beating-reed in:single-reed ins:sax, saxophone", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:buckle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:sheath:scabbard", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:buckle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:armor-armour:shield, buckler", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:buckle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:handcart-pushca:shopping cart", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:buckle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:receptacle:tray", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:buckle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:fabric-cloth-ma:velvet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:buckle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:case:wallet, billfold, notecase, pocketbook", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:buckle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:acoustic device:whistle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:vest-waistcoat:bulletproof vest", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Belgian sheepdo:malinois", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:vest-waistcoat:bulletproof vest", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:firearm-piece-s:autoloader-self:automatic firea:automatic rifle:assault rifle, assault gun", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:vest-waistcoat:bulletproof vest", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:vest-waistcoat:bulletproof vest", "oc": 25}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:vest-waistcoat:bulletproof vest", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:armor-armour:body armor-body:chain mail, ring mail, mail, chain armor, chain armour, ring armor, ring armour", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:vest-waistcoat:bulletproof vest", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:protective garm:knee pad", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:vest-waistcoat:bulletproof vest", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:limousine, limo", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:vest-waistcoat:bulletproof vest", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:footwear:hosiery-hose:tights-leotards:maillot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:vest-waistcoat:bulletproof vest", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:uniform:military uniform", "oc": 8}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:vest-waistcoat:bulletproof vest", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:motor scooter, scooter", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:vest-waistcoat:bulletproof vest", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:drill:power drill", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:vest-waistcoat:bulletproof vest", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:institution:penal instituti:correctional in:prison, prison house", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:vest-waistcoat:bulletproof vest", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:firearm-piece-s:pistol-handgun-:revolver, six-gun, six-shooter", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:vest-waistcoat:bulletproof vest", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:armor-armour:shield, buckler", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:vest-waistcoat:bulletproof vest", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :locomotive-engi:steam locomotive", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:vest-waistcoat:bulletproof vest", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:litter:stretcher", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:vest-waistcoat:bulletproof vest", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:vacuum, vacuum cleaner", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:vest-waistcoat:bulletproof vest", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:jackfruit, jak, jack", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:public transpor:train-railroad :passenger train:bullet train, bullet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:public transpor:train-railroad :passenger train:bullet train, bullet", "oc": 47}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:public transpor:train-railroad :passenger train:bullet train, bullet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:weight-free wei:dumbbell", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:public transpor:train-railroad :passenger train:bullet train, bullet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:boat:sea boat:lifeboat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:public transpor:train-railroad :passenger train:bullet train, bullet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:passenger ship:liner, ocean liner", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:butcher shop, meat market", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:elapid-elapid s:cobra:Indian cobra, Naja naja", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:butcher shop, meat market", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:parrot:macaw", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:butcher shop, meat market", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crab:Dungeness crab, Cancer magister", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:butcher shop, meat market", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:lobster:true lobster:American lobster, Northern lobster, Maine lobster, Homarus americanus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:butcher shop, meat market", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:swine:hog, pig, grunter, squealer, Sus scrofa", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:butcher shop, meat market", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:bakery, bakeshop, bakehouse", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:butcher shop, meat market", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:butcher shop, meat market", "oc": 38}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:butcher shop, meat market", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:marketplace-mar:grocery store, grocery, food market, market", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:butcher shop, meat market", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:restaurant, eating house, eating place, eatery", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:butcher shop, meat market", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:oven:rotisserie", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:butcher shop, meat market", "at": "root:entity:physical entity:matter:substance:food-nutrient:fare:menu", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:butcher shop, meat market", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:cucumber, cuke", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:butcher shop, meat market", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:jackfruit, jak, jack", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:cab, hack, taxi, taxicab", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:bakery, bakeshop, bakehouse", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:cab, hack, taxi, taxicab", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:beach wagon, station wagon, wagon, estate car, beach waggon, station waggon, waggon", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:cab, hack, taxi, taxicab", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:cab, hack, taxi, taxicab", "oc": 31}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:cab, hack, taxi, taxicab", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:convertible", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:cab, hack, taxi, taxicab", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:grate-grating:grille, radiator grille", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:cab, hack, taxi, taxicab", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:limousine, limo", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:cab, hack, taxi, taxicab", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:public transpor:bus-autobus-coa:minibus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:cab, hack, taxi, taxicab", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:Model T", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:cab, hack, taxi, taxicab", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:car-railcar-rai:passenger car, coach, carriage", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:cab, hack, taxi, taxicab", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:pickup, pickup truck", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:cab, hack, taxi, taxicab", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:van:police van, police wagon, paddy wagon, patrol wagon, wagon, black Maria", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:cab, hack, taxi, taxicab", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:racer, race car, racing car", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:cab, hack, taxi, taxicab", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:public transpor:bus-autobus-coa:school bus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:cab, hack, taxi, taxicab", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:tape player", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:cab, hack, taxi, taxicab", "at": "root:entity:abstraction-abs:communication:signal-signalin:visual signal:light:traffic light, traffic signal, stoplight", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:cab, hack, taxi, taxicab", "at": "root:entity:physical entity:object-physical:geological form:spring-fountain:geyser", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pot:caldron, cauldron", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:bell cote, bell cot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pot:caldron, cauldron", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:bookshop, bookstore, bookstall", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pot:caldron, cauldron", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pot:caldron, cauldron", "oc": 22}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pot:caldron, cauldron", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:cannon", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pot:caldron, cauldron", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:knife:cleaver, meat cleaver, chopper", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pot:caldron, cauldron", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:confectionery, confectionary, candy store", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pot:caldron, cauldron", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:cowboy hat, ten-gallon hat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pot:caldron, cauldron", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:brake:brake system-br:hydraulic brake:disk brake, disc brake", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pot:caldron, cauldron", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:oven:Dutch oven", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pot:caldron, cauldron", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:ladle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pot:caldron, cauldron", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building comple:plant-works-ind:factory-mill-ma:lumbermill, sawmill", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pot:caldron, cauldron", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:excavation:pool:cistern:rain barrel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pot:caldron, cauldron", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dish:bowl:soup bowl", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pot:caldron, cauldron", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:heater-warmer:stove", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pot:caldron, cauldron", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:tub, vat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pot:caldron, cauldron", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pan-cooking pan:wok", "oc": 5}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pot:caldron, cauldron", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:housing-lodging:dwelling-home-d:yurt", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pot:caldron, cauldron", "at": "root:entity:abstraction-abs:communication:sign:street sign", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pot:caldron, cauldron", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:stew:hot pot, hotpot", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pot:caldron, cauldron", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:root vegetable:potato-white po:mashed potato", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:candle, taper, wax light", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:altar", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:candle, taper, wax light", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:bookshop, bookstore, bookstall", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:candle, taper, wax light", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:candle, taper, wax light", "oc": 30}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:candle, taper, wax light", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:place of worshi:church, church building", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:candle, taper, wax light", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:lantern:jack-o'-lantern", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:candle, taper, wax light", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shade:lampshade, lamp shade", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:candle, taper, wax light", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:miniskirt, mini", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:candle, taper, wax light", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:plunger, plumber's helper", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:candle, taper, wax light", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:table:pool table, billiard table, snooker table", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:candle, taper, wax light", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:restaurant, eating house, eating place, eatery", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:candle, taper, wax light", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:eraser:rubber eraser, rubber, pencil eraser", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:candle, taper, wax light", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:light-light sou:torch", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:candle, taper, wax light", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:toyshop", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:candle, taper, wax light", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:jar:vase", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:candle, taper, wax light", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:article:ware:tableware:cutlery-eating :spoon:wooden spoon", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:candle, taper, wax light", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:dessert-sweet-a:frozen dessert:ice cream, icecream", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:candle, taper, wax light", "at": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:loaf of bread-l:meat loaf, meatloaf", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:cannon", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:warship-war ves:aircraft carrier, carrier, flattop, attack aircraft carrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:cannon", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:cannon", "oc": 43}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:cannon", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:memorial-monume:megalith, megalithic structure", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:cannon", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:projector", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:cannon", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:movable barrier:door:sliding door", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:cannon", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:farm machine:thresher, thrasher, threshing machine", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:cannon", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:light-light sou:torch", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:cannon", "at": "root:entity:abstraction-abs:communication:signal-signalin:visual signal:light:traffic light, traffic signal, stoplight", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:boat:small boat:canoe", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:boat:small boat:canoe", "oc": 48}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:boat:small boat:canoe", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:oar:paddle, boat paddle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:boat:small boat:canoe", "at": "root:entity:physical entity:object-physical:geological form:natural elevati:ridge:bar:sandbar, sand bar", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:opener:can opener, tin opener", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:top-cover:cap:bottlecap", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:opener:can opener, tin opener", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:opener:can opener, tin opener", "oc": 35}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:opener:can opener, tin opener", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:flute, transverse flute", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:opener:can opener, tin opener", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:clip:hair slide", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:opener:can opener, tin opener", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:maraca", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:opener:can opener, tin opener", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:printer-printin:printer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:opener:can opener, tin opener", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:scale, weighing machine", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:opener:can opener, tin opener", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:screwdriver", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:opener:can opener, tin opener", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:turner-food tur:spatula", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:opener:can opener, tin opener", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:medical instrum:stethoscope", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:opener:can opener, tin opener", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:acoustic device:whistle", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:opener:can opener, tin opener", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:cruciferous veg:broccoli", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:opener:can opener, tin opener", "at": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :ingredient-fixi:flavorer-flavou:condiment:sauce:chocolate sauce, chocolate syrup", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:sweater-jumper:cardigan", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Shetland sheepdog, Shetland sheep dog, Shetland", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:sweater-jumper:cardigan", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:robe:abaya", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:sweater-jumper:cardigan", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:protective garm:apron", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:sweater-jumper:cardigan", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:firearm-piece-s:autoloader-self:automatic firea:automatic rifle:assault rifle, assault gun", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:sweater-jumper:cardigan", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:sweater-jumper:cardigan", "oc": 37}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:sweater-jumper:cardigan", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:apparel-wearing:workwear:jean, blue jean, denim", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:sweater-jumper:cardigan", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:miniskirt, mini", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:sweater-jumper:cardigan", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:cloak:poncho", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:sweater-jumper:cardigan", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:suit, suit of clothes", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:sweater-jumper:cardigan", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:sweater-jumper:pullover-slipov:sweatshirt", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:sweater-jumper:cardigan", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:coat:raincoat-waterp:trench coat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:sweater-jumper:cardigan", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:fabric-cloth-ma:wool, woolen, woollen", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:sweater-jumper:cardigan", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:banana", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:reflector:mirror:car mirror", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:thrush:robin, American robin, Turdus migratorius", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:reflector:mirror:car mirror", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:reflector:mirror:car mirror", "oc": 46}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:reflector:mirror:car mirror", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:convertible", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:reflector:mirror:car mirror", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:optical device:lens-lense-lens:converging lens:sunglass", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:reflector:mirror:car mirror", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:receptacle:tray", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:ride:carousel, carrousel, merry-go-round, roundabout, whirligig", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:ride:carousel, carrousel, merry-go-round, roundabout, whirligig", "oc": 48}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:ride:carousel, carrousel, merry-go-round, roundabout, whirligig", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:tricycle, trike, velocipede", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:ride:carousel, carrousel, merry-go-round, roundabout, whirligig", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:ear, spike, capitulum", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:gear-parapherna:kit-outfit:carpenter's kit, tool kit", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:keyboard instru:accordion, piano accordion, squeeze box", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:gear-parapherna:kit-outfit:carpenter's kit, tool kit", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:gear-parapherna:kit-outfit:carpenter's kit, tool kit", "oc": 36}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:gear-parapherna:kit-outfit:carpenter's kit, tool kit", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:cassette", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:gear-parapherna:kit-outfit:carpenter's kit, tool kit", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:chime, bell, gong", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:gear-parapherna:kit-outfit:carpenter's kit, tool kit", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:armor-armour:body armor-body:cuirass", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:gear-parapherna:kit-outfit:carpenter's kit, tool kit", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:table:desk", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:gear-parapherna:kit-outfit:carpenter's kit, tool kit", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:writing impleme:pen:fountain pen", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:gear-parapherna:kit-outfit:carpenter's kit, tool kit", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:hammer", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:gear-parapherna:kit-outfit:carpenter's kit, tool kit", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:strengthener-re:brace:neck brace", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:gear-parapherna:kit-outfit:carpenter's kit, tool kit", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:plow, plough", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:gear-parapherna:kit-outfit:carpenter's kit, tool kit", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:sports implemen:racket, racquet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:gear-parapherna:kit-outfit:carpenter's kit, tool kit", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:remote control, remote", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:gear-parapherna:kit-outfit:carpenter's kit, tool kit", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:measuring stick:rule, ruler", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:gear-parapherna:kit-outfit:carpenter's kit, tool kit", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:wine bottle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:carton", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:Pekinese, Pekingese, Peke", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:carton", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:flat-coated retriever", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:carton", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:domestic cat-ho:Siamese cat, Siamese", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:carton", "at": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:towel:bath towel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:carton", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:carton", "oc": 27}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:carton", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:crate", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:carton", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:baby bed-babys :crib, cot", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:carton", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:envelope", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:carton", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:mailbag, postbag", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:carton", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:mailbox, letter box", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:carton", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:portable comput:notebook, notebook computer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:carton", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:pencil box, pencil case", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:carton", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:plane, carpenter's plane, woodworking plane", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:carton", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:floor cover-flo:rug-carpet-carp:prayer rug, prayer mat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:carton", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:printer-printin:printer", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:carton", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:shoe:running shoe", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:carton", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:sofa-couch-loun:convertible-sof:studio couch, day bed", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:carton", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:toaster", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:carton", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:jar:vase", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:carton", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:outerwear-overc:gown-robe:vestment", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:carton", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:white goods:washer, automatic washer, washing machine", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:machine-simple :wheel:car wheel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:beach wagon, station wagon, wagon, estate car, beach waggon, station waggon, waggon", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:machine-simple :wheel:car wheel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:machine-simple :wheel:car wheel", "oc": 21}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:machine-simple :wheel:car wheel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:convertible", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:machine-simple :wheel:car wheel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:brake:brake system-br:hydraulic brake:disk brake, disc brake", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:machine-simple :wheel:car wheel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:landing-landing:dock, dockage, docking facility", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:machine-simple :wheel:car wheel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:grate-grating:grille, radiator grille", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:machine-simple :wheel:car wheel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:van:passenger van:minivan", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:machine-simple :wheel:car wheel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:trailer-house t:mobile home, manufactured home", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:machine-simple :wheel:car wheel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:Model T", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:machine-simple :wheel:car wheel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:pickup, pickup truck", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:machine-simple :wheel:car wheel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:projector", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:machine-simple :wheel:car wheel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:rotating mechan:circle-round:disk-disc:puck, hockey puck", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:machine-simple :wheel:car wheel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:racer, race car, racing car", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:machine-simple :wheel:car wheel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:sports car, sport car", "oc": 6}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:machine-simple :wheel:car wheel", "at": "root:entity:physical entity:object-physical:geological form:natural elevati:mountain-mount:alp", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:cash machine, cash dispenser, automated teller machine, automatic teller machine, automated teller, automatic teller, ATM", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:reflector:mirror:car mirror", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:cash machine, cash dispenser, automated teller machine, automatic teller machine, automated teller, automatic teller, ATM", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:cash machine, cash dispenser, automated teller machine, automatic teller machine, automated teller, automatic teller, ATM", "oc": 34}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:cash machine, cash dispenser, automated teller machine, automatic teller machine, automated teller, automatic teller, ATM", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:keyboard:computer keyboard, keypad", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:cash machine, cash dispenser, automated teller machine, automatic teller machine, automated teller, automatic teller, ATM", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:confectionery, confectionary, candy store", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:cash machine, cash dispenser, automated teller machine, automatic teller machine, automated teller, automatic teller, ATM", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:office furnitur:file, file cabinet, filing cabinet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:cash machine, cash dispenser, automated teller machine, automatic teller machine, automated teller, automatic teller, ATM", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:portable comput:laptop, laptop computer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:cash machine, cash dispenser, automated teller machine, automatic teller machine, automated teller, automatic teller, ATM", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:mailbox, letter box", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:cash machine, cash dispenser, automated teller machine, automatic teller machine, automated teller, automatic teller, ATM", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:telephone-phone:pay-phone, pay-station", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:cash machine, cash dispenser, automated teller machine, automatic teller machine, automated teller, automatic teller, ATM", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:signboard-sign:scoreboard", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:cash machine, cash dispenser, automated teller machine, automatic teller machine, automated teller, automatic teller, ATM", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electronic devi:display-video d:screen, CRT screen", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:cash machine, cash dispenser, automated teller machine, automatic teller machine, automated teller, automatic teller, ATM", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:movable barrier:door:sliding door", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:cash machine, cash dispenser, automated teller machine, automatic teller machine, automated teller, automatic teller, ATM", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:slot machine-co:slot, one-armed bandit", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:cash machine, cash dispenser, automated teller machine, automatic teller machine, automated teller, automatic teller, ATM", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:keyboard:typewriter keyboard", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:cash machine, cash dispenser, automated teller machine, automatic teller machine, automated teller, automatic teller, ATM", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:slot machine-co:vending machine", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:cash machine, cash dispenser, automated teller machine, automatic teller machine, automated teller, automatic teller, ATM", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:web site, website, internet site, site", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:cassette", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:bookcase", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:cassette", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:bookshop, bookstore, bookstall", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:cassette", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:cassette", "oc": 22}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:cassette", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:cassette player", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:cassette", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:memory device-s:magnetic disk-m:hard disc, hard disk, fixed disk", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:cassette", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:free-reed instr:harmonica, mouth organ, harp, mouth harp", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:cassette", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shade:lampshade, lamp shade", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:cassette", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:portable comput:laptop, laptop computer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:cassette", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:lighter, light, igniter, ignitor", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:cassette", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:navigational in:compass:magnetic compass", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:cassette", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:sharpener:pencil sharpener", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:cassette", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:system:communication s:radio, wireless", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:cassette", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:strongbox-deedb:safe", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:cassette", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:textile machine:sewing machine", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:cassette", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:tape player", "oc": 6}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:cassette", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:piano-pianofort:upright, upright piano", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:cassette", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:case:wallet, billfold, notecase, pocketbook", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:cassette player", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:cassette", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:cassette player", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:cassette player", "oc": 10}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:cassette player", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:CD player", "oc": 8}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:cassette player", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:memory device-s:magnetic disk-m:hard disc, hard disk, fixed disk", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:cassette player", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electrical devi:transducer:electro-acousti:loudspeaker, speaker, speaker unit, loudspeaker system, speaker system", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:cassette player", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:modem", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:cassette player", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:printer-printin:printer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:cassette player", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:projector", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:cassette player", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:system:communication s:radio, wireless", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:cassette player", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:tape player", "oc": 21}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:defensive struc:fortification-m:castle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:altar", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:defensive struc:fortification-m:castle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:bell cote, bell cot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:defensive struc:fortification-m:castle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:defensive struc:fortification-m:castle", "oc": 38}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:defensive struc:fortification-m:castle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:place of worshi:church, church building", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:defensive struc:fortification-m:castle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:house:residence:religious resid:monastery", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:defensive struc:fortification-m:castle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:house:residence:palace", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:defensive struc:fortification-m:castle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:place of worshi:shrine:stupa, tope", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:defensive struc:fortification-m:castle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:arch:triumphal arch", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:defensive struc:fortification-m:castle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:roof:vault", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:defensive struc:fortification-m:castle", "at": "root:entity:physical entity:object-physical:geological form:cliff, drop, drop-off", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:sailing vessel-:sailboat-sailin:catamaran", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:amphibian, amphibious vehicle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:sailing vessel-:sailboat-sailin:catamaran", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:sailing vessel-:sailboat-sailin:catamaran", "oc": 34}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:sailing vessel-:sailboat-sailin:catamaran", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:boat:fireboat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:sailing vessel-:sailboat-sailin:catamaran", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:machine-simple :wheel:paddlewheel, paddle wheel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:sailing vessel-:sailboat-sailin:catamaran", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:boat:motorboat-power:speedboat", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:sailing vessel-:sailboat-sailin:catamaran", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:sailing vessel-:sailboat-sailin:trimaran", "oc": 10}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:sailing vessel-:sailboat-sailin:catamaran", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:boat:small boat:yawl", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:CD player", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:binoculars, field glasses, opera glasses", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:CD player", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:cassette player", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:CD player", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:CD player", "oc": 25}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:CD player", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:wall unit:entertainment center", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:CD player", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cosmetic:makeup-make-up-:face powder", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:CD player", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:memory device-s:magnetic disk-m:hard disc, hard disk, fixed disk", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:CD player", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:theater-theatre:home theater, home theatre", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:CD player", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:portable comput:laptop, laptop computer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:CD player", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:microwave, microwave oven", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:CD player", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:modem", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:CD player", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:printer-printin:printer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:CD player", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:projector", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:CD player", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:system:communication s:radio, wireless", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:CD player", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:firearm-piece-s:rifle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:CD player", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:tape player", "oc": 7}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:CD player", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:system:communication s:telecommunicati:television, television system", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:bowed stringed :cello, violoncello", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:keyboard instru:accordion, piano accordion, squeeze box", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:bowed stringed :cello, violoncello", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:bowed stringed :cello, violoncello", "oc": 42}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:bowed stringed :cello, violoncello", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:pipe:panpipe, pandean pipe, syrinx", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:bowed stringed :cello, violoncello", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:shovel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:bowed stringed :cello, violoncello", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:surface:horizontal surf:platform:stage", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:bowed stringed :cello, violoncello", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:bowed stringed :violin, fiddle", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:bowed stringed :cello, violoncello", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:person-individu:peer-equal-matc:associate:participant:groom, bridegroom", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:telephone-phone:radiotelephone-:cellular telephone, cellular phone, cellphone, cell, mobile phone", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:telephone-phone:radiotelephone-:cellular telephone, cellular phone, cellphone, cell, mobile phone", "oc": 34}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:telephone-phone:radiotelephone-:cellular telephone, cellular phone, cellphone, cell, mobile phone", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:watch-ticker:digital watch", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:telephone-phone:radiotelephone-:cellular telephone, cellular phone, cellphone, cell, mobile phone", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:coffee maker:espresso maker", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:telephone-phone:radiotelephone-:cellular telephone, cellular phone, cellphone, cell, mobile phone", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cosmetic:makeup-make-up-:face powder", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:telephone-phone:radiotelephone-:cellular telephone, cellular phone, cellphone, cell, mobile phone", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:portable comput:hand-held computer, hand-held microcomputer", "oc": 5}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:telephone-phone:radiotelephone-:cellular telephone, cellular phone, cellphone, cell, mobile phone", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:free-reed instr:harmonica, mouth organ, harp, mouth harp", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:telephone-phone:radiotelephone-:cellular telephone, cellular phone, cellphone, cell, mobile phone", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:shirt:jersey, T-shirt, tee shirt", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:telephone-phone:radiotelephone-:cellular telephone, cellular phone, cellphone, cell, mobile phone", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:lighter, light, igniter, ignitor", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:telephone-phone:radiotelephone-:cellular telephone, cellular phone, cellphone, cell, mobile phone", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electronic devi:mouse, computer mouse", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:telephone-phone:radiotelephone-:cellular telephone, cellular phone, cellphone, cell, mobile phone", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:remote control, remote", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:telephone-phone:radiotelephone-:cellular telephone, cellular phone, cellphone, cell, mobile phone", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:signboard-sign:scoreboard", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:telephone-phone:radiotelephone-:cellular telephone, cellular phone, cellphone, cell, mobile phone", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:blind-screen:curtain-drape-d:shower curtain", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:telephone-phone:radiotelephone-:cellular telephone, cellular phone, cellphone, cell, mobile phone", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:suit, suit of clothes", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:connection-conn:attachment-bond:ligament:chain", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:lamellicorn bee:scarabaeid beet:rhinoceros beetle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:connection-conn:attachment-bond:ligament:chain", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:edentate:sloth-tree slot:three-toed sloth, ai, Bradypus tridactylus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:connection-conn:attachment-bond:ligament:chain", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:guitar:acoustic guitar", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:connection-conn:attachment-bond:ligament:chain", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pot:caldron, cauldron", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:connection-conn:attachment-bond:ligament:chain", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:connection-conn:attachment-bond:ligament:chain", "oc": 13}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:connection-conn:attachment-bond:ligament:chain", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:chainlink fence", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:connection-conn:attachment-bond:ligament:chain", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:lifting device:crane", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:connection-conn:attachment-bond:ligament:chain", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:floor cover-flo:mat:doormat, welcome mat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:connection-conn:attachment-bond:ligament:chain", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:clip:hair slide", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:connection-conn:attachment-bond:ligament:chain", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:hook, claw", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:connection-conn:attachment-bond:ligament:chain", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:sandglass:hourglass", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:connection-conn:attachment-bond:ligament:chain", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:knot", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:connection-conn:attachment-bond:ligament:chain", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electronic devi:mouse, computer mouse", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:connection-conn:attachment-bond:ligament:chain", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:nail", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:connection-conn:attachment-bond:ligament:chain", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:decoration-orna:adornment:jewelry-jewelle:necklace", "oc": 14}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:connection-conn:attachment-bond:ligament:chain", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:lock:padlock", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:connection-conn:attachment-bond:ligament:chain", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:bench:park bench", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:connection-conn:attachment-bond:ligament:chain", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:plane, carpenter's plane, woodworking plane", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:connection-conn:attachment-bond:ligament:chain", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:institution:penal instituti:correctional in:prison, prison house", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:connection-conn:attachment-bond:ligament:chain", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:winder:reel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:connection-conn:attachment-bond:ligament:chain", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:oven:rotisserie", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:connection-conn:attachment-bond:ligament:chain", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:suit, suit of clothes", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:connection-conn:attachment-bond:ligament:chain", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:fungus:gyromitra", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:chainlink fence", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:parrot:macaw", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:chainlink fence", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:long-horned beetle, longicorn, longicorn beetle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:chainlink fence", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:lepidopterous i:butterfly:sulphur butterfly, sulfur butterfly", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:chainlink fence", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:ape:anthropoid ape:great ape-pongi:orangutan, orang, orangutang, Pongo pygmaeus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:chainlink fence", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:outbuilding:shed:apiary, bee house", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:chainlink fence", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:birdhouse", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:chainlink fence", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:connection-conn:attachment-bond:ligament:chain", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:chainlink fence", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:chainlink fence", "oc": 31}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:chainlink fence", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:theater-theatre:cinema, movie theater, movie theatre, movie house, picture palace", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:chainlink fence", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:lifting device:crane", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:chainlink fence", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:roof:dome", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:chainlink fence", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:public transpor:bus-autobus-coa:school bus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:chainlink fence", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:handcart-pushca:shopping cart", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:chainlink fence", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:roof:tile roof", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:chainlink fence", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:column-pillar:totem pole", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:chainlink fence", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:toyshop", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:chainlink fence", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:screen:window screen", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:chainlink fence", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:blind-screen:window blind:window shade", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:chainlink fence", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:rail fence:worm fence, snake fence, snake-rail fence, Virginia fence", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:armor-armour:body armor-body:chain mail, ring mail, mail, chain armor, chain armour, ring armor, ring armour", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:echinoderm:starfish, sea star", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:armor-armour:body armor-body:chain mail, ring mail, mail, chain armor, chain armour, ring armor, ring armour", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:buckle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:armor-armour:body armor-body:chain mail, ring mail, mail, chain armor, chain armour, ring armor, ring armour", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:sweater-jumper:cardigan", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:armor-armour:body armor-body:chain mail, ring mail, mail, chain armor, chain armour, ring armor, ring armour", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:connection-conn:attachment-bond:ligament:chain", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:armor-armour:body armor-body:chain mail, ring mail, mail, chain armor, chain armour, ring armor, ring armour", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:chainlink fence", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:armor-armour:body armor-body:chain mail, ring mail, mail, chain armor, chain armour, ring armor, ring armour", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:armor-armour:body armor-body:chain mail, ring mail, mail, chain armor, chain armour, ring armor, ring armour", "oc": 34}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:armor-armour:body armor-body:chain mail, ring mail, mail, chain armor, chain armour, ring armor, ring armour", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:floor cover-flo:mat:doormat, welcome mat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:armor-armour:body armor-body:chain mail, ring mail, mail, chain armor, chain armour, ring armor, ring armour", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:blower:hand blower, blow dryer, blow drier, hair dryer, hair drier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:armor-armour:body armor-body:chain mail, ring mail, mail, chain armor, chain armour, ring armor, ring armour", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:supporting stru:framework:honeycomb", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:armor-armour:body armor-body:chain mail, ring mail, mail, chain armor, chain armour, ring armor, ring armour", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:knot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:armor-armour:body armor-body:chain mail, ring mail, mail, chain armor, chain armour, ring armor, ring armour", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:decoration-orna:adornment:jewelry-jewelle:necklace", "oc": 5}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:power tool:power saw-saw-s:chain saw, chainsaw", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:parrot:macaw", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:power tool:power saw-saw-s:chain saw, chainsaw", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:power tool:power saw-saw-s:chain saw, chainsaw", "oc": 37}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:power tool:power saw-saw-s:chain saw, chainsaw", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:helmet:crash helmet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:power tool:power saw-saw-s:chain saw, chainsaw", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:guitar:electric guitar", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:power tool:power saw-saw-s:chain saw, chainsaw", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building comple:plant-works-ind:factory-mill-ma:lumbermill, sawmill", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:power tool:power saw-saw-s:chain saw, chainsaw", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:motor scooter, scooter", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:power tool:power saw-saw-s:chain saw, chainsaw", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:lock:padlock", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:power tool:power saw-saw-s:chain saw, chainsaw", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:plow, plough", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:power tool:power saw-saw-s:chain saw, chainsaw", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:drill:power drill", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:power tool:power saw-saw-s:chain saw, chainsaw", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:rugby ball", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:power tool:power saw-saw-s:chain saw, chainsaw", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:runner:ski", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:power tool:power saw-saw-s:chain saw, chainsaw", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:litter:stretcher", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:power tool:power saw-saw-s:chain saw, chainsaw", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:toyshop", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:chest", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:echinoderm:sea urchin", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:chest", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:bookcase", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:chest", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:carton", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:chest", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:chest", "oc": 30}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:chest", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:chest of drawer:chiffonier, commode", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:chest", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:crate", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:chest", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:table:desk", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:chest", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:floor cover-flo:mat:doormat, welcome mat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:chest", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:office furnitur:file, file cabinet, filing cabinet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:chest", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:screen:fire screen, fireguard", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:chest", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shade:lampshade, lamp shade", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:chest", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:marimba, xylophone", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:chest", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:column-pillar:obelisk", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:chest", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:lock:padlock", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:chest", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:bench:park bench", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:chest", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloth covering:bedclothes-bed :quilt, comforter, comfort, puff", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:chest", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:measuring stick:rule, ruler", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:chest of drawer:chiffonier, commode", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:bookcase", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:chest of drawer:chiffonier, commode", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:chest", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:chest of drawer:chiffonier, commode", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:chest of drawer:chiffonier, commode", "oc": 15}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:chest of drawer:chiffonier, commode", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:cabinet:china cabinet, china closet", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:chest of drawer:chiffonier, commode", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:crate", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:chest of drawer:chiffonier, commode", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:baby bed-babys :crib, cot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:chest of drawer:chiffonier, commode", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:table:desk", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:chest of drawer:chiffonier, commode", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:table:dining table, board", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:chest of drawer:chiffonier, commode", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:white goods:dishwasher, dish washer, dishwashing machine", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:chest of drawer:chiffonier, commode", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:wall unit:entertainment center", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:chest of drawer:chiffonier, commode", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:office furnitur:file, file cabinet, filing cabinet", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:chest of drawer:chiffonier, commode", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:folding chair", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:chest of drawer:chiffonier, commode", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:theater-theatre:home theater, home theatre", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:chest of drawer:chiffonier, commode", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:cabinet:medicine chest, medicine cabinet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:chest of drawer:chiffonier, commode", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:padding-cushion:cushion:pillow", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:chest of drawer:chiffonier, commode", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:screen-cover-co:shoji", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:chest of drawer:chiffonier, commode", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:movable barrier:door:sliding door", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:chest of drawer:chiffonier, commode", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:wardrobe, closet, press", "oc": 14}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:chime, bell, gong", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:bell cote, bell cot", "oc": 5}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:chime, bell, gong", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:chime, bell, gong", "oc": 28}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:chime, bell, gong", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:glass-drinking :goblet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:chime, bell, gong", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:gong, tam-tam", "oc": 6}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:chime, bell, gong", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:piano-pianofort:grand piano, grand", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:chime, bell, gong", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shade:lampshade, lamp shade", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:chime, bell, gong", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:ocarina, sweet potato", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:chime, bell, gong", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:bench:park bench", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:chime, bell, gong", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:machine-simple :wheel:potter's wheel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:chime, bell, gong", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:punching bag, punch bag, punching ball, punchball", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:chime, bell, gong", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:place of worshi:shrine:stupa, tope", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:chime, bell, gong", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:swing", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:chime, bell, gong", "at": "root:entity:abstraction-abs:communication:signal-signalin:visual signal:light:traffic light, traffic signal, stoplight", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:cabinet:china cabinet, china closet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:cabinet:china cabinet, china closet", "oc": 39}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:cabinet:china cabinet, china closet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:table:dining table, board", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:cabinet:china cabinet, china closet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:cabinet:medicine chest, medicine cabinet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:cabinet:china cabinet, china closet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:microwave, microwave oven", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:cabinet:china cabinet, china closet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:white goods:refrigerator, icebox", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:cabinet:china cabinet, china closet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:movable barrier:door:sliding door", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:cabinet:china cabinet, china closet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:clock:wall clock", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:cabinet:china cabinet, china closet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:wardrobe, closet, press", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:cabinet:china cabinet, china closet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:screen:window screen", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:footwear:hosiery-hose:stocking:Christmas stocking", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:gymnastic appar:balance beam, beam", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:footwear:hosiery-hose:stocking:Christmas stocking", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:footwear:hosiery-hose:stocking:Christmas stocking", "oc": 44}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:footwear:hosiery-hose:stocking:Christmas stocking", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:diaper, nappy, napkin", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:footwear:hosiery-hose:stocking:Christmas stocking", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:bedroom furnitu:bed:four-poster", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:footwear:hosiery-hose:stocking:Christmas stocking", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:handwear-hand w:glove:mitten", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:footwear:hosiery-hose:stocking:Christmas stocking", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:padding-cushion:cushion:pillow", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:footwear:hosiery-hose:stocking:Christmas stocking", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:footwear:hosiery-hose:sock", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:place of worshi:church, church building", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:altar", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:place of worshi:church, church building", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:tower:beacon, lighthouse, beacon light, pharos", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:place of worshi:church, church building", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:bell cote, bell cot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:place of worshi:church, church building", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:defensive struc:fortification-m:castle", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:place of worshi:church, church building", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:place of worshi:church, church building", "oc": 33}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:place of worshi:church, church building", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:roof:dome", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:place of worshi:church, church building", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:library", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:place of worshi:church, church building", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:boat:sea boat:lifeboat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:place of worshi:church, church building", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:house:residence:religious resid:monastery", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:place of worshi:church, church building", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:roof:tile roof", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:place of worshi:church, church building", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:roof:vault", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:theater-theatre:cinema, movie theater, movie theatre, movie house, picture palace", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:bookshop, bookstore, bookstall", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:theater-theatre:cinema, movie theater, movie theatre, movie house, picture palace", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:cash machine, cash dispenser, automated teller machine, automatic teller machine, automated teller, automatic teller, ATM", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:theater-theatre:cinema, movie theater, movie theatre, movie house, picture palace", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:theater-theatre:cinema, movie theater, movie theatre, movie house, picture palace", "oc": 34}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:theater-theatre:cinema, movie theater, movie theatre, movie house, picture palace", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:crate", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:theater-theatre:cinema, movie theater, movie theatre, movie house, picture palace", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:clock:digital clock", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:theater-theatre:cinema, movie theater, movie theatre, movie house, picture palace", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:theater-theatre:home theater, home theatre", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:theater-theatre:cinema, movie theater, movie theatre, movie house, picture palace", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:telephone-phone:pay-phone, pay-station", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:theater-theatre:cinema, movie theater, movie theatre, movie house, picture palace", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:restaurant, eating house, eating place, eatery", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:theater-theatre:cinema, movie theater, movie theatre, movie house, picture palace", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:signboard-sign:scoreboard", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:theater-theatre:cinema, movie theater, movie theatre, movie house, picture palace", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:steel drum", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:theater-theatre:cinema, movie theater, movie theatre, movie house, picture palace", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:blind-screen:curtain-drape-d:theater curtain, theatre curtain", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:theater-theatre:cinema, movie theater, movie theatre, movie house, picture palace", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:tobacco shop, tobacconist shop, tobacconist", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:theater-theatre:cinema, movie theater, movie theatre, movie house, picture palace", "at": "root:entity:abstraction-abs:communication:sign:street sign", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:knife:cleaver, meat cleaver, chopper", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crab:Dungeness crab, Cancer magister", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:knife:cleaver, meat cleaver, chopper", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:lobster:true lobster:American lobster, Northern lobster, Maine lobster, Homarus americanus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:knife:cleaver, meat cleaver, chopper", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:bannister, banister, balustrade, balusters, handrail", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:knife:cleaver, meat cleaver, chopper", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:barbershop", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:knife:cleaver, meat cleaver, chopper", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:opener:can opener, tin opener", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:knife:cleaver, meat cleaver, chopper", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:gear-parapherna:kit-outfit:carpenter's kit, tool kit", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:knife:cleaver, meat cleaver, chopper", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:cassette", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:knife:cleaver, meat cleaver, chopper", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:knife:cleaver, meat cleaver, chopper", "oc": 17}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:knife:cleaver, meat cleaver, chopper", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:keyboard:computer keyboard, keypad", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:knife:cleaver, meat cleaver, chopper", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:flute, transverse flute", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:knife:cleaver, meat cleaver, chopper", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:womans clothing:dress-frock:gown", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:knife:cleaver, meat cleaver, chopper", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:hammer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:knife:cleaver, meat cleaver, chopper", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:ax-axe:hatchet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:knife:cleaver, meat cleaver, chopper", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:ocarina, sweet potato", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:knife:cleaver, meat cleaver, chopper", "at": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:towel:paper towel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:knife:cleaver, meat cleaver, chopper", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:pencil box, pencil case", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:knife:cleaver, meat cleaver, chopper", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:plane, carpenter's plane, woodworking plane", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:knife:cleaver, meat cleaver, chopper", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:pot, flowerpot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:knife:cleaver, meat cleaver, chopper", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:sheath:scabbard", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:knife:cleaver, meat cleaver, chopper", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:screwdriver", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:knife:cleaver, meat cleaver, chopper", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:safety belt-lif:seat belt, seatbelt", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:knife:cleaver, meat cleaver, chopper", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:turner-food tur:spatula", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:knife:cleaver, meat cleaver, chopper", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:waffle iron", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:knife:cleaver, meat cleaver, chopper", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pan-cooking pan:wok", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:knife:cleaver, meat cleaver, chopper", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:entree-main cou:plate", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:knife:cleaver, meat cleaver, chopper", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:soup:consomme", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:knife:cleaver, meat cleaver, chopper", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:dessert-sweet-a:frozen dessert:ice lolly, lolly, lollipop, popsicle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:knife:cleaver, meat cleaver, chopper", "at": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:mixed drink:punch:cup", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:housing-lodging:dwelling-home-d:cliff dwelling", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:chest", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:housing-lodging:dwelling-home-d:cliff dwelling", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:housing-lodging:dwelling-home-d:cliff dwelling", "oc": 46}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:housing-lodging:dwelling-home-d:cliff dwelling", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:stone wall", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:housing-lodging:dwelling-home-d:cliff dwelling", "at": "root:entity:physical entity:object-physical:geological form:cliff, drop, drop-off", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloak", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crab:rock crab, Cancer irroratus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloak", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:homopterous ins:cicada, cicala", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloak", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:robe:abaya", "oc": 7}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloak", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:barbershop", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloak", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bathtub, bathing tub, bath, tub", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloak", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:power tool:power saw-saw-s:chain saw, chainsaw", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloak", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloak", "oc": 16}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloak", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:sled-sledge-sle:dogsled, dog sled, dog sleigh", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloak", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:coat:fur coat", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloak", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:mask:gasmask, respirator, gas helmet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloak", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:game:puzzle:jigsaw puzzle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloak", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:robe:kimono", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloak", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:portable comput:laptop, laptop computer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloak", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:mask", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloak", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:memorial-monume:megalith, megalithic structure", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloak", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:uniform:military uniform", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloak", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:place of worshi:mosque", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloak", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:motor scooter, scooter", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloak", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:strengthener-re:brace:neck brace", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloak", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:portable comput:notebook, notebook computer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloak", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:overskirt", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloak", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:support:pier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloak", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:sarong", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloak", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:attire-garb-dre:hairpiece-false:wig", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:clog, geta, patten, sabot", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:bulldog-English:French bulldog", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:clog, geta, patten, sabot", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:wildcat:lynx, catamount", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:clog, geta, patten, sabot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:binoculars, field glasses, opera glasses", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:clog, geta, patten, sabot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:cleaning implem:broom", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:clog, geta, patten, sabot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:opener:can opener, tin opener", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:clog, geta, patten, sabot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:clog, geta, patten, sabot", "oc": 25}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:clog, geta, patten, sabot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:boot:cowboy boot", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:clog, geta, patten, sabot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pan-cooking pan:frying pan, frypan, skillet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:clog, geta, patten, sabot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:sheath:holster", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:clog, geta, patten, sabot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:shoe:Loafer", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:clog, geta, patten, sabot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:miniskirt, mini", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:clog, geta, patten, sabot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electronic devi:mouse, computer mouse", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:clog, geta, patten, sabot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:overskirt", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:clog, geta, patten, sabot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:shoe:sandal", "oc": 5}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:clog, geta, patten, sabot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:shoe shop, shoe-shop, shoe store", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:clog, geta, patten, sabot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:footwear:hosiery-hose:sock", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:clog, geta, patten, sabot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:blind-screen:window blind:window shade", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:clog, geta, patten, sabot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pan-cooking pan:wok", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:shaker:cocktail shaker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:writing impleme:pen:ballpoint, ballpoint pen, ballpen, Biro", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:shaker:cocktail shaker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:jar:beaker", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:shaker:cocktail shaker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:glass-drinking :beer glass", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:shaker:cocktail shaker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bucket, pail", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:shaker:cocktail shaker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:shaker:cocktail shaker", "oc": 33}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:shaker:cocktail shaker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pot:coffeepot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:shaker:cocktail shaker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:white goods:dishwasher, dish washer, dishwashing machine", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:shaker:cocktail shaker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:lighter, light, igniter, ignitor", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:shaker:cocktail shaker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:mortar", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:shaker:cocktail shaker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:applicator-appl:paintbrush", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:shaker:cocktail shaker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:ping-pong ball", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:shaker:cocktail shaker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:pop bottle, soda bottle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:shaker:cocktail shaker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:shaker:saltshaker, salt shaker", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:shaker:cocktail shaker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:filter:strainer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:shaker:cocktail shaker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:jar:vase", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:shaker:cocktail shaker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:water bottle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:shaker:cocktail shaker", "at": "root:entity:physical entity:matter:substance:food-nutrient:beverage-drink-:coffee-java:espresso", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:drinking vessel:mug:coffee mug", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:spider:black widow, Latrodectus mactans", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:drinking vessel:mug:coffee mug", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:clog, geta, patten, sabot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:drinking vessel:mug:coffee mug", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:drinking vessel:mug:coffee mug", "oc": 22}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:drinking vessel:mug:coffee mug", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:brake:brake system-br:hydraulic brake:disk brake, disc brake", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:drinking vessel:mug:coffee mug", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:marketplace-mar:grocery store, grocery, food market, market", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:drinking vessel:mug:coffee mug", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:free-reed instr:harmonica, mouth organ, harp, mouth harp", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:drinking vessel:mug:coffee mug", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:iron, smoothing iron", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:drinking vessel:mug:coffee mug", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:portable comput:laptop, laptop computer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:drinking vessel:mug:coffee mug", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:lotion", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:drinking vessel:mug:coffee mug", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electronic devi:mouse, computer mouse", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:drinking vessel:mug:coffee mug", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:pitcher, ewer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:drinking vessel:mug:coffee mug", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:sleeping bag", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:drinking vessel:mug:coffee mug", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dish:bowl:soup bowl", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:drinking vessel:mug:coffee mug", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:filter:strainer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:drinking vessel:mug:coffee mug", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:lamp:table lamp", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:drinking vessel:mug:coffee mug", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pot:teapot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:drinking vessel:mug:coffee mug", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:jar:vase", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:drinking vessel:mug:coffee mug", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:jug:whiskey jug", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:drinking vessel:mug:coffee mug", "at": "root:entity:physical entity:matter:substance:food-nutrient:beverage-drink-:coffee-java:espresso", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:drinking vessel:mug:coffee mug", "at": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:mixed drink:punch:cup", "oc": 5}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pot:coffeepot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:barber chair", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pot:coffeepot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:drinking vessel:mug:coffee mug", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pot:coffeepot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pot:coffeepot", "oc": 27}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pot:coffeepot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:drum, membranophone, tympan", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pot:coffeepot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:coffee maker:espresso maker", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pot:coffeepot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:hook, claw", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pot:coffeepot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shade:lampshade, lamp shade", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pot:coffeepot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:pitcher, ewer", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pot:coffeepot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:pot, flowerpot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pot:coffeepot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:heater-warmer:stove", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pot:coffeepot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:sundial", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pot:coffeepot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pot:teapot", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pot:coffeepot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:tobacco shop, tobacconist shop, tobacconist", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pot:coffeepot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:jug:water jug", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pot:coffeepot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:tank-storage ta:reservoir:water tower", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pot:coffeepot", "at": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:mixed drink:punch:eggnog", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:coil, spiral, volute, whorl, helix", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:vine snake", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:coil, spiral, volute, whorl, helix", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:gastropod-univa:snail", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:coil, spiral, volute, whorl, helix", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:cephalopod-ceph:chambered nautilus, pearly nautilus, nautilus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:coil, spiral, volute, whorl, helix", "at": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:bib", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:coil, spiral, volute, whorl, helix", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:bicycle-bike-wh:bicycle-built-for-two, tandem bicycle, tandem", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:coil, spiral, volute, whorl, helix", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:cleaning implem:broom", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:coil, spiral, volute, whorl, helix", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:coil, spiral, volute, whorl, helix", "oc": 32}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:coil, spiral, volute, whorl, helix", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:roof:dome", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:coil, spiral, volute, whorl, helix", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:fan:electric fan, blower", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:coil, spiral, volute, whorl, helix", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:memory device-s:magnetic disk-m:hard disc, hard disk, fixed disk", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:coil, spiral, volute, whorl, helix", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:iron, smoothing iron", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:coil, spiral, volute, whorl, helix", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:library", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:coil, spiral, volute, whorl, helix", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:system:maze, labyrinth", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:coil, spiral, volute, whorl, helix", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:decoration-orna:adornment:jewelry-jewelle:necklace", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:coil, spiral, volute, whorl, helix", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:rescue equipmen:parachute, chute", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:coil, spiral, volute, whorl, helix", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:bench:park bench", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:coil, spiral, volute, whorl, helix", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:medical instrum:stethoscope", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:lock:combination lock", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:binder, ring-binder", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:lock:combination lock", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:machine-simple :wheel:car wheel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:lock:combination lock", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:telephone-phone:radiotelephone-:cellular telephone, cellular phone, cellphone, cell, mobile phone", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:lock:combination lock", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:connection-conn:attachment-bond:ligament:chain", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:lock:combination lock", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:chainlink fence", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:lock:combination lock", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:lock:combination lock", "oc": 31}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:lock:combination lock", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:go-kart", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:lock:combination lock", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:golfcart, golf cart", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:lock:combination lock", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:lighter, light, igniter, ignitor", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:lock:combination lock", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:lock:padlock", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:lock:combination lock", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:drill:power drill", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:lock:combination lock", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:system:communication s:radio, wireless", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:lock:combination lock", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:photographic eq:camera-photogra:reflex camera", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:lock:combination lock", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:remote control, remote", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:lock:combination lock", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:strongbox-deedb:safe", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:lock:combination lock", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:case:wallet, billfold, notecase, pocketbook", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:keyboard:computer keyboard, keypad", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:domestic cat-ho:Siamese cat, Siamese", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:keyboard:computer keyboard, keypad", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:lock:combination lock", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:keyboard:computer keyboard, keypad", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:keyboard:computer keyboard, keypad", "oc": 29}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:keyboard:computer keyboard, keypad", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:desktop computer", "oc": 5}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:keyboard:computer keyboard, keypad", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:coffee maker:espresso maker", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:keyboard:computer keyboard, keypad", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:control-control:joystick", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:keyboard:computer keyboard, keypad", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:monitor", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:keyboard:computer keyboard, keypad", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:printer-printin:printer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:keyboard:computer keyboard, keypad", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:analog computer:slide rule, slipstick", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:keyboard:computer keyboard, keypad", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:bar:lever:key:space bar", "oc": 6}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:keyboard:computer keyboard, keypad", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:keyboard:typewriter keyboard", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:keyboard:computer keyboard, keypad", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:game:puzzle:crossword puzzle, crossword", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:confectionery, confectionary, candy store", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:echinoderm:starfish, sea star", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:confectionery, confectionary, candy store", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:bookshop, bookstore, bookstall", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:confectionery, confectionary, candy store", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:confectionery, confectionary, candy store", "oc": 29}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:confectionery, confectionary, candy store", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:marketplace-mar:grocery store, grocery, food market, market", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:confectionery, confectionary, candy store", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:library", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:confectionery, confectionary, candy store", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:package-parcel:packet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:confectionery, confectionary, candy store", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:machine-simple :wheel:pinwheel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:confectionery, confectionary, candy store", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:sarong", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:confectionery, confectionary, candy store", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:signboard-sign:scoreboard", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:confectionery, confectionary, candy store", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:shoe shop, shoe-shop, shoe store", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:confectionery, confectionary, candy store", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:toyshop", "oc": 5}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:confectionery, confectionary, candy store", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:slot machine-co:vending machine", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:confectionery, confectionary, candy store", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:creation:product-product:work-piece of w:publication:magazine-mag:comic book", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:confectionery, confectionary, candy store", "at": "root:entity:physical entity:matter:substance:material-stuff:paper:tissue-tissue p:toilet tissue, toilet paper, bathroom tissue", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:cargo ship-carg:container ship, containership, container vessel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:breakwater, groin, groyne, mole, bulwark, seawall, jetty", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:cargo ship-carg:container ship, containership, container vessel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:cargo ship-carg:container ship, containership, container vessel", "oc": 44}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:cargo ship-carg:container ship, containership, container vessel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:gear-parapherna:rig:drill rig-drill:drilling platform, offshore rig", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:cargo ship-carg:container ship, containership, container vessel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:boat:fireboat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:cargo ship-carg:container ship, containership, container vessel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:passenger ship:liner, ocean liner", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:cargo ship-carg:container ship, containership, container vessel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:bridge-span:steel arch bridge", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:cargo ship-carg:container ship, containership, container vessel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:trailer truck, tractor trailer, trucking rig, rig, articulated lorry, semi", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:convertible", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:convertible", "oc": 43}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:convertible", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:limousine, limo", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:convertible", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:pickup, pickup truck", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:convertible", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:racer, race car, racing car", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:convertible", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:sports car, sport car", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:opener:bottle opener:corkscrew, bottle screw", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:opener:can opener, tin opener", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:opener:bottle opener:corkscrew, bottle screw", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:gear-parapherna:kit-outfit:carpenter's kit, tool kit", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:opener:bottle opener:corkscrew, bottle screw", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:drinking vessel:mug:coffee mug", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:opener:bottle opener:corkscrew, bottle screw", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:opener:bottle opener:corkscrew, bottle screw", "oc": 36}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:opener:bottle opener:corkscrew, bottle screw", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:writing impleme:pen:fountain pen", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:opener:bottle opener:corkscrew, bottle screw", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:blower:hand blower, blow dryer, blow drier, hair dryer, hair drier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:opener:bottle opener:corkscrew, bottle screw", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:memory device-s:magnetic disk-m:hard disc, hard disk, fixed disk", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:opener:bottle opener:corkscrew, bottle screw", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:sheath:holster", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:opener:bottle opener:corkscrew, bottle screw", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:knife:letter opener, paper knife, paperknife", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:opener:bottle opener:corkscrew, bottle screw", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:sharpener:pencil sharpener", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:opener:bottle opener:corkscrew, bottle screw", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:plane, carpenter's plane, woodworking plane", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:opener:bottle opener:corkscrew, bottle screw", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:sheath:scabbard", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:opener:bottle opener:corkscrew, bottle screw", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:screw", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:opener:bottle opener:corkscrew, bottle screw", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:screwdriver", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:brass-brass ins:cornet, horn, trumpet, trump", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:keyboard instru:accordion, piano accordion, squeeze box", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:brass-brass ins:cornet, horn, trumpet, trump", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:brass-brass ins:cornet, horn, trumpet, trump", "oc": 28}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:brass-brass ins:cornet, horn, trumpet, trump", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:coffee maker:espresso maker", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:brass-brass ins:cornet, horn, trumpet, trump", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:flute, transverse flute", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:brass-brass ins:cornet, horn, trumpet, trump", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:brass-brass ins:French horn, horn", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:brass-brass ins:cornet, horn, trumpet, trump", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:marimba, xylophone", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:brass-brass ins:cornet, horn, trumpet, trump", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:uniform:military uniform", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:brass-brass ins:cornet, horn, trumpet, trump", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:eraser:rubber eraser, rubber, pencil eraser", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:brass-brass ins:cornet, horn, trumpet, trump", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:beating-reed in:single-reed ins:sax, saxophone", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:brass-brass ins:cornet, horn, trumpet, trump", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:surface:horizontal surf:platform:stage", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:brass-brass ins:cornet, horn, trumpet, trump", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:brass-brass ins:trombone", "oc": 11}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:brass-brass ins:cornet, horn, trumpet, trump", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:person-individu:contestant:player-particip:ballplayer, baseball player", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:brass-brass ins:cornet, horn, trumpet, trump", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:person-individu:peer-equal-matc:associate:participant:groom, bridegroom", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:boot:cowboy boot", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:Leonberg", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:boot:cowboy boot", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:bovine:cattle-cows-kin:ox", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:boot:cowboy boot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:swimsuit-swimwe:bikini, two-piece", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:boot:cowboy boot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:armor-armour:body armor-body:chain mail, ring mail, mail, chain armor, chain armour, ring armor, ring armour", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:boot:cowboy boot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:chime, bell, gong", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:boot:cowboy boot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:boot:cowboy boot", "oc": 33}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:boot:cowboy boot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:cowboy hat, ten-gallon hat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:boot:cowboy boot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:piano-pianofort:grand piano, grand", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:boot:cowboy boot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:robe:kimono", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:boot:cowboy boot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:shoe:Loafer", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:boot:cowboy boot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:miniskirt, mini", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:boot:cowboy boot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:shoe shop, shoe-shop, shoe store", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:boot:cowboy boot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:swing", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:boot:cowboy boot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:unicycle, monocycle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:boot:cowboy boot", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:fungus:gyromitra", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:cowboy hat, ten-gallon hat", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Border collie", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:cowboy hat, ten-gallon hat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:banjo", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:cowboy hat, ten-gallon hat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:swimsuit-swimwe:bikini, two-piece", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:cowboy hat, ten-gallon hat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:neckwear:necktie-tie:bolo tie, bolo, bola tie, bola", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:cowboy hat, ten-gallon hat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:cowboy hat, ten-gallon hat", "oc": 32}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:cowboy hat, ten-gallon hat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:helmet:crash helmet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:cowboy hat, ten-gallon hat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:apparel-wearing:workwear:jean, blue jean, denim", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:cowboy hat, ten-gallon hat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:uniform:military uniform", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:cowboy hat, ten-gallon hat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:miniskirt, mini", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:cowboy hat, ten-gallon hat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:top-cover:cap:nipple", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:cowboy hat, ten-gallon hat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:package-parcel:packet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:cowboy hat, ten-gallon hat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:rotating mechan:circle-round:disk-disc:puck, hockey puck", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:cowboy hat, ten-gallon hat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:winder:reel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:cowboy hat, ten-gallon hat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:sombrero", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:cowboy hat, ten-gallon hat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:canopy:umbrella", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:cowboy hat, ten-gallon hat", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:dessert-sweet-a:frozen dessert:ice lolly, lolly, lollipop, popsicle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:baby bed-babys :cradle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:handcart-pushca:barrow, garden cart, lawn cart, wheelbarrow", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:baby bed-babys :cradle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:baby bed-babys :bassinet", "oc": 19}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:baby bed-babys :cradle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:sled-sledge-sle:bobsled, bobsleigh, bob", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:baby bed-babys :cradle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:baby bed-babys :cradle", "oc": 16}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:baby bed-babys :cradle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:baby bed-babys :crib, cot", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:baby bed-babys :cradle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:diaper, nappy, napkin", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:baby bed-babys :cradle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:iron, smoothing iron", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:baby bed-babys :cradle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:screen:mosquito net", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:baby bed-babys :cradle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:rotating mechan:circle-round:disk-disc:puck, hockey puck", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:baby bed-babys :cradle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:sofa-couch-loun:convertible-sof:studio couch, day bed", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:baby bed-babys :cradle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:farm machine:thresher, thrasher, threshing machine", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:baby bed-babys :cradle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:chair of state:throne", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:baby bed-babys :cradle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:tricycle, trike, velocipede", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:baby bed-babys :cradle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:wardrobe, closet, press", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:baby bed-babys :cradle", "at": "root:entity:physical entity:matter:substance:material-stuff:paper:tissue-tissue p:toilet tissue, toilet paper, bathroom tissue", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:lifting device:crane", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:cargo ship-carg:container ship, containership, container vessel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:lifting device:crane", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:lifting device:crane", "oc": 39}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:lifting device:crane", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:landing-landing:dock, dockage, docking facility", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:lifting device:crane", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:gear-parapherna:rig:drill rig-drill:drilling platform, offshore rig", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:lifting device:crane", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:pirate, pirate ship", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:lifting device:crane", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:bridge-span:steel arch bridge", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:lifting device:crane", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:swing", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:lifting device:crane", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :armored vehicle:tank, army tank, armored combat vehicle, armoured combat vehicle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:lifting device:crane", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:wreck", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:helmet:crash helmet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:sled-sledge-sle:bobsled, bobsleigh, bob", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:helmet:crash helmet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:helmet:crash helmet", "oc": 47}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:helmet:crash helmet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:telephone-phone:dial telephone, dial phone", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:helmet:crash helmet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:cap:lens cap, lens cover", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:crate", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:Chihuahua", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:crate", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Sennenhunde:Bernese mountain dog", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:crate", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:calculator-calc:abacus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:crate", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:outbuilding:shed:apiary, bee house", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:crate", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:birdhouse", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:crate", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:carton", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:crate", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:chest", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:crate", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:chest of drawer:chiffonier, commode", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:crate", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:crate", "oc": 25}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:crate", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:clock:digital clock", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:crate", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:office furnitur:file, file cabinet, filing cabinet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:crate", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :forklift", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:crate", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building comple:plant-works-ind:factory-mill-ma:lumbermill, sawmill", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:crate", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:van:moving van", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:crate", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:area:patio, terrace", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:crate", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:pop bottle, soda bottle", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:crate", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:pot, flowerpot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:crate", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:wine bottle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:crate", "at": "root:entity:abstraction-abs:communication:sign:street sign", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:baby bed-babys :crib, cot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:bannister, banister, balustrade, balusters, handrail", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:baby bed-babys :crib, cot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:baby bed-babys :bassinet", "oc": 5}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:baby bed-babys :crib, cot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:baby bed-babys :cradle", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:baby bed-babys :crib, cot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:baby bed-babys :crib, cot", "oc": 40}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:baby bed-babys :crib, cot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloth covering:bedclothes-bed :quilt, comforter, comfort, puff", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:baby bed-babys :crib, cot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:rocking chair, rocker", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:cooker:Crock Pot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:cooker:Crock Pot", "oc": 39}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:cooker:Crock Pot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pan-cooking pan:frying pan, frypan, skillet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:cooker:Crock Pot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:microwave, microwave oven", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:cooker:Crock Pot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:mortar", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:cooker:Crock Pot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electronic devi:mouse, computer mouse", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:cooker:Crock Pot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:cap:shower cap", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:cooker:Crock Pot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:toaster", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:cooker:Crock Pot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:outerwear-overc:gown-robe:vestment", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:cooker:Crock Pot", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:stew:hot pot, hotpot", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:cooker:Crock Pot", "at": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :ingredient-fixi:flavorer-flavou:condiment:sauce:chocolate sauce, chocolate syrup", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:croquet ball", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:gear-parapherna:kit-outfit:carpenter's kit, tool kit", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:croquet ball", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:croquet ball", "oc": 43}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:croquet ball", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:staff:crutch", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:croquet ball", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:golf equipment:golf ball", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:croquet ball", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:maraca", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:croquet ball", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:rugby ball", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:croquet ball", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:swing", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:staff:crutch", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:protective garm:apron", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:staff:crutch", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:barber chair", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:staff:crutch", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:bookshop, bookstore, bookstall", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:staff:crutch", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:bow", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:staff:crutch", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:cleaning implem:broom", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:staff:crutch", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:staff:crutch", "oc": 24}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:staff:crutch", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:drumstick", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:staff:crutch", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:staff:flagpole, flagstaff", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:staff:crutch", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:folding chair", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:staff:crutch", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:hammer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:staff:crutch", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:apparel-wearing:workwear:jean, blue jean, denim", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:staff:crutch", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:mailbag, postbag", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:staff:crutch", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:support:structural memb:upright-vertica:post:maypole", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:staff:crutch", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:miniskirt, mini", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:staff:crutch", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:nail", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:staff:crutch", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:machine-simple :wheel:pinwheel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:staff:crutch", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:purse", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:staff:crutch", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:screw", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:staff:crutch", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:shovel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:staff:crutch", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:runner:ski", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:staff:crutch", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:spotlight, spot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:staff:crutch", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:swing", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:staff:crutch", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:tricycle, trike, velocipede", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:armor-armour:body armor-body:cuirass", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shield:plate-scale-she:armor plate-arm:breastplate, aegis, egis", "oc": 9}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:armor-armour:body armor-body:cuirass", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:ride:carousel, carrousel, merry-go-round, roundabout, whirligig", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:armor-armour:body armor-body:cuirass", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:armor-armour:body armor-body:chain mail, ring mail, mail, chain armor, chain armour, ring armor, ring armour", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:armor-armour:body armor-body:cuirass", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:cabinet:china cabinet, china closet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:armor-armour:body armor-body:cuirass", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:armor-armour:body armor-body:cuirass", "oc": 25}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:armor-armour:body armor-body:cuirass", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:mask:gasmask, respirator, gas helmet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:armor-armour:body armor-body:cuirass", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:sheath:holster", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:armor-armour:body armor-body:cuirass", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:mask", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:armor-armour:body armor-body:cuirass", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:uniform:military uniform", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:armor-armour:body armor-body:cuirass", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:miniskirt, mini", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:armor-armour:body armor-body:cuirass", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:lock:padlock", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:armor-armour:body armor-body:cuirass", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:armor-armour:shield, buckler", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:armor-armour:body armor-body:cuirass", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :locomotive-engi:steam locomotive", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:armor-armour:body armor-body:cuirass", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:heater-warmer:stove", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:armor-armour:body armor-body:cuirass", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:tricycle, trike, velocipede", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:armor-armour:body armor-body:cuirass", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:jar:vase", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:dam, dike, dyke", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bin:ashcan, trash can, garbage can, wastebin, ash bin, ash-bin, ashbin, dustbin, trash barrel, trash bin", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:dam, dike, dyke", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:breakwater, groin, groyne, mole, bulwark, seawall, jetty", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:dam, dike, dyke", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:boat:small boat:canoe", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:dam, dike, dyke", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:housing-lodging:dwelling-home-d:cliff dwelling", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:dam, dike, dyke", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:dam, dike, dyke", "oc": 35}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:dam, dike, dyke", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:boat:fireboat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:dam, dike, dyke", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building comple:plant-works-ind:factory-mill-ma:lumbermill, sawmill", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:dam, dike, dyke", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:system:maze, labyrinth", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:dam, dike, dyke", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:shovel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:dam, dike, dyke", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:bridge-span:steel arch bridge", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:dam, dike, dyke", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:bridge-span:suspension bridge", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:dam, dike, dyke", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:dessert-sweet-a:frozen dessert:ice lolly, lolly, lollipop, popsicle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:dam, dike, dyke", "at": "root:entity:physical entity:object-physical:geological form:natural elevati:mountain-mount:alp", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:dam, dike, dyke", "at": "root:entity:physical entity:object-physical:geological form:natural elevati:ridge:bar:sandbar, sand bar", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:dam, dike, dyke", "at": "root:entity:physical entity:object-physical:geological form:natural elevati:mountain-mount:volcano", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:table:desk", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:beating-reed in:double-reed ins:bassoon", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:table:desk", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:table:desk", "oc": 26}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:table:desk", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:desktop computer", "oc": 10}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:table:desk", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:table:dining table, board", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:table:desk", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:office furnitur:file, file cabinet, filing cabinet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:table:desk", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:portable comput:laptop, laptop computer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:table:desk", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:library", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:table:desk", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electrical devi:transducer:electro-acousti:loudspeaker, speaker, speaker unit, loudspeaker system, speaker system", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:table:desk", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:monitor", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:table:desk", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:portable comput:notebook, notebook computer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:table:desk", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:area:patio, terrace", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:desktop computer", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:lagomorph-gnawi:leporid-leporid:rabbit-coney-co:Angora, Angora rabbit", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:desktop computer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:table:desk", "oc": 6}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:desktop computer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:desktop computer", "oc": 31}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:desktop computer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:portable comput:laptop, laptop computer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:desktop computer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:monitor", "oc": 5}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:desktop computer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:portable comput:notebook, notebook computer", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:desktop computer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:system:communication s:radio, wireless", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:desktop computer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electronic devi:display-video d:screen, CRT screen", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:desktop computer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:tape player", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:telephone-phone:dial telephone, dial phone", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:cooker:Crock Pot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:telephone-phone:dial telephone, dial phone", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:telephone-phone:dial telephone, dial phone", "oc": 42}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:telephone-phone:dial telephone, dial phone", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:lock:padlock", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:telephone-phone:dial telephone, dial phone", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:pop bottle, soda bottle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:telephone-phone:dial telephone, dial phone", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:scale, weighing machine", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:telephone-phone:dial telephone, dial phone", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:screw", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:telephone-phone:dial telephone, dial phone", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pot:teapot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:telephone-phone:dial telephone, dial phone", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:white goods:washer, automatic washer, washing machine", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:telephone-phone:dial telephone, dial phone", "at": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:mixed drink:punch:cup", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:diaper, nappy, napkin", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:cocker spaniel, English cocker spaniel, cocker", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:diaper, nappy, napkin", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:bulldog-English:French bulldog", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:diaper, nappy, napkin", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:gymnastic appar:balance beam, beam", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:diaper, nappy, napkin", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloth covering:dressing-medica:bandage-patch:adhesive bandag:Band Aid", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:diaper, nappy, napkin", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:barbershop", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:diaper, nappy, napkin", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:baby bed-babys :bassinet", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:diaper, nappy, napkin", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bathtub, bathing tub, bath, tub", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:diaper, nappy, napkin", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:baby bed-babys :crib, cot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:diaper, nappy, napkin", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:diaper, nappy, napkin", "oc": 30}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:diaper, nappy, napkin", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:weight-free wei:dumbbell", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:diaper, nappy, napkin", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:blower:hand blower, blow dryer, blow drier, hair dryer, hair drier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:diaper, nappy, napkin", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:top-cover:cap:nipple", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:diaper, nappy, napkin", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:bench:park bench", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:diaper, nappy, napkin", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:plastic bag", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:diaper, nappy, napkin", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:basket-handbask:shopping basket", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:diaper, nappy, napkin", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:swimsuit-swimwe:swimming trunks, bathing trunks", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:diaper, nappy, napkin", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:person-individu:peer-equal-matc:associate:participant:groom, bridegroom", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:diaper, nappy, napkin", "at": "root:entity:physical entity:matter:substance:material-stuff:paper:tissue-tissue p:toilet tissue, toilet paper, bathroom tissue", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:clock:digital clock", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:clock:analog clock", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:clock:digital clock", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:binder, ring-binder", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:clock:digital clock", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:CD player", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:clock:digital clock", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:clock:digital clock", "oc": 30}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:clock:digital clock", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:watch-ticker:digital watch", "oc": 5}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:clock:digital clock", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:audio system-so:reproducer:stereo-stereoph:iPod", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:clock:digital clock", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:monitor", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:clock:digital clock", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:projector", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:clock:digital clock", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:purse", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:clock:digital clock", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:system:communication s:radio, wireless", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:clock:digital clock", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:signboard-sign:scoreboard", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:clock:digital clock", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:textile machine:sewing machine", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:clock:digital clock", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:slot machine-co:slot, one-armed bandit", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:clock:digital clock", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:spectacles-spec:sunglasses, dark glasses, shades", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:clock:digital clock", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:tape player", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:clock:digital clock", "at": "root:entity:abstraction-abs:communication:signal-signalin:visual signal:light:traffic light, traffic signal, stoplight", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:watch-ticker:digital watch", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:buckle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:watch-ticker:digital watch", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:telephone-phone:radiotelephone-:cellular telephone, cellular phone, cellphone, cell, mobile phone", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:watch-ticker:digital watch", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:clock:digital clock", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:watch-ticker:digital watch", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:watch-ticker:digital watch", "oc": 30}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:watch-ticker:digital watch", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:meter:odometer, hodometer, mileometer, milometer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:watch-ticker:digital watch", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:screw", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:watch-ticker:digital watch", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:basket-handbask:shopping basket", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:watch-ticker:digital watch", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:timer:stopwatch, stop watch", "oc": 8}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:watch-ticker:digital watch", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:cleaning implem:swab, swob, mop", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:watch-ticker:digital watch", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:control-control:switch, electric switch, electrical switch", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:watch-ticker:digital watch", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:fabric-cloth-ma:velvet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:watch-ticker:digital watch", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:dessert-sweet-a:frozen dessert:ice lolly, lolly, lollipop, popsicle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:table:dining table, board", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:table:dining table, board", "oc": 38}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:table:dining table, board", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:folding chair", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:table:dining table, board", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:golfcart, golf cart", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:table:dining table, board", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:piano-pianofort:grand piano, grand", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:table:dining table, board", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:library", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:table:dining table, board", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:area:patio, terrace", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:table:dining table, board", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:perfume, essence", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:table:dining table, board", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:restaurant, eating house, eating place, eatery", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:table:dining table, board", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:screen-cover-co:shoji", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:table:dining table, board", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pot:teapot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:dishrag, dishcloth", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:venomous lizard:Gila monster, Heloderma suspectum", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:dishrag, dishcloth", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:coelenterate-cn:anthozoan-actin:coral:stony coral-mad:brain coral", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:dishrag, dishcloth", "at": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:bib", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:dishrag, dishcloth", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:footwear:hosiery-hose:stocking:Christmas stocking", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:dishrag, dishcloth", "at": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:dishrag, dishcloth", "oc": 40}, {"rt": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:dishrag, dishcloth", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:floor cover-flo:mat:doormat, welcome mat", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:dishrag, dishcloth", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:scarf:stole", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:dishrag, dishcloth", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:fabric-cloth-ma:velvet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:white goods:dishwasher, dish washer, dishwashing machine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:candle, taper, wax light", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:white goods:dishwasher, dish washer, dishwashing machine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:gear-parapherna:kit-outfit:carpenter's kit, tool kit", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:white goods:dishwasher, dish washer, dishwashing machine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:cabinet:china cabinet, china closet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:white goods:dishwasher, dish washer, dishwashing machine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:table:desk", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:white goods:dishwasher, dish washer, dishwashing machine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:white goods:dishwasher, dish washer, dishwashing machine", "oc": 24}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:white goods:dishwasher, dish washer, dishwashing machine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:drumstick", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:white goods:dishwasher, dish washer, dishwashing machine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:coffee maker:espresso maker", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:white goods:dishwasher, dish washer, dishwashing machine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:iron, smoothing iron", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:white goods:dishwasher, dish washer, dishwashing machine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:mailbox, letter box", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:white goods:dishwasher, dish washer, dishwashing machine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:microwave, microwave oven", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:white goods:dishwasher, dish washer, dishwashing machine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:van:moving van", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:white goods:dishwasher, dish washer, dishwashing machine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:apparatus-setup:duplicator-copi:photocopier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:white goods:dishwasher, dish washer, dishwashing machine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:printer-printin:printer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:white goods:dishwasher, dish washer, dishwashing machine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:strongbox-deedb:safe", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:white goods:dishwasher, dish washer, dishwashing machine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:textile machine:sewing machine", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:white goods:dishwasher, dish washer, dishwashing machine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:handcart-pushca:shopping cart", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:white goods:dishwasher, dish washer, dishwashing machine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:heater-warmer:stove", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:white goods:dishwasher, dish washer, dishwashing machine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:medical instrum:syringe", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:white goods:dishwasher, dish washer, dishwashing machine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:tape player", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:white goods:dishwasher, dish washer, dishwashing machine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:jar:vase", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:white goods:dishwasher, dish washer, dishwashing machine", "at": "root:entity:abstraction-abs:attribute:shape-form:round shape:sphere:ball-globe-orb:globule:bubble", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:brake:brake system-br:hydraulic brake:disk brake, disc brake", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:machine-simple :wheel:car wheel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:brake:brake system-br:hydraulic brake:disk brake, disc brake", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:helmet:crash helmet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:brake:brake system-br:hydraulic brake:disk brake, disc brake", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:brake:brake system-br:hydraulic brake:disk brake, disc brake", "oc": 47}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:brake:brake system-br:hydraulic brake:disk brake, disc brake", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:motor scooter, scooter", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:landing-landing:dock, dockage, docking facility", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:warship-war ves:aircraft carrier, carrier, flattop, attack aircraft carrier", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:landing-landing:dock, dockage, docking facility", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:outbuilding:shed:boathouse", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:landing-landing:dock, dockage, docking facility", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:cargo ship-carg:container ship, containership, container vessel", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:landing-landing:dock, dockage, docking facility", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:lifting device:crane", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:landing-landing:dock, dockage, docking facility", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:staff:crutch", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:landing-landing:dock, dockage, docking facility", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:landing-landing:dock, dockage, docking facility", "oc": 30}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:landing-landing:dock, dockage, docking facility", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:gear-parapherna:rig:drill rig-drill:drilling platform, offshore rig", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:landing-landing:dock, dockage, docking facility", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:passenger ship:liner, ocean liner", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:landing-landing:dock, dockage, docking facility", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:support:pier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:landing-landing:dock, dockage, docking facility", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:pirate, pirate ship", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:landing-landing:dock, dockage, docking facility", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:wreck", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:landing-landing:dock, dockage, docking facility", "at": "root:entity:physical entity:object-physical:geological form:shore:lakeside, lakeshore", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:sled-sledge-sle:dogsled, dog sled, dog sleigh", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:greyhound:whippet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:sled-sledge-sle:dogsled, dog sled, dog sleigh", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:sled dog-sledge:malamute, malemute, Alaskan malamute", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:sled-sledge-sle:dogsled, dog sled, dog sleigh", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:pug, pug-dog", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:sled-sledge-sle:dogsled, dog sled, dog sleigh", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:sled-sledge-sle:dogsled, dog sled, dog sleigh", "oc": 45}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:sled-sledge-sle:dogsled, dog sled, dog sleigh", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:car-railcar-rai:passenger car, coach, carriage", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:roof:dome", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:breakwater, groin, groyne, mole, bulwark, seawall, jetty", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:roof:dome", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:place of worshi:church, church building", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:roof:dome", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:roof:dome", "oc": 34}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:roof:dome", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:gong, tam-tam", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:roof:dome", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:library", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:roof:dome", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:house:residence:religious resid:monastery", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:roof:dome", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:place of worshi:mosque", "oc": 5}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:roof:dome", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:house:residence:palace", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:roof:dome", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:reflector:solar dish, solar collector, solar furnace", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:roof:dome", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :streetcar, tram, tramcar, trolley, trolley car", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:floor cover-flo:mat:doormat, welcome mat", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:sled dog-sledge:Siberian husky", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:floor cover-flo:mat:doormat, welcome mat", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:domestic cat-ho:tiger cat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:floor cover-flo:mat:doormat, welcome mat", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:homopterous ins:cicada, cicala", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:floor cover-flo:mat:doormat, welcome mat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:bannister, banister, balustrade, balusters, handrail", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:floor cover-flo:mat:doormat, welcome mat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:armor-armour:body armor-body:chain mail, ring mail, mail, chain armor, chain armour, ring armor, ring armour", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:floor cover-flo:mat:doormat, welcome mat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:cowboy hat, ten-gallon hat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:floor cover-flo:mat:doormat, welcome mat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:floor cover-flo:mat:doormat, welcome mat", "oc": 23}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:floor cover-flo:mat:doormat, welcome mat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:office furnitur:file, file cabinet, filing cabinet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:floor cover-flo:mat:doormat, welcome mat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:screen:fire screen, fireguard", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:floor cover-flo:mat:doormat, welcome mat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:game:puzzle:jigsaw puzzle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:floor cover-flo:mat:doormat, welcome mat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:mailbox, letter box", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:floor cover-flo:mat:doormat, welcome mat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:top-cover:manhole cover", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:floor cover-flo:mat:doormat, welcome mat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:trap:mousetrap", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:floor cover-flo:mat:doormat, welcome mat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:pick, plectrum, plectron", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:floor cover-flo:mat:doormat, welcome mat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:padding-cushion:cushion:pillow", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:floor cover-flo:mat:doormat, welcome mat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:ping-pong ball", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:floor cover-flo:mat:doormat, welcome mat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:floor cover-flo:rug-carpet-carp:prayer rug, prayer mat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:floor cover-flo:mat:doormat, welcome mat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:rotating mechan:circle-round:disk-disc:puck, hockey puck", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:floor cover-flo:mat:doormat, welcome mat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:shoe:sandal", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:floor cover-flo:mat:doormat, welcome mat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:shoe shop, shoe-shop, shoe store", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:floor cover-flo:mat:doormat, welcome mat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dispenser:soap dispenser", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:floor cover-flo:mat:doormat, welcome mat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:plaything-toy:teddy, teddy bear", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:floor cover-flo:mat:doormat, welcome mat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:blind-screen:curtain-drape-d:theater curtain, theatre curtain", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:floor cover-flo:mat:doormat, welcome mat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:receptacle:tray", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:floor cover-flo:mat:doormat, welcome mat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:canopy:umbrella", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:floor cover-flo:mat:doormat, welcome mat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:screen:window screen", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:floor cover-flo:mat:doormat, welcome mat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:fabric-cloth-ma:wool, woolen, woollen", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:gear-parapherna:rig:drill rig-drill:drilling platform, offshore rig", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:warship-war ves:aircraft carrier, carrier, flattop, attack aircraft carrier", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:gear-parapherna:rig:drill rig-drill:drilling platform, offshore rig", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:breakwater, groin, groyne, mole, bulwark, seawall, jetty", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:gear-parapherna:rig:drill rig-drill:drilling platform, offshore rig", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:landing-landing:dock, dockage, docking facility", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:gear-parapherna:rig:drill rig-drill:drilling platform, offshore rig", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:gear-parapherna:rig:drill rig-drill:drilling platform, offshore rig", "oc": 41}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:gear-parapherna:rig:drill rig-drill:drilling platform, offshore rig", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:support:pier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:gear-parapherna:rig:drill rig-drill:drilling platform, offshore rig", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:pirate, pirate ship", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:gear-parapherna:rig:drill rig-drill:drilling platform, offshore rig", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:plow, plough", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:gear-parapherna:rig:drill rig-drill:drilling platform, offshore rig", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:sailing vessel-:sailboat-sailin:trimaran", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:drum, membranophone, tympan", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crab:king crab, Alaska crab, Alaskan king crab, Alaska king crab, Paralithodes camtschatica", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:drum, membranophone, tympan", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:Old World buffa:water buffalo, water ox, Asiatic buffalo, Bubalus bubalis", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:drum, membranophone, tympan", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:outerwear-overc:gown-robe:academic gown, academic robe, judge's robe", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:drum, membranophone, tympan", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:handcart-pushca:barrow, garden cart, lawn cart, wheelbarrow", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:drum, membranophone, tympan", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:bearskin, busby, shako", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:drum, membranophone, tympan", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bucket, pail", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:drum, membranophone, tympan", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:drum, membranophone, tympan", "oc": 23}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:drum, membranophone, tympan", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:drumstick", "oc": 7}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:drum, membranophone, tympan", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:flute, transverse flute", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:drum, membranophone, tympan", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:folding chair", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:drum, membranophone, tympan", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:sharpener:pencil sharpener", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:drum, membranophone, tympan", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:surface:horizontal surf:platform:stage", "oc": 5}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:drum, membranophone, tympan", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:steel drum", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:drum, membranophone, tympan", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:support:rack-stand:tripod", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:drum, membranophone, tympan", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:brass-brass ins:trombone", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:drum, membranophone, tympan", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:person-individu:contestant:player-particip:ballplayer, baseball player", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:drumstick", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:robe:abaya", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:drumstick", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:writing impleme:pen:ballpoint, ballpoint pen, ballpen, Biro", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:drumstick", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:cleaning implem:broom", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:drumstick", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:gear-parapherna:kit-outfit:carpenter's kit, tool kit", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:drumstick", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:chime, bell, gong", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:drumstick", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:drum, membranophone, tympan", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:drumstick", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:drumstick", "oc": 27}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:drumstick", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:envelope", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:drumstick", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:ax-axe:hatchet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:drumstick", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:knife:letter opener, paper knife, paperknife", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:drumstick", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:matchstick", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:drumstick", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:oar:paddle, boat paddle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:drumstick", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:pick, plectrum, plectron", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:drumstick", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:photographic eq:camera-photogra:Polaroid camera, Polaroid Land camera", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:drumstick", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:writing impleme:pen:quill, quill pen", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:drumstick", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:eraser:rubber eraser, rubber, pencil eraser", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:drumstick", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:spindle", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:drumstick", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:surface:horizontal surf:platform:stage", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:drumstick", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:support:rack-stand:tripod", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:drumstick", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:brass-brass ins:trombone", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:drumstick", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:article:ware:tableware:cutlery-eating :spoon:wooden spoon", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:weight-free wei:dumbbell", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:calculator-calc:abacus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:weight-free wei:dumbbell", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:firearm-piece-s:autoloader-self:automatic firea:automatic rifle:assault rifle, assault gun", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:weight-free wei:dumbbell", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:weight-free wei:barbell", "oc": 13}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:weight-free wei:dumbbell", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:basketball equi:basketball", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:weight-free wei:dumbbell", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:cannon", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:weight-free wei:dumbbell", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:gear-parapherna:kit-outfit:carpenter's kit, tool kit", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:weight-free wei:dumbbell", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:weight-free wei:dumbbell", "oc": 24}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:weight-free wei:dumbbell", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:brass-brass ins:French horn, horn", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:weight-free wei:dumbbell", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:mask:gasmask, respirator, gas helmet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:weight-free wei:dumbbell", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:system:maze, labyrinth", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:weight-free wei:dumbbell", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:uniform:military uniform", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:weight-free wei:dumbbell", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:gymnastic appar:parallel bars, bars", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:weight-free wei:dumbbell", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:punching bag, punch bag, punching ball, punchball", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:weight-free wei:dumbbell", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:litter:stretcher", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:weight-free wei:dumbbell", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:wine bottle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:oven:Dutch oven", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pot:caldron, cauldron", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:oven:Dutch oven", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:cooker:Crock Pot", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:oven:Dutch oven", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:oven:Dutch oven", "oc": 35}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:oven:Dutch oven", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pan-cooking pan:frying pan, frypan, skillet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:oven:Dutch oven", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dish:bowl:mixing bowl", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:oven:Dutch oven", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pot:teapot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:oven:Dutch oven", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:jar:vase", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:oven:Dutch oven", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pan-cooking pan:wok", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:oven:Dutch oven", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:article:ware:tableware:cutlery-eating :spoon:wooden spoon", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:oven:Dutch oven", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:stew:hot pot, hotpot", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:oven:Dutch oven", "at": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:bun-roll:bagel, beigel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:oven:Dutch oven", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:cucumber, cuke", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:oven:Dutch oven", "at": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :concoction-mixt:dough", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:oven:Dutch oven", "at": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:loaf of bread-l:meat loaf, meatloaf", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:fan:electric fan, blower", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:brake:brake system-br:hydraulic brake:disk brake, disc brake", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:fan:electric fan, blower", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:fan:electric fan, blower", "oc": 39}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:fan:electric fan, blower", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:screen:fire screen, fireguard", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:fan:electric fan, blower", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:memory device-s:magnetic disk-m:hard disc, hard disk, fixed disk", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:fan:electric fan, blower", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electrical devi:transducer:electro-acousti:microphone, mike", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:fan:electric fan, blower", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:motorcycle-bike:minibike-motorb:moped", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:fan:electric fan, blower", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:plow, plough", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:fan:electric fan, blower", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:rotating mechan:circle-round:disk-disc:puck, hockey puck", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:fan:electric fan, blower", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:heater-warmer:space heater", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:fan:electric fan, blower", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:spotlight, spot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:fan:electric fan, blower", "at": "root:entity:abstraction-abs:communication:signal-signalin:visual signal:light:traffic light, traffic signal, stoplight", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:guitar:electric guitar", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:guitar:acoustic guitar", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:guitar:electric guitar", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:banjo", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:guitar:electric guitar", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:beating-reed in:double-reed ins:bassoon", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:guitar:electric guitar", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:bowed stringed :cello, violoncello", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:guitar:electric guitar", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:guitar:electric guitar", "oc": 34}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:guitar:electric guitar", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:free-reed instr:harmonica, mouth organ, harp, mouth harp", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:guitar:electric guitar", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:surface:horizontal surf:platform:stage", "oc": 6}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:guitar:electric guitar", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:creation:product-product:work-piece of w:publication:magazine-mag:comic book", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :locomotive-engi:electric locomotive", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :locomotive-engi:electric locomotive", "oc": 45}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :locomotive-engi:electric locomotive", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:car-railcar-rai:passenger car, coach, carriage", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :locomotive-engi:electric locomotive", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:bridge-span:steel arch bridge", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :locomotive-engi:electric locomotive", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :streetcar, tram, tramcar, trolley, trolley car", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:wall unit:entertainment center", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:table:desk", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:wall unit:entertainment center", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:desktop computer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:wall unit:entertainment center", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:wall unit:entertainment center", "oc": 45}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:wall unit:entertainment center", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:theater-theatre:home theater, home theatre", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:envelope", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:lobster:spiny lobster, langouste, rock lobster, crawfish, crayfish, sea crawfish", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:envelope", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:orthopterous in:grasshopper, hopper", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:envelope", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloth covering:dressing-medica:bandage-patch:adhesive bandag:Band Aid", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:envelope", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:farm building:barn", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:envelope", "at": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:bib", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:envelope", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:baby bed-babys :crib, cot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:envelope", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:cooker:Crock Pot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:envelope", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:floor cover-flo:mat:doormat, welcome mat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:envelope", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:envelope", "oc": 24}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:envelope", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:clip:hair slide", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:envelope", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:basket-handbask:hamper", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:envelope", "at": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:handkerchief, hankie, hanky, hankey", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:envelope", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:ax-axe:hatchet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:envelope", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:mailbag, postbag", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:envelope", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:meter:odometer, hodometer, mileometer, milometer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:envelope", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:package-parcel:packet", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:envelope", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:shaker:saltshaker, salt shaker", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:envelope", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:receptacle:tray", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:envelope", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:case:wallet, billfold, notecase, pocketbook", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:envelope", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:web site, website, internet site, site", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:envelope", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:game:puzzle:crossword puzzle, crossword", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:envelope", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:wrapping-wrap-w:jacket:book jacket, dust cover, dust jacket, dust wrapper", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:envelope", "at": "root:entity:physical entity:matter:substance:food-nutrient:fare:menu", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:coffee maker:espresso maker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:opener:can opener, tin opener", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:coffee maker:espresso maker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pot:coffeepot", "oc": 9}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:coffee maker:espresso maker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:coffee maker:espresso maker", "oc": 36}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:coffee maker:espresso maker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:screen:fire screen, fireguard", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:coffee maker:espresso maker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:turner-food tur:spatula", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:coffee maker:espresso maker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:medical instrum:syringe", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:coffee maker:espresso maker", "at": "root:entity:physical entity:matter:substance:food-nutrient:beverage-drink-:coffee-java:espresso", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cosmetic:makeup-make-up-:face powder", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bucket, pail", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cosmetic:makeup-make-up-:face powder", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:drinking vessel:mug:coffee mug", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cosmetic:makeup-make-up-:face powder", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cosmetic:makeup-make-up-:face powder", "oc": 31}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cosmetic:makeup-make-up-:face powder", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:hammer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cosmetic:makeup-make-up-:face powder", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:basket-handbask:hamper", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cosmetic:makeup-make-up-:face powder", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cosmetic:makeup-make-up-:lipstick, lip rouge", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cosmetic:makeup-make-up-:face powder", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:lotion", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cosmetic:makeup-make-up-:face powder", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:scientific inst:magnifier:microscope:light microscop:hand glass-simp:loupe, jeweler's loupe", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cosmetic:makeup-make-up-:face powder", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:navigational in:compass:magnetic compass", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cosmetic:makeup-make-up-:face powder", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:mortar", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cosmetic:makeup-make-up-:face powder", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:filter:oil filter", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cosmetic:makeup-make-up-:face powder", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dish:Petri dish", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cosmetic:makeup-make-up-:face powder", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:pill bottle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cosmetic:makeup-make-up-:face powder", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:eraser:rubber eraser, rubber, pencil eraser", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cosmetic:makeup-make-up-:face powder", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:spindle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cosmetic:makeup-make-up-:face powder", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:medical instrum:stethoscope", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cosmetic:makeup-make-up-:face powder", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:case:wallet, billfold, notecase, pocketbook", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cosmetic:makeup-make-up-:face powder", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:web site, website, internet site, site", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cosmetic:makeup-make-up-:face powder", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:game:puzzle:crossword puzzle, crossword", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cosmetic:makeup-make-up-:face powder", "at": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:mixed drink:punch:cup", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:scarf:feather boa, boa", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:box turtle, box tortoise", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:scarf:feather boa, boa", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:Chihuahua", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:scarf:feather boa, boa", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:domestic cat-ho:tabby, tabby cat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:scarf:feather boa, boa", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:bearskin, busby, shako", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:scarf:feather boa, boa", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:bicycle-bike-wh:bicycle-built-for-two, tandem bicycle, tandem", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:scarf:feather boa, boa", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:scarf:feather boa, boa", "oc": 43}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:scarf:feather boa, boa", "at": "root:entity:physical entity:object-physical:geological form:natural elevati:mountain-mount:volcano", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:scarf:feather boa, boa", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:person-individu:peer-equal-matc:associate:participant:groom, bridegroom", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:office furnitur:file, file cabinet, filing cabinet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:bookcase", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:office furnitur:file, file cabinet, filing cabinet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:bookshop, bookstore, bookstall", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:office furnitur:file, file cabinet, filing cabinet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:table:desk", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:office furnitur:file, file cabinet, filing cabinet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:office furnitur:file, file cabinet, filing cabinet", "oc": 41}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:office furnitur:file, file cabinet, filing cabinet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:library", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:office furnitur:file, file cabinet, filing cabinet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:supporting stru:framework:rack:plate rack", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:office furnitur:file, file cabinet, filing cabinet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:white goods:refrigerator, icebox", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:office furnitur:file, file cabinet, filing cabinet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:strongbox-deedb:safe", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:boat:fireboat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:cargo ship-carg:container ship, containership, container vessel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:boat:fireboat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:boat:fireboat", "oc": 48}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:boat:fireboat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:area:patio, terrace", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:fire engine, fire truck", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:fire engine, fire truck", "oc": 42}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:fire engine, fire truck", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:garbage truck, dustcart", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:fire engine, fire truck", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:farm machine:harvester, reaper", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:fire engine, fire truck", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:column-pillar:obelisk", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:fire engine, fire truck", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:van:police van, police wagon, paddy wagon, patrol wagon, wagon, black Maria", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:fire engine, fire truck", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :streetcar, tram, tramcar, trolley, trolley car", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:fire engine, fire truck", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:litter:stretcher", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:fire engine, fire truck", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:trailer truck, tractor trailer, trucking rig, rig, articulated lorry, semi", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:fire engine, fire truck", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:slot machine-co:vending machine", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:screen:fire screen, fireguard", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:calculator-calc:abacus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:screen:fire screen, fireguard", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:backpack, back pack, knapsack, packsack, rucksack, haversack", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:screen:fire screen, fireguard", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:bannister, banister, balustrade, balusters, handrail", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:screen:fire screen, fireguard", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:birdhouse", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:screen:fire screen, fireguard", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:vest-waistcoat:bulletproof vest", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:screen:fire screen, fireguard", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:chest", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:screen:fire screen, fireguard", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:cabinet:china cabinet, china closet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:screen:fire screen, fireguard", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:wall unit:entertainment center", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:screen:fire screen, fireguard", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:screen:fire screen, fireguard", "oc": 25}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:screen:fire screen, fireguard", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:bedroom furnitu:bed:four-poster", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:screen:fire screen, fireguard", "at": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:handkerchief, hankie, hanky, hankey", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:screen:fire screen, fireguard", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:supporting stru:framework:honeycomb", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:screen:fire screen, fireguard", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:game:puzzle:jigsaw puzzle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:screen:fire screen, fireguard", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:shelter:tent-collapsibl:mountain tent", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:screen:fire screen, fireguard", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:bench:park bench", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:screen:fire screen, fireguard", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:area:patio, terrace", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:screen:fire screen, fireguard", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:institution:penal instituti:correctional in:prison, prison house", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:screen:fire screen, fireguard", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:white goods:refrigerator, icebox", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:screen:fire screen, fireguard", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:screen-cover-co:shoji", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:screen:fire screen, fireguard", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:sombrero", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:screen:fire screen, fireguard", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:receptacle:tray", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:screen:fire screen, fireguard", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:piano-pianofort:upright, upright piano", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:screen:fire screen, fireguard", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:roof:vault", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:screen:fire screen, fireguard", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:blind-screen:window blind:window shade", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:staff:flagpole, flagstaff", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:aircraft:lighter-than-ai:balloon", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:staff:flagpole, flagstaff", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:bannister, banister, balustrade, balusters, handrail", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:staff:flagpole, flagstaff", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:place of worshi:church, church building", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:staff:flagpole, flagstaff", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:lifting device:crane", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:staff:flagpole, flagstaff", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:staff:flagpole, flagstaff", "oc": 36}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:staff:flagpole, flagstaff", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:fountain", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:staff:flagpole, flagstaff", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:limousine, limo", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:staff:flagpole, flagstaff", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:rocket-projecti:missile", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:staff:flagpole, flagstaff", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:column-pillar:obelisk", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:staff:flagpole, flagstaff", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:house:residence:palace", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:staff:flagpole, flagstaff", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:supporting stru:support:pedestal, plinth, footstall", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:staff:flagpole, flagstaff", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:rod:pole", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:staff:flagpole, flagstaff", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:column-pillar:totem pole", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:staff:flagpole, flagstaff", "at": "root:entity:abstraction-abs:attribute:shape-form:round shape:sphere:ball-globe-orb:globule:bubble", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:flute, transverse flute", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:dalmatian, coach dog, carriage dog", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:flute, transverse flute", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:beating-reed in:double-reed ins:bassoon", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:flute, transverse flute", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:brass-brass ins:cornet, horn, trumpet, trump", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:flute, transverse flute", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:croquet ball", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:flute, transverse flute", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:drum, membranophone, tympan", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:flute, transverse flute", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:drumstick", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:flute, transverse flute", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:flute, transverse flute", "oc": 19}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:flute, transverse flute", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:writing impleme:pen:fountain pen", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:flute, transverse flute", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:free-reed instr:harmonica, mouth organ, harp, mouth harp", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:flute, transverse flute", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:marimba, xylophone", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:flute, transverse flute", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electrical devi:transducer:electro-acousti:microphone, mike", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:flute, transverse flute", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:beating-reed in:double-reed ins:oboe, hautboy, hautbois", "oc": 5}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:flute, transverse flute", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:pipe:panpipe, pandean pipe, syrinx", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:flute, transverse flute", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:pencil box, pencil case", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:flute, transverse flute", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:plunger, plumber's helper", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:flute, transverse flute", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:sports implemen:racket, racquet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:flute, transverse flute", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:system:communication s:radio, wireless", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:flute, transverse flute", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:firearm-piece-s:rifle", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:flute, transverse flute", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:beating-reed in:single-reed ins:sax, saxophone", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:flute, transverse flute", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:surface:horizontal surf:platform:stage", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:flute, transverse flute", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:piano-pianofort:upright, upright piano", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:folding chair", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:handcart-pushca:barrow, garden cart, lawn cart, wheelbarrow", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:folding chair", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:baby bed-babys :bassinet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:folding chair", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:beating-reed in:double-reed ins:bassoon", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:folding chair", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:theater-theatre:cinema, movie theater, movie theatre, movie house, picture palace", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:folding chair", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:baby bed-babys :cradle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:folding chair", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:table:dining table, board", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:folding chair", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:folding chair", "oc": 30}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:folding chair", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:golfcart, golf cart", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:folding chair", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:system:maze, labyrinth", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:folding chair", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:area:patio, terrace", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:folding chair", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:picket fence, paling", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:folding chair", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:plastic bag", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:folding chair", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:rocking chair, rocker", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:folding chair", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:public transpor:bus-autobus-coa:school bus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:folding chair", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:handcart-pushca:shopping cart", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:folding chair", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:sleeping bag", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:folding chair", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:sundial", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:folding chair", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:dessert-sweet-a:frozen dessert:ice lolly, lolly, lollipop, popsicle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:helmet:football helmet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:cap:bathing cap, swimming cap", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:helmet:football helmet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:helmet:crash helmet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:helmet:football helmet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:helmet:football helmet", "oc": 45}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:helmet:football helmet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:support:structural memb:upright-vertica:post:maypole", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:helmet:football helmet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:machine-simple :wheel:pinwheel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:helmet:football helmet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:rugby ball", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :forklift", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :forklift", "oc": 41}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :forklift", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:golfcart, golf cart", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :forklift", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:instrument of e:guillotine", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :forklift", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:farm machine:harvester, reaper", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :forklift", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building comple:plant-works-ind:factory-mill-ma:lumbermill, sawmill", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :forklift", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:van:moving van", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :forklift", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:snowplow, snowplough", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :forklift", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:litter:stretcher", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :forklift", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :tractor", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :forklift", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:trailer truck, tractor trailer, trucking rig, rig, articulated lorry, semi", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:fountain", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:dam, dike, dyke", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:fountain", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:fountain", "oc": 41}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:fountain", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:library", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:fountain", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:rocket-projecti:missile", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:fountain", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:place of worshi:mosque", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:fountain", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:bridge-span:steel arch bridge", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:fountain", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:swimsuit-swimwe:swimming trunks, bathing trunks", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:fountain", "at": "root:entity:physical entity:object-physical:geological form:shore:lakeside, lakeshore", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:fountain", "at": "root:entity:physical entity:object-physical:geological form:natural depress:valley, vale", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:writing impleme:pen:fountain pen", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:writing impleme:pen:ballpoint, ballpoint pen, ballpen, Biro", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:writing impleme:pen:fountain pen", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:writing impleme:pen:fountain pen", "oc": 39}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:writing impleme:pen:fountain pen", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:cap:lens cap, lens cover", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:writing impleme:pen:fountain pen", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cosmetic:makeup-make-up-:lipstick, lip rouge", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:writing impleme:pen:fountain pen", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:nail", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:writing impleme:pen:fountain pen", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:eraser:rubber eraser, rubber, pencil eraser", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:writing impleme:pen:fountain pen", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:sheath:scabbard", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:writing impleme:pen:fountain pen", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:control-control:switch, electric switch, electrical switch", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:writing impleme:pen:fountain pen", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:article:ware:tableware:cutlery-eating :spoon:wooden spoon", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:bedroom furnitu:bed:four-poster", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:altar", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:bedroom furnitu:bed:four-poster", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:bookshop, bookstore, bookstall", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:bedroom furnitu:bed:four-poster", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:cabinet:china cabinet, china closet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:bedroom furnitu:bed:four-poster", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:table:dining table, board", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:bedroom furnitu:bed:four-poster", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:bedroom furnitu:bed:four-poster", "oc": 41}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:bedroom furnitu:bed:four-poster", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:screen:mosquito net", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:bedroom furnitu:bed:four-poster", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:movable barrier:door:sliding door", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:car-railcar-rai:freight car", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:warship-war ves:aircraft carrier, carrier, flattop, attack aircraft carrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:car-railcar-rai:freight car", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:car-railcar-rai:freight car", "oc": 47}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:car-railcar-rai:freight car", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:trailer-house t:mobile home, manufactured home", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:car-railcar-rai:freight car", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :locomotive-engi:steam locomotive", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:brass-brass ins:French horn, horn", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:beating-reed in:double-reed ins:bassoon", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:brass-brass ins:French horn, horn", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:brass-brass ins:cornet, horn, trumpet, trump", "oc": 6}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:brass-brass ins:French horn, horn", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:brass-brass ins:French horn, horn", "oc": 38}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:brass-brass ins:French horn, horn", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:beating-reed in:single-reed ins:sax, saxophone", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:brass-brass ins:French horn, horn", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:surface:horizontal surf:platform:stage", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:brass-brass ins:French horn, horn", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:brass-brass ins:trombone", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pan-cooking pan:frying pan, frypan, skillet", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:food fish:barracouta, snoek", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pan-cooking pan:frying pan, frypan, skillet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:neckwear:necktie-tie:bolo tie, bolo, bola tie, bola", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pan-cooking pan:frying pan, frypan, skillet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:butcher shop, meat market", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pan-cooking pan:frying pan, frypan, skillet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:cooker:Crock Pot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pan-cooking pan:frying pan, frypan, skillet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:oven:Dutch oven", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pan-cooking pan:frying pan, frypan, skillet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pan-cooking pan:frying pan, frypan, skillet", "oc": 17}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pan-cooking pan:frying pan, frypan, skillet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:instrument of e:guillotine", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pan-cooking pan:frying pan, frypan, skillet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:blower:hand blower, blow dryer, blow drier, hair dryer, hair drier", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pan-cooking pan:frying pan, frypan, skillet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:ladle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pan-cooking pan:frying pan, frypan, skillet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:top-cover:manhole cover", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pan-cooking pan:frying pan, frypan, skillet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:maraca", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pan-cooking pan:frying pan, frypan, skillet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:excavation:pool:cistern:rain barrel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pan-cooking pan:frying pan, frypan, skillet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dish:bowl:soup bowl", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pan-cooking pan:frying pan, frypan, skillet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:turner-food tur:spatula", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pan-cooking pan:frying pan, frypan, skillet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:heater-warmer:stove", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pan-cooking pan:frying pan, frypan, skillet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:receptacle:tray", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pan-cooking pan:frying pan, frypan, skillet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:tub, vat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pan-cooking pan:frying pan, frypan, skillet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pan-cooking pan:wok", "oc": 5}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pan-cooking pan:frying pan, frypan, skillet", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:stew:hot pot, hotpot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pan-cooking pan:frying pan, frypan, skillet", "at": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:loaf of bread-l:French loaf", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pan-cooking pan:frying pan, frypan, skillet", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:squash:summer squash:zucchini, courgette", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pan-cooking pan:frying pan, frypan, skillet", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:squash:summer squash:spaghetti squash", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pan-cooking pan:frying pan, frypan, skillet", "at": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :ingredient-fixi:flavorer-flavou:condiment:sauce:spaghetti sauce:carbonara", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pan-cooking pan:frying pan, frypan, skillet", "at": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :ingredient-fixi:flavorer-flavou:condiment:sauce:chocolate sauce, chocolate syrup", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:coat:fur coat", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:sheep:ram, tup", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:coat:fur coat", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:ape:anthropoid ape:lesser ape:gibbon, Hylobates lar", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:coat:fur coat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:cap:bathing cap, swimming cap", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:coat:fur coat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloak", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:coat:fur coat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:weight-free wei:dumbbell", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:coat:fur coat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:coat:fur coat", "oc": 41}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:coat:fur coat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:sleeping bag", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:coat:fur coat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:fabric-cloth-ma:velvet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:garbage truck, dustcart", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:cab, hack, taxi, taxicab", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:garbage truck, dustcart", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:garbage truck, dustcart", "oc": 46}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:garbage truck, dustcart", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:military vehicl:half track", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:garbage truck, dustcart", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:farm machine:harvester, reaper", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:garbage truck, dustcart", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:tow truck, tow car, wrecker", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:mask:gasmask, respirator, gas helmet", "at": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:bib", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:mask:gasmask, respirator, gas helmet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:telephone-phone:dial telephone, dial phone", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:mask:gasmask, respirator, gas helmet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:helmet:football helmet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:mask:gasmask, respirator, gas helmet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:mask:gasmask, respirator, gas helmet", "oc": 36}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:mask:gasmask, respirator, gas helmet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:instrument of e:guillotine", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:mask:gasmask, respirator, gas helmet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:blower:hand blower, blow dryer, blow drier, hair dryer, hair drier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:mask:gasmask, respirator, gas helmet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:mask", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:mask:gasmask, respirator, gas helmet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:miniskirt, mini", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:mask:gasmask, respirator, gas helmet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:breathing devic:oxygen mask", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:mask:gasmask, respirator, gas helmet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:breathing devic:snorkel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:mask:gasmask, respirator, gas helmet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:control-control:switch, electric switch, electrical switch", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:mask:gasmask, respirator, gas helmet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:vacuum, vacuum cleaner", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:pump:gas pump, gasoline pump, petrol pump, island dispenser", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bin:ashcan, trash can, garbage can, wastebin, ash bin, ash-bin, ashbin, dustbin, trash barrel, trash bin", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:pump:gas pump, gasoline pump, petrol pump, island dispenser", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:outbuilding:shed:boathouse", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:pump:gas pump, gasoline pump, petrol pump, island dispenser", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:cab, hack, taxi, taxicab", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:pump:gas pump, gasoline pump, petrol pump, island dispenser", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:cash machine, cash dispenser, automated teller machine, automatic teller machine, automated teller, automatic teller, ATM", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:pump:gas pump, gasoline pump, petrol pump, island dispenser", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:chainlink fence", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:pump:gas pump, gasoline pump, petrol pump, island dispenser", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:pump:gas pump, gasoline pump, petrol pump, island dispenser", "oc": 39}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:pump:gas pump, gasoline pump, petrol pump, island dispenser", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:farm machine:harvester, reaper", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:pump:gas pump, gasoline pump, petrol pump, island dispenser", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:timer:parking meter", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:pump:gas pump, gasoline pump, petrol pump, island dispenser", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:telephone-phone:pay-phone, pay-station", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:pump:gas pump, gasoline pump, petrol pump, island dispenser", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :tractor", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:pump:gas pump, gasoline pump, petrol pump, island dispenser", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:slot machine-co:vending machine", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:glass-drinking :goblet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:altar", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:glass-drinking :goblet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:glass-drinking :beer glass", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:glass-drinking :goblet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:shaker:cocktail shaker", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:glass-drinking :goblet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:confectionery, confectionary, candy store", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:glass-drinking :goblet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:glass-drinking :goblet", "oc": 29}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:glass-drinking :goblet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shade:lampshade, lamp shade", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:glass-drinking :goblet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:perfume, essence", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:glass-drinking :goblet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:machine-simple :wheel:potter's wheel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:glass-drinking :goblet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:punching bag, punch bag, punching ball, punchball", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:glass-drinking :goblet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:restaurant, eating house, eating place, eatery", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:glass-drinking :goblet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:filter:strainer", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:glass-drinking :goblet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:lamp:table lamp", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:glass-drinking :goblet", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:dessert-sweet-a:pudding-pud:trifle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:glass-drinking :goblet", "at": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:wine-vino:red wine", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:go-kart", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:go-kart", "oc": 48}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:go-kart", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:racer, race car, racing car", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:go-kart", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:tricycle, trike, velocipede", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:golf equipment:golf ball", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:carton", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:golf equipment:golf ball", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:croquet ball", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:golf equipment:golf ball", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:golf equipment:golf ball", "oc": 40}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:golf equipment:golf ball", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:ping-pong ball", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:golf equipment:golf ball", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dispenser:soap dispenser", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:golf equipment:golf ball", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:sundial", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:golf equipment:golf ball", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:tennis ball", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:golf equipment:golf ball", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:citrus-citrus f:lemon", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:golfcart, golf cart", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:ambulance", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:golfcart, golf cart", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:go-kart", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:golfcart, golf cart", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:golfcart, golf cart", "oc": 38}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:golfcart, golf cart", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:garden tool-law:lawn mower, mower", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:golfcart, golf cart", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:public transpor:bus-autobus-coa:minibus", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:golfcart, golf cart", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:van:passenger van:minivan", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:golfcart, golf cart", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:racer, race car, racing car", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:golfcart, golf cart", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :recreational vehicle, RV, R.V.", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:golfcart, golf cart", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:tricycle, trike, velocipede", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:boat:gondola", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:boat:gondola", "oc": 49}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:boat:gondola", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:house:residence:palace", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:gong, tam-tam", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:clock:analog clock", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:gong, tam-tam", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:chime, bell, gong", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:gong, tam-tam", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cosmetic:makeup-make-up-:face powder", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:gong, tam-tam", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:gong, tam-tam", "oc": 38}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:gong, tam-tam", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:scientific inst:magnifier:microscope:light microscop:hand glass-simp:loupe, jeweler's loupe", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:gong, tam-tam", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:system:maze, labyrinth", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:gong, tam-tam", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:lock:padlock", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:gong, tam-tam", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:sharpener:pencil sharpener", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:gong, tam-tam", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:armor-armour:shield, buckler", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:gong, tam-tam", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:spotlight, spot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:gong, tam-tam", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:chair of state:throne", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:gong, tam-tam", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:clock:wall clock", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:womans clothing:dress-frock:gown", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:protective garm:apron", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:womans clothing:dress-frock:gown", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:womans clothing:dress-frock:gown", "oc": 27}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:womans clothing:dress-frock:gown", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:hoopskirt, crinoline", "oc": 5}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:womans clothing:dress-frock:gown", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:support:structural memb:upright-vertica:post:maypole", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:womans clothing:dress-frock:gown", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:overskirt", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:womans clothing:dress-frock:gown", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:sarong", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:womans clothing:dress-frock:gown", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:cap:shower cap", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:womans clothing:dress-frock:gown", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:jar:vase", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:womans clothing:dress-frock:gown", "at": "root:entity:physical entity:object-physical:geological form:cliff, drop, drop-off", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:womans clothing:dress-frock:gown", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:person-individu:peer-equal-matc:associate:participant:groom, bridegroom", "oc": 7}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:piano-pianofort:grand piano, grand", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:calculator-calc:abacus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:piano-pianofort:grand piano, grand", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:keyboard instru:accordion, piano accordion, squeeze box", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:piano-pianofort:grand piano, grand", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:bakery, bakeshop, bakehouse", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:piano-pianofort:grand piano, grand", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:barbershop", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:piano-pianofort:grand piano, grand", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:bookcase", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:piano-pianofort:grand piano, grand", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:footwear:hosiery-hose:stocking:Christmas stocking", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:piano-pianofort:grand piano, grand", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:piano-pianofort:grand piano, grand", "oc": 33}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:piano-pianofort:grand piano, grand", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:organ, pipe organ", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:piano-pianofort:grand piano, grand", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:gymnastic appar:parallel bars, bars", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:piano-pianofort:grand piano, grand", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:bench:park bench", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:piano-pianofort:grand piano, grand", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:piano-pianofort:upright, upright piano", "oc": 7}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:piano-pianofort:grand piano, grand", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:blind-screen:window blind:window shade", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:greenhouse, nursery, glasshouse", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:handcart-pushca:barrow, garden cart, lawn cart, wheelbarrow", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:greenhouse, nursery, glasshouse", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:outbuilding:shed:boathouse", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:greenhouse, nursery, glasshouse", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:chainlink fence", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:greenhouse, nursery, glasshouse", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:greenhouse, nursery, glasshouse", "oc": 40}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:greenhouse, nursery, glasshouse", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:system:maze, labyrinth", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:greenhouse, nursery, glasshouse", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:planetarium", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:greenhouse, nursery, glasshouse", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:pot, flowerpot", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:greenhouse, nursery, glasshouse", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:movable barrier:door:sliding door", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:greenhouse, nursery, glasshouse", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:reflector:solar dish, solar collector, solar furnace", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:greenhouse, nursery, glasshouse", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:housing-lodging:dwelling-home-d:yurt", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:grate-grating:grille, radiator grille", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:convertible", "oc": 7}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:grate-grating:grille, radiator grille", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:fire engine, fire truck", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:grate-grating:grille, radiator grille", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:piano-pianofort:grand piano, grand", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:grate-grating:grille, radiator grille", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:grate-grating:grille, radiator grille", "oc": 33}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:grate-grating:grille, radiator grille", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:jeep, landrover", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:grate-grating:grille, radiator grille", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:mailbox, letter box", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:grate-grating:grille, radiator grille", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:Model T", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:grate-grating:grille, radiator grille", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:van:police van, police wagon, paddy wagon, patrol wagon, wagon, black Maria", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:grate-grating:grille, radiator grille", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:sports car, sport car", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:grate-grating:grille, radiator grille", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:tow truck, tow car, wrecker", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:marketplace-mar:grocery store, grocery, food market, market", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:gastropod-univa:snail", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:marketplace-mar:grocery store, grocery, food market, market", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crab:Dungeness crab, Cancer magister", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:marketplace-mar:grocery store, grocery, food market, market", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:ganoid-ganoid f:sturgeon", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:marketplace-mar:grocery store, grocery, food market, market", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:bakery, bakeshop, bakehouse", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:marketplace-mar:grocery store, grocery, food market, market", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:bookshop, bookstore, bookstall", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:marketplace-mar:grocery store, grocery, food market, market", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:butcher shop, meat market", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:marketplace-mar:grocery store, grocery, food market, market", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:confectionery, confectionary, candy store", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:marketplace-mar:grocery store, grocery, food market, market", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:marketplace-mar:grocery store, grocery, food market, market", "oc": 30}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:marketplace-mar:grocery store, grocery, food market, market", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:restaurant, eating house, eating place, eatery", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:marketplace-mar:grocery store, grocery, food market, market", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:oven:rotisserie", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:marketplace-mar:grocery store, grocery, food market, market", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:basket-handbask:shopping basket", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:marketplace-mar:grocery store, grocery, food market, market", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:toyshop", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:marketplace-mar:grocery store, grocery, food market, market", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:cruciferous veg:cabbage-chou:head cabbage", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:marketplace-mar:grocery store, grocery, food market, market", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:cruciferous veg:cauliflower", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:marketplace-mar:grocery store, grocery, food market, market", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:cucumber, cuke", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:marketplace-mar:grocery store, grocery, food market, market", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:apple:eating apple-de:Granny Smith", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:marketplace-mar:grocery store, grocery, food market, market", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:seed:grain-caryopsis:kernel:corn", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:instrument of e:guillotine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :forklift", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:instrument of e:guillotine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:greenhouse, nursery, glasshouse", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:instrument of e:guillotine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:instrument of e:guillotine", "oc": 44}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:instrument of e:guillotine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building comple:plant-works-ind:factory-mill-ma:lumbermill, sawmill", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:instrument of e:guillotine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:apparatus-setup:duplicator-copi:photocopier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:instrument of e:guillotine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:rocking chair, rocker", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:instrument of e:guillotine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:bridge-span:suspension bridge", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:clip:hair slide", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:harvestman, daddy longlegs, Phalangium opilio", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:clip:hair slide", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:scorpion", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:clip:hair slide", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:buckle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:clip:hair slide", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:footwear:hosiery-hose:stocking:Christmas stocking", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:clip:hair slide", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:staff:crutch", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:clip:hair slide", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:armor-armour:body armor-body:cuirass", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:clip:hair slide", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:clip:hair slide", "oc": 24}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:clip:hair slide", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:hair spray", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:clip:hair slide", "at": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:handkerchief, hankie, hanky, hankey", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:clip:hair slide", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:robe:kimono", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:clip:hair slide", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:ladle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:clip:hair slide", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:strengthener-re:brace:neck brace", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:clip:hair slide", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:decoration-orna:adornment:jewelry-jewelle:necklace", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:clip:hair slide", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:pipe:panpipe, pandean pipe, syrinx", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:clip:hair slide", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:pencil box, pencil case", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:clip:hair slide", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:pill bottle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:clip:hair slide", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:padding-cushion:cushion:pillow", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:clip:hair slide", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:machine-simple :wheel:pinwheel", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:clip:hair slide", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:writing impleme:pen:quill, quill pen", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:clip:hair slide", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:spindle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:clip:hair slide", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:medical instrum:stethoscope", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:clip:hair slide", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:creation:product-product:work-piece of w:publication:magazine-mag:comic book", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:clip:hair slide", "at": "root:entity:abstraction-abs:attribute:shape-form:round shape:sphere:ball-globe-orb:globule:bubble", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:clip:hair slide", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:seed:buckeye, horse chestnut, conker", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:hair spray", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloth covering:dressing-medica:bandage-patch:adhesive bandag:Band Aid", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:hair spray", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:binder, ring-binder", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:hair spray", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:weight-free wei:dumbbell", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:hair spray", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cosmetic:makeup-make-up-:face powder", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:hair spray", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:clip:hair slide", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:hair spray", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:hair spray", "oc": 20}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:hair spray", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:blower:hand blower, blow dryer, blow drier, hair dryer, hair drier", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:hair spray", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:control-control:joystick", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:hair spray", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:lighter, light, igniter, ignitor", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:hair spray", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:lotion", "oc": 5}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:hair spray", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:cabinet:medicine chest, medicine cabinet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:hair spray", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:miniskirt, mini", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:hair spray", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:top-cover:cap:nipple", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:hair spray", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:filter:oil filter", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:hair spray", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:punching bag, punch bag, punching ball, punchball", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:hair spray", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cream-ointment-:sunscreen, sunblock, sun blocker", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:hair spray", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:cleaning implem:swab, swob, mop", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:hair spray", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:bowed stringed :violin, fiddle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:hair spray", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:water bottle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:hair spray", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:wine bottle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:hair spray", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:web site, website, internet site, site", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:hair spray", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:squash:summer squash:spaghetti squash", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:hair spray", "at": "root:entity:abstraction-abs:attribute:shape-form:round shape:sphere:ball-globe-orb:globule:bubble", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:hair spray", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:person-individu:peer-equal-matc:associate:participant:groom, bridegroom", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:hair spray", "at": "root:entity:physical entity:matter:substance:material-stuff:paper:tissue-tissue p:toilet tissue, toilet paper, bathroom tissue", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:military vehicl:half track", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:fan:electric fan, blower", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:military vehicl:half track", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:golfcart, golf cart", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:military vehicl:half track", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:military vehicl:half track", "oc": 40}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:military vehicl:half track", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:wagon-waggon:cart:horse cart, horse-cart", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:military vehicl:half track", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:uniform:military uniform", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:military vehicl:half track", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:snowplow, snowplough", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:military vehicl:half track", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :armored vehicle:tank, army tank, armored combat vehicle, armoured combat vehicle", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:military vehicl:half track", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:farm machine:thresher, thrasher, threshing machine", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:military vehicl:half track", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:creation:product-product:work-piece of w:publication:magazine-mag:comic book", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:hammer", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:ganoid-ganoid f:sturgeon", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:hammer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloth covering:dressing-medica:bandage-patch:adhesive bandag:Band Aid", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:hammer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bucket, pail", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:hammer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:cannon", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:hammer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:gear-parapherna:kit-outfit:carpenter's kit, tool kit", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:hammer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:hammer", "oc": 25}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:hammer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shade:lampshade, lamp shade", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:hammer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:knife:letter opener, paper knife, paperknife", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:hammer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:uniform:military uniform", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:hammer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:nail", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:hammer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:ocarina, sweet potato", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:hammer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:applicator-appl:paintbrush", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:hammer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:nightwear-sleep:pajama, pyjama, pj's, jammies", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:hammer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:sharpener:pencil sharpener", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:hammer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:plane, carpenter's plane, woodworking plane", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:hammer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:drill:power drill", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:hammer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:firearm-piece-s:rifle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:hammer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:screwdriver", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:hammer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:shoe shop, shoe-shop, shoe store", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:hammer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:shovel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:hammer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:turner-food tur:spatula", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:hammer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:steel drum", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:hammer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:medical instrum:syringe", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:hammer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:acoustic device:whistle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:basket-handbask:hamper", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:elapid-elapid s:cobra:Indian cobra, Naja naja", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:basket-handbask:hamper", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:domestic cat-ho:Egyptian cat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:basket-handbask:hamper", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:bakery, bakeshop, bakehouse", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:basket-handbask:hamper", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:barber chair", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:basket-handbask:hamper", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:bookcase", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:basket-handbask:hamper", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:bow", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:basket-handbask:hamper", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:coil, spiral, volute, whorl, helix", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:basket-handbask:hamper", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:drum, membranophone, tympan", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:basket-handbask:hamper", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:basket-handbask:hamper", "oc": 30}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:basket-handbask:hamper", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:basket-handbask:shopping basket", "oc": 5}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:basket-handbask:hamper", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:suit, suit of clothes", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:basket-handbask:hamper", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:roof:thatch, thatched roof", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:basket-handbask:hamper", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:column-pillar:totem pole", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:basket-handbask:hamper", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:toyshop", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:basket-handbask:hamper", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:jar:vase", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:basket-handbask:hamper", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:blind-screen:window blind:window shade", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:basket-handbask:hamper", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:fig", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:blower:hand blower, blow dryer, blow drier, hair dryer, hair drier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :pinscher:miniature pinscher", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:blower:hand blower, blow dryer, blow drier, hair dryer, hair drier", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:poodle-poodle d:toy poodle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:blower:hand blower, blow dryer, blow drier, hair dryer, hair drier", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:altar", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:blower:hand blower, blow dryer, blow drier, hair dryer, hair drier", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:sled-sledge-sle:bobsled, bobsleigh, bob", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:blower:hand blower, blow dryer, blow drier, hair dryer, hair drier", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:cowboy hat, ten-gallon hat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:blower:hand blower, blow dryer, blow drier, hair dryer, hair drier", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:telephone-phone:dial telephone, dial phone", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:blower:hand blower, blow dryer, blow drier, hair dryer, hair drier", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:mask:gasmask, respirator, gas helmet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:blower:hand blower, blow dryer, blow drier, hair dryer, hair drier", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:hair spray", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:blower:hand blower, blow dryer, blow drier, hair dryer, hair drier", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:hammer", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:blower:hand blower, blow dryer, blow drier, hair dryer, hair drier", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:blower:hand blower, blow dryer, blow drier, hair dryer, hair drier", "oc": 27}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:blower:hand blower, blow dryer, blow drier, hair dryer, hair drier", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:lantern:jack-o'-lantern", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:blower:hand blower, blow dryer, blow drier, hair dryer, hair drier", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:miniskirt, mini", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:blower:hand blower, blow dryer, blow drier, hair dryer, hair drier", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:telephone-phone:pay-phone, pay-station", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:blower:hand blower, blow dryer, blow drier, hair dryer, hair drier", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:drill:power drill", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:blower:hand blower, blow dryer, blow drier, hair dryer, hair drier", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:projector", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:blower:hand blower, blow dryer, blow drier, hair dryer, hair drier", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:punching bag, punch bag, punching ball, punchball", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:blower:hand blower, blow dryer, blow drier, hair dryer, hair drier", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:system:communication s:radio, wireless", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:blower:hand blower, blow dryer, blow drier, hair dryer, hair drier", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:shoe shop, shoe-shop, shoe store", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:blower:hand blower, blow dryer, blow drier, hair dryer, hair drier", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:tape player", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:blower:hand blower, blow dryer, blow drier, hair dryer, hair drier", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:toilet seat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:blower:hand blower, blow dryer, blow drier, hair dryer, hair drier", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:wine bottle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:portable comput:hand-held computer, hand-held microcomputer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:telephone-phone:radiotelephone-:cellular telephone, cellular phone, cellphone, cell, mobile phone", "oc": 11}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:portable comput:hand-held computer, hand-held microcomputer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:keyboard:computer keyboard, keypad", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:portable comput:hand-held computer, hand-held microcomputer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:clock:digital clock", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:portable comput:hand-held computer, hand-held microcomputer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:portable comput:hand-held computer, hand-held microcomputer", "oc": 26}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:portable comput:hand-held computer, hand-held microcomputer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:memory device-s:magnetic disk-m:hard disc, hard disk, fixed disk", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:portable comput:hand-held computer, hand-held microcomputer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:free-reed instr:harmonica, mouth organ, harp, mouth harp", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:portable comput:hand-held computer, hand-held microcomputer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:hook, claw", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:portable comput:hand-held computer, hand-held microcomputer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:audio system-so:reproducer:stereo-stereoph:iPod", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:portable comput:hand-held computer, hand-held microcomputer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:coat:lab coat, laboratory coat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:portable comput:hand-held computer, hand-held microcomputer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:monitor", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:portable comput:hand-held computer, hand-held microcomputer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:portable comput:notebook, notebook computer", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:portable comput:hand-held computer, hand-held microcomputer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:photographic eq:camera-photogra:Polaroid camera, Polaroid Land camera", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:portable comput:hand-held computer, hand-held microcomputer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:remote control, remote", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:handkerchief, hankie, hanky, hankey", "at": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:towel:bath towel", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:handkerchief, hankie, hanky, hankey", "at": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:bib", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:handkerchief, hankie, hanky, hankey", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:bonnet, poke bonnet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:handkerchief, hankie, hanky, hankey", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:envelope", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:handkerchief, hankie, hanky, hankey", "at": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:handkerchief, hankie, hanky, hankey", "oc": 36}, {"rt": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:handkerchief, hankie, hanky, hankey", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:padding-cushion:cushion:pillow", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:handkerchief, hankie, hanky, hankey", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloth covering:bedclothes-bed :quilt, comforter, comfort, puff", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:handkerchief, hankie, hanky, hankey", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:sarong", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:handkerchief, hankie, hanky, hankey", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:sleeping bag", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:handkerchief, hankie, hanky, hankey", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:scarf:stole", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:handkerchief, hankie, hanky, hankey", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:plaything-toy:teddy, teddy bear", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:handkerchief, hankie, hanky, hankey", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:receptacle:tray", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:memory device-s:magnetic disk-m:hard disc, hard disk, fixed disk", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:cassette", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:memory device-s:magnetic disk-m:hard disc, hard disk, fixed disk", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:desktop computer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:memory device-s:magnetic disk-m:hard disc, hard disk, fixed disk", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:brake:brake system-br:hydraulic brake:disk brake, disc brake", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:memory device-s:magnetic disk-m:hard disc, hard disk, fixed disk", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:garbage truck, dustcart", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:memory device-s:magnetic disk-m:hard disc, hard disk, fixed disk", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:memory device-s:magnetic disk-m:hard disc, hard disk, fixed disk", "oc": 36}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:memory device-s:magnetic disk-m:hard disc, hard disk, fixed disk", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:cap:lens cap, lens cover", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:memory device-s:magnetic disk-m:hard disc, hard disk, fixed disk", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:modem", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:memory device-s:magnetic disk-m:hard disc, hard disk, fixed disk", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:oscilloscope, scope, cathode-ray oscilloscope, CRO", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:memory device-s:magnetic disk-m:hard disc, hard disk, fixed disk", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:pencil box, pencil case", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:memory device-s:magnetic disk-m:hard disc, hard disk, fixed disk", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:printer-printin:printer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:memory device-s:magnetic disk-m:hard disc, hard disk, fixed disk", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:system:communication s:radio, wireless", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:memory device-s:magnetic disk-m:hard disc, hard disk, fixed disk", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:strongbox-deedb:safe", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:memory device-s:magnetic disk-m:hard disc, hard disk, fixed disk", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:tape player", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:memory device-s:magnetic disk-m:hard disc, hard disk, fixed disk", "at": "root:entity:physical entity:matter:substance:food-nutrient:fare:menu", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:free-reed instr:harmonica, mouth organ, harp, mouth harp", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:writing impleme:pen:ballpoint, ballpoint pen, ballpen, Biro", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:free-reed instr:harmonica, mouth organ, harp, mouth harp", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:brass-brass ins:cornet, horn, trumpet, trump", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:free-reed instr:harmonica, mouth organ, harp, mouth harp", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:flute, transverse flute", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:free-reed instr:harmonica, mouth organ, harp, mouth harp", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:brass-brass ins:French horn, horn", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:free-reed instr:harmonica, mouth organ, harp, mouth harp", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:blower:hand blower, blow dryer, blow drier, hair dryer, hair drier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:free-reed instr:harmonica, mouth organ, harp, mouth harp", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:free-reed instr:harmonica, mouth organ, harp, mouth harp", "oc": 36}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:free-reed instr:harmonica, mouth organ, harp, mouth harp", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:lighter, light, igniter, ignitor", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:free-reed instr:harmonica, mouth organ, harp, mouth harp", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:ocarina, sweet potato", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:free-reed instr:harmonica, mouth organ, harp, mouth harp", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:organ, pipe organ", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:free-reed instr:harmonica, mouth organ, harp, mouth harp", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:plastic bag", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:free-reed instr:harmonica, mouth organ, harp, mouth harp", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:surface:horizontal surf:platform:stage", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:free-reed instr:harmonica, mouth organ, harp, mouth harp", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:spectacles-spec:sunglasses, dark glasses, shades", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:free-reed instr:harmonica, mouth organ, harp, mouth harp", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:movable barrier:gate:turnstile", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:free-reed instr:harmonica, mouth organ, harp, mouth harp", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:article:ware:tableware:cutlery-eating :spoon:wooden spoon", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:free-reed instr:harmonica, mouth organ, harp, mouth harp", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:dessert-sweet-a:frozen dessert:ice lolly, lolly, lollipop, popsicle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:chordophone:harp", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:bannister, banister, balustrade, balusters, handrail", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:chordophone:harp", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:beating-reed in:double-reed ins:bassoon", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:chordophone:harp", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:bowed stringed :cello, violoncello", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:chordophone:harp", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:chordophone:harp", "oc": 46}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:chordophone:harp", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:shovel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:farm machine:harvester, reaper", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :forklift", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:farm machine:harvester, reaper", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:garbage truck, dustcart", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:farm machine:harvester, reaper", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:farm machine:harvester, reaper", "oc": 38}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:farm machine:harvester, reaper", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:garden tool-law:lawn mower, mower", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:farm machine:harvester, reaper", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building comple:plant-works-ind:factory-mill-ma:lumbermill, sawmill", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:farm machine:harvester, reaper", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:plow, plough", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:farm machine:harvester, reaper", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:tow truck, tow car, wrecker", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:farm machine:harvester, reaper", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :tractor", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:ax-axe:hatchet", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:centipede", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:ax-axe:hatchet", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:metatherian:marsupial-pouch:phalanger-oposs:koala, koala bear, kangaroo bear, native bear, Phascolarctos cinereus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:ax-axe:hatchet", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Sennenhunde:Greater Swiss Mountain dog", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:ax-axe:hatchet", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:Leonberg", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:ax-axe:hatchet", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:soft-finned fis:eel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:ax-axe:hatchet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:knife:cleaver, meat cleaver, chopper", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:ax-axe:hatchet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:drumstick", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:ax-axe:hatchet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:clip:hair slide", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:ax-axe:hatchet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:hammer", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:ax-axe:hatchet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:ax-axe:hatchet", "oc": 29}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:ax-axe:hatchet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:sheath:holster", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:ax-axe:hatchet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:shirt:jersey, T-shirt, tee shirt", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:ax-axe:hatchet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:wagon-waggon:cart:oxcart", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:ax-axe:hatchet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:lock:padlock", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:ax-axe:hatchet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:supporting stru:support:pedestal, plinth, footstall", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:ax-axe:hatchet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:firearm-piece-s:rifle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:ax-axe:hatchet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:shovel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:ax-axe:hatchet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:wine bottle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:ax-axe:hatchet", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:dessert-sweet-a:frozen dessert:ice lolly, lolly, lollipop, popsicle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:sheath:holster", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:firearm-piece-s:autoloader-self:automatic firea:automatic rifle:assault rifle, assault gun", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:sheath:holster", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:bow", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:sheath:holster", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:buckle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:sheath:holster", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:vest-waistcoat:bulletproof vest", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:sheath:holster", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:blower:hand blower, blow dryer, blow drier, hair dryer, hair drier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:sheath:holster", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:ax-axe:hatchet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:sheath:holster", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:sheath:holster", "oc": 34}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:sheath:holster", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:miniskirt, mini", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:sheath:holster", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:trap:mousetrap", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:sheath:holster", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:wagon-waggon:cart:oxcart", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:sheath:holster", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:telephone-phone:pay-phone, pay-station", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:sheath:holster", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:firearm-piece-s:pistol-handgun-:revolver, six-gun, six-shooter", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:sheath:holster", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:sheath:scabbard", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:sheath:holster", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :armored vehicle:tank, army tank, armored combat vehicle, armoured combat vehicle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:sheath:holster", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:vacuum, vacuum cleaner", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:sheath:holster", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pan-cooking pan:wok", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:theater-theatre:home theater, home theatre", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:barber chair", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:theater-theatre:home theater, home theatre", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:table:desk", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:theater-theatre:home theater, home theatre", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:desktop computer", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:theater-theatre:home theater, home theatre", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:wall unit:entertainment center", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:theater-theatre:home theater, home theatre", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:theater-theatre:home theater, home theatre", "oc": 34}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:theater-theatre:home theater, home theatre", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electrical devi:transducer:electro-acousti:loudspeaker, speaker, speaker unit, loudspeaker system, speaker system", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:theater-theatre:home theater, home theatre", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:nightwear-sleep:pajama, pyjama, pj's, jammies", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:theater-theatre:home theater, home theatre", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:table:pool table, billiard table, snooker table", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:theater-theatre:home theater, home theatre", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:movable barrier:door:sliding door", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:theater-theatre:home theater, home theatre", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:system:communication s:telecommunicati:television, television system", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:theater-theatre:home theater, home theatre", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:vacuum, vacuum cleaner", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:supporting stru:framework:honeycomb", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:sea turtle-mari:loggerhead, loggerhead turtle, Caretta caretta", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:supporting stru:framework:honeycomb", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:coelenterate-cn:anthozoan-actin:coral:stony coral-mad:brain coral", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:supporting stru:framework:honeycomb", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:chiton, coat-of-mail shell, sea cradle, polyplacophore", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:supporting stru:framework:honeycomb", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:homopterous ins:cicada, cicala", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:supporting stru:framework:honeycomb", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:echinoderm:sea urchin", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:supporting stru:framework:honeycomb", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:echinoderm:sea cucumber, holothurian", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:supporting stru:framework:honeycomb", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:outbuilding:shed:apiary, bee house", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:supporting stru:framework:honeycomb", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:coil, spiral, volute, whorl, helix", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:supporting stru:framework:honeycomb", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:screen:fire screen, fireguard", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:supporting stru:framework:honeycomb", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:marketplace-mar:grocery store, grocery, food market, market", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:supporting stru:framework:honeycomb", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:supporting stru:framework:honeycomb", "oc": 29}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:supporting stru:framework:honeycomb", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shade:lampshade, lamp shade", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:supporting stru:framework:honeycomb", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:padding-cushion:cushion:pillow", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:supporting stru:framework:honeycomb", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:pitcher, ewer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:supporting stru:framework:honeycomb", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:filter:strainer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:supporting stru:framework:honeycomb", "at": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:bun-roll:bagel, beigel", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:supporting stru:framework:honeycomb", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:jackfruit, jak, jack", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:hook, claw", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:elapid-elapid s:cobra:Indian cobra, Naja naja", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:hook, claw", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:spider:black widow, Latrodectus mactans", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:hook, claw", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:crane", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:hook, claw", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:phasmid-phasmid:walking stick, walkingstick, stick insect", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:hook, claw", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:echinoderm:starfish, sea star", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:hook, claw", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:beating-reed in:double-reed ins:bassoon", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:hook, claw", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:bell cote, bell cot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:hook, claw", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:bow", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:hook, claw", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:butcher shop, meat market", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:hook, claw", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:connection-conn:attachment-bond:ligament:chain", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:hook, claw", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:chest", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:hook, claw", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:brass-brass ins:French horn, horn", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:hook, claw", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:gong, tam-tam", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:hook, claw", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:clip:hair slide", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:hook, claw", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:hook, claw", "oc": 12}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:hook, claw", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:gymnastic appar:horizontal bar, high bar", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:hook, claw", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:audio system-so:reproducer:stereo-stereoph:iPod", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:hook, claw", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:iron, smoothing iron", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:hook, claw", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:cap:lens cap, lens cover", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:hook, claw", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:nail", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:hook, claw", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:decoration-orna:adornment:jewelry-jewelle:necklace", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:hook, claw", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:lock:padlock", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:hook, claw", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:institution:penal instituti:correctional in:prison, prison house", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:hook, claw", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:purse", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:hook, claw", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:spindle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:hook, claw", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:litter:stretcher", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:hook, claw", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:cleaning implem:swab, swob, mop", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:hook, claw", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:bowed stringed :violin, fiddle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:hook, claw", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:case:wallet, billfold, notecase, pocketbook", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:hook, claw", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:basin:washbasin, handbasin, washbowl, lavabo, wash-hand basin", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:hook, claw", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:article:ware:tableware:cutlery-eating :spoon:wooden spoon", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:hook, claw", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:dessert-sweet-a:frozen dessert:ice lolly, lolly, lollipop, popsicle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:hoopskirt, crinoline", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:robe:abaya", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:hoopskirt, crinoline", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:altar", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:hoopskirt, crinoline", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:sweater-jumper:cardigan", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:hoopskirt, crinoline", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:table:dining table, board", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:hoopskirt, crinoline", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:womans clothing:dress-frock:gown", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:hoopskirt, crinoline", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:chordophone:harp", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:hoopskirt, crinoline", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:hoopskirt, crinoline", "oc": 31}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:hoopskirt, crinoline", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:marimba, xylophone", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:hoopskirt, crinoline", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:overskirt", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:hoopskirt, crinoline", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:rocking chair, rocker", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:hoopskirt, crinoline", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:sarong", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:hoopskirt, crinoline", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:surface:horizontal surf:platform:stage", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:hoopskirt, crinoline", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:cleaning implem:swab, swob, mop", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:hoopskirt, crinoline", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:swing", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:hoopskirt, crinoline", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:vacuum, vacuum cleaner", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:hoopskirt, crinoline", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:person-individu:peer-equal-matc:associate:participant:groom, bridegroom", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:gymnastic appar:horizontal bar, high bar", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:gymnastic appar:balance beam, beam", "oc": 6}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:gymnastic appar:horizontal bar, high bar", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :forklift", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:gymnastic appar:horizontal bar, high bar", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:gymnastic appar:horizontal bar, high bar", "oc": 30}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:gymnastic appar:horizontal bar, high bar", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:gymnastic appar:parallel bars, bars", "oc": 9}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:gymnastic appar:horizontal bar, high bar", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:public transpor:bus-autobus-coa:school bus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:gymnastic appar:horizontal bar, high bar", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:swing", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:gymnastic appar:horizontal bar, high bar", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:volleyball", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:wagon-waggon:cart:horse cart, horse-cart", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:wolfhound:Irish wolfhound", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:wagon-waggon:cart:horse cart, horse-cart", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:wild sheep:mountain sheep:bighorn, bighorn sheep, cimarron, Rocky Mountain bighorn, Rocky Mountain sheep, Ovis canadensis", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:wagon-waggon:cart:horse cart, horse-cart", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shield:plate-scale-she:armor plate-arm:breastplate, aegis, egis", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:wagon-waggon:cart:horse cart, horse-cart", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:cannon", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:wagon-waggon:cart:horse cart, horse-cart", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:sled-sledge-sle:dogsled, dog sled, dog sleigh", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:wagon-waggon:cart:horse cart, horse-cart", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:wagon-waggon:cart:horse cart, horse-cart", "oc": 41}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:wagon-waggon:cart:horse cart, horse-cart", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:van:moving van", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:wagon-waggon:cart:horse cart, horse-cart", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:wagon-waggon:cart:oxcart", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:wagon-waggon:cart:horse cart, horse-cart", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:machine-simple :wheel:paddlewheel, paddle wheel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:wagon-waggon:cart:horse cart, horse-cart", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :tracked vehicle:snowmobile", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:sandglass:hourglass", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:shaker:cocktail shaker", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:sandglass:hourglass", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:sandglass:hourglass", "oc": 47}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:sandglass:hourglass", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:spindle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:sandglass:hourglass", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:medical instrum:syringe", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:audio system-so:reproducer:stereo-stereoph:iPod", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:cassette", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:audio system-so:reproducer:stereo-stereoph:iPod", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:cassette player", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:audio system-so:reproducer:stereo-stereoph:iPod", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:telephone-phone:radiotelephone-:cellular telephone, cellular phone, cellphone, cell, mobile phone", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:audio system-so:reproducer:stereo-stereoph:iPod", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:portable comput:hand-held computer, hand-held microcomputer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:audio system-so:reproducer:stereo-stereoph:iPod", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:audio system-so:reproducer:stereo-stereoph:iPod", "oc": 38}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:audio system-so:reproducer:stereo-stereoph:iPod", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:iron, smoothing iron", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:audio system-so:reproducer:stereo-stereoph:iPod", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:coat:lab coat, laboratory coat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:audio system-so:reproducer:stereo-stereoph:iPod", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:lighter, light, igniter, ignitor", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:audio system-so:reproducer:stereo-stereoph:iPod", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:photographic eq:camera-photogra:Polaroid camera, Polaroid Land camera", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:audio system-so:reproducer:stereo-stereoph:iPod", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:screwdriver", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:audio system-so:reproducer:stereo-stereoph:iPod", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:textile machine:sewing machine", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:iron, smoothing iron", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:baby bed-babys :bassinet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:iron, smoothing iron", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:ax-axe:hatchet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:iron, smoothing iron", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:iron, smoothing iron", "oc": 43}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:iron, smoothing iron", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:coat:lab coat, laboratory coat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:iron, smoothing iron", "at": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:towel:paper towel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:iron, smoothing iron", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:photographic eq:camera-photogra:Polaroid camera, Polaroid Land camera", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:iron, smoothing iron", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:textile machine:sewing machine", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:iron, smoothing iron", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:toaster", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:lantern:jack-o'-lantern", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:place of worshi:church, church building", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:lantern:jack-o'-lantern", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:lantern:jack-o'-lantern", "oc": 48}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:lantern:jack-o'-lantern", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:lamp:table lamp", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:apparel-wearing:workwear:jean, blue jean, denim", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:ringneck snake, ring-necked snake, ring snake", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:apparel-wearing:workwear:jean, blue jean, denim", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:worm:flatworm, platyhelminth", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:apparel-wearing:workwear:jean, blue jean, denim", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:protective garm:apron", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:apparel-wearing:workwear:jean, blue jean, denim", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:gymnastic appar:balance beam, beam", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:apparel-wearing:workwear:jean, blue jean, denim", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:farm building:barn", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:apparel-wearing:workwear:jean, blue jean, denim", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:cowboy hat, ten-gallon hat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:apparel-wearing:workwear:jean, blue jean, denim", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:baby bed-babys :crib, cot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:apparel-wearing:workwear:jean, blue jean, denim", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:staff:crutch", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:apparel-wearing:workwear:jean, blue jean, denim", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:floor cover-flo:mat:doormat, welcome mat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:apparel-wearing:workwear:jean, blue jean, denim", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:apparel-wearing:workwear:jean, blue jean, denim", "oc": 31}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:apparel-wearing:workwear:jean, blue jean, denim", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:game:puzzle:jigsaw puzzle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:apparel-wearing:workwear:jean, blue jean, denim", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:ocarina, sweet potato", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:apparel-wearing:workwear:jean, blue jean, denim", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:cloak:poncho", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:apparel-wearing:workwear:jean, blue jean, denim", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:remote control, remote", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:apparel-wearing:workwear:jean, blue jean, denim", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:movable barrier:door:sliding door", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:apparel-wearing:workwear:jean, blue jean, denim", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:turner-food tur:spatula", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:apparel-wearing:workwear:jean, blue jean, denim", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:suit, suit of clothes", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:apparel-wearing:workwear:jean, blue jean, denim", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:swimsuit-swimwe:swimming trunks, bathing trunks", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:apparel-wearing:workwear:jean, blue jean, denim", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:swing", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:jeep, landrover", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:ambulance", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:jeep, landrover", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:power tool:power saw-saw-s:chain saw, chainsaw", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:jeep, landrover", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:golfcart, golf cart", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:jeep, landrover", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:military vehicl:half track", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:jeep, landrover", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:jeep, landrover", "oc": 38}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:jeep, landrover", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:public transpor:bus-autobus-coa:minibus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:jeep, landrover", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:trailer-house t:mobile home, manufactured home", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:jeep, landrover", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:column-pillar:obelisk", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:jeep, landrover", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:snowplow, snowplough", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:jeep, landrover", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:light-light sou:torch", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:jeep, landrover", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:tow truck, tow car, wrecker", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:jeep, landrover", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:aircraft:heavier-than-ai:warplane, military plane", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:jeep, landrover", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:wreck", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:shirt:jersey, T-shirt, tee shirt", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:protective garm:apron", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:shirt:jersey, T-shirt, tee shirt", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:cap:bathing cap, swimming cap", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:shirt:jersey, T-shirt, tee shirt", "at": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:bib", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:shirt:jersey, T-shirt, tee shirt", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:guitar:electric guitar", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:shirt:jersey, T-shirt, tee shirt", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:shirt:jersey, T-shirt, tee shirt", "oc": 40}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:shirt:jersey, T-shirt, tee shirt", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:nightwear-sleep:pajama, pyjama, pj's, jammies", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:shirt:jersey, T-shirt, tee shirt", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:cap:shower cap", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:shirt:jersey, T-shirt, tee shirt", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:mask:face mask:ski mask", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:shirt:jersey, T-shirt, tee shirt", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:spectacles-spec:sunglasses, dark glasses, shades", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:shirt:jersey, T-shirt, tee shirt", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:outerwear-overc:gown-robe:vestment", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:game:puzzle:jigsaw puzzle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:golden retriever", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:game:puzzle:jigsaw puzzle", "at": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:bib", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:game:puzzle:jigsaw puzzle", "at": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:dishrag, dishcloth", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:game:puzzle:jigsaw puzzle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:game:puzzle:jigsaw puzzle", "oc": 42}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:game:puzzle:jigsaw puzzle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:top-cover:manhole cover", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:game:puzzle:jigsaw puzzle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloth covering:bedclothes-bed :quilt, comforter, comfort, puff", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:game:puzzle:jigsaw puzzle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:stone wall", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:game:puzzle:jigsaw puzzle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:light-light sou:torch", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:game:puzzle:jigsaw puzzle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:game:puzzle:crossword puzzle, crossword", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:wagon-waggon:cart:jinrikisha, ricksha, rickshaw", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:bicycle-bike-wh:bicycle-built-for-two, tandem bicycle, tandem", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:wagon-waggon:cart:jinrikisha, ricksha, rickshaw", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:staff:crutch", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:wagon-waggon:cart:jinrikisha, ricksha, rickshaw", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:golfcart, golf cart", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:wagon-waggon:cart:jinrikisha, ricksha, rickshaw", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:wagon-waggon:cart:jinrikisha, ricksha, rickshaw", "oc": 44}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:wagon-waggon:cart:jinrikisha, ricksha, rickshaw", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:motorcycle-bike:minibike-motorb:moped", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:wagon-waggon:cart:jinrikisha, ricksha, rickshaw", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:cloak:poncho", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:wagon-waggon:cart:jinrikisha, ricksha, rickshaw", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:snowplow, snowplough", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:control-control:joystick", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:croquet ball", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:control-control:joystick", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:brake:brake system-br:hydraulic brake:disk brake, disc brake", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:control-control:joystick", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:coffee maker:espresso maker", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:control-control:joystick", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:control-control:joystick", "oc": 36}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:control-control:joystick", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:modem", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:control-control:joystick", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:monitor", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:control-control:joystick", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electronic devi:mouse, computer mouse", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:control-control:joystick", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:decoration-orna:adornment:jewelry-jewelle:necklace", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:control-control:joystick", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:portable comput:notebook, notebook computer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:control-control:joystick", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:sharpener:pencil sharpener", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:control-control:joystick", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:projectile, missile", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:control-control:joystick", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:remote control, remote", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:control-control:joystick", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:timer:stopwatch, stop watch", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:control-control:joystick", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:lamp:table lamp", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:robe:kimono", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:theater-theatre:home theater, home theatre", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:robe:kimono", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:robe:kimono", "oc": 39}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:robe:kimono", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:support:structural memb:upright-vertica:post:maypole", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:robe:kimono", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:nightwear-sleep:pajama, pyjama, pj's, jammies", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:robe:kimono", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:restaurant, eating house, eating place, eatery", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:robe:kimono", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:blind-screen:curtain-drape-d:shower curtain", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:robe:kimono", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:unicycle, monocycle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:robe:kimono", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:outerwear-overc:gown-robe:vestment", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:robe:kimono", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:bowed stringed :violin, fiddle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:robe:kimono", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:wardrobe, closet, press", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:protective garm:knee pad", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:swan:black swan, Cygnus atratus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:protective garm:knee pad", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:knife:cleaver, meat cleaver, chopper", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:protective garm:knee pad", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:helmet:crash helmet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:protective garm:knee pad", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:helmet:football helmet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:protective garm:knee pad", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:blower:hand blower, blow dryer, blow drier, hair dryer, hair drier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:protective garm:knee pad", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:apparel-wearing:workwear:jean, blue jean, denim", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:protective garm:knee pad", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:protective garm:knee pad", "oc": 33}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:protective garm:knee pad", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electrical devi:transducer:electro-acousti:loudspeaker, speaker, speaker unit, loudspeaker system, speaker system", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:protective garm:knee pad", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:miniskirt, mini", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:protective garm:knee pad", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:drill:power drill", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:protective garm:knee pad", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:screwdriver", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:protective garm:knee pad", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:mask:face mask:ski mask", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:protective garm:knee pad", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:filter:strainer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:protective garm:knee pad", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:suit, suit of clothes", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:protective garm:knee pad", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:sweater-jumper:pullover-slipov:sweatshirt", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:protective garm:knee pad", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:swimsuit-swimwe:swimming trunks, bathing trunks", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:protective garm:knee pad", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:case:wallet, billfold, notecase, pocketbook", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:protective garm:knee pad", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:water bottle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:knot", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:iguanid-iguanid:common iguana, iguana, Iguana iguana", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:knot", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:ringneck snake, ring-necked snake, ring snake", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:knot", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:spider:wolf spider, hunting spider", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:knot", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crayfish, crawfish, crawdad, crawdaddy", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:knot", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:phasmid-phasmid:walking stick, walkingstick, stick insect", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:knot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:connection-conn:attachment-bond:ligament:chain", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:knot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:power tool:power saw-saw-s:chain saw, chainsaw", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:knot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:drum, membranophone, tympan", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:knot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:drumstick", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:knot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:gong, tam-tam", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:knot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:hook, claw", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:knot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:robe:kimono", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:knot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:knot", "oc": 33}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:knot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:shoe:running shoe", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:knot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:cleaning implem:swab, swob, mop", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:knot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:rail fence:worm fence, snake fence, snake-rail fence, Virginia fence", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:knot", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:ear, spike, capitulum", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:coat:lab coat, laboratory coat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:butcher shop, meat market", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:coat:lab coat, laboratory coat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:free-reed instr:harmonica, mouth organ, harp, mouth harp", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:coat:lab coat, laboratory coat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:robe:kimono", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:coat:lab coat, laboratory coat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:coat:lab coat, laboratory coat", "oc": 38}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:coat:lab coat, laboratory coat", "at": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:towel:paper towel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:coat:lab coat, laboratory coat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:safety belt-lif:seat belt, seatbelt", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:coat:lab coat, laboratory coat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:cap:shower cap", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:coat:lab coat, laboratory coat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:medical instrum:stethoscope", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:coat:lab coat, laboratory coat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:coat:raincoat-waterp:trench coat", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:coat:lab coat, laboratory coat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:attire-garb-dre:hairpiece-false:wig", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:ladle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:soft-finned fis:salmonid:salmon:coho, cohoe, coho salmon, blue jack, silver salmon, Oncorhynchus kisutch", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:ladle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:calculator-calc:abacus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:ladle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bucket, pail", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:ladle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pot:caldron, cauldron", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:ladle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:chime, bell, gong", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:ladle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:footwear:hosiery-hose:stocking:Christmas stocking", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:ladle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pan-cooking pan:frying pan, frypan, skillet", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:ladle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:ax-axe:hatchet", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:ladle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:wagon-waggon:cart:jinrikisha, ricksha, rickshaw", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:ladle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:ladle", "oc": 13}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:ladle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building comple:plant-works-ind:factory-mill-ma:lumbermill, sawmill", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:ladle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:navigational in:compass:magnetic compass", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:ladle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:maraca", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:ladle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:marimba, xylophone", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:ladle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:lock:padlock", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:ladle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:applicator-appl:paintbrush", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:ladle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:perfume, essence", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:ladle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:white goods:refrigerator, icebox", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:ladle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:eraser:rubber eraser, rubber, pencil eraser", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:ladle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:armor-armour:shield, buckler", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:ladle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dish:bowl:soup bowl", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:ladle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:spotlight, spot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:ladle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:filter:strainer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:ladle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:tub, vat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:ladle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pan-cooking pan:wok", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:ladle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:article:ware:tableware:cutlery-eating :spoon:wooden spoon", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:ladle", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:soup:consomme", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:ladle", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:stew:hot pot, hotpot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:ladle", "at": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :ingredient-fixi:flavorer-flavou:condiment:sauce:chocolate sauce, chocolate syrup", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:ladle", "at": "root:entity:abstraction-abs:attribute:shape-form:round shape:sphere:ball-globe-orb:globule:bubble", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shade:lampshade, lamp shade", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:echinoderm:sea urchin", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shade:lampshade, lamp shade", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bin:ashcan, trash can, garbage can, wastebin, ash bin, ash-bin, ashbin, dustbin, trash barrel, trash bin", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shade:lampshade, lamp shade", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:aircraft:lighter-than-ai:balloon", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shade:lampshade, lamp shade", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:candle, taper, wax light", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shade:lampshade, lamp shade", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:chime, bell, gong", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shade:lampshade, lamp shade", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:clog, geta, patten, sabot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shade:lampshade, lamp shade", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:coil, spiral, volute, whorl, helix", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shade:lampshade, lamp shade", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:helmet:crash helmet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shade:lampshade, lamp shade", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:armor-armour:body armor-body:cuirass", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shade:lampshade, lamp shade", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:fan:electric fan, blower", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shade:lampshade, lamp shade", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:blower:hand blower, blow dryer, blow drier, hair dryer, hair drier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shade:lampshade, lamp shade", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shade:lampshade, lamp shade", "oc": 24}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shade:lampshade, lamp shade", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:lamp:table lamp", "oc": 11}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shade:lampshade, lamp shade", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:canopy:umbrella", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shade:lampshade, lamp shade", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:blind-screen:window blind:window shade", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shade:lampshade, lamp shade", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:pineapple, ananas", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:portable comput:laptop, laptop computer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:chest", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:portable comput:laptop, laptop computer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:table:desk", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:portable comput:laptop, laptop computer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:desktop computer", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:portable comput:laptop, laptop computer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:golfcart, golf cart", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:portable comput:laptop, laptop computer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:coat:lab coat, laboratory coat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:portable comput:laptop, laptop computer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:portable comput:laptop, laptop computer", "oc": 9}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:portable comput:laptop, laptop computer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:monitor", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:portable comput:laptop, laptop computer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:portable comput:notebook, notebook computer", "oc": 27}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:portable comput:laptop, laptop computer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:apparatus-setup:duplicator-copi:photocopier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:portable comput:laptop, laptop computer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:oven:rotisserie", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:portable comput:laptop, laptop computer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electronic devi:display-video d:screen, CRT screen", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:portable comput:laptop, laptop computer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pan-cooking pan:wok", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:portable comput:laptop, laptop computer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:web site, website, internet site, site", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:garden tool-law:lawn mower, mower", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:power tool:power saw-saw-s:chain saw, chainsaw", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:garden tool-law:lawn mower, mower", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:croquet ball", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:garden tool-law:lawn mower, mower", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:go-kart", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:garden tool-law:lawn mower, mower", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:garden tool-law:lawn mower, mower", "oc": 39}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:garden tool-law:lawn mower, mower", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:plow, plough", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:garden tool-law:lawn mower, mower", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:racer, race car, racing car", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:garden tool-law:lawn mower, mower", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:firearm-piece-s:rifle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:garden tool-law:lawn mower, mower", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :tracked vehicle:snowmobile", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:garden tool-law:lawn mower, mower", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:swing", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:garden tool-law:lawn mower, mower", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:tricycle, trike, velocipede", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:garden tool-law:lawn mower, mower", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:vacuum, vacuum cleaner", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:cap:lens cap, lens cover", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:bulldog-English:French bulldog", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:cap:lens cap, lens cover", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:backpack, back pack, knapsack, packsack, rucksack, haversack", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:cap:lens cap, lens cover", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:binoculars, field glasses, opera glasses", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:cap:lens cap, lens cover", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:gear-parapherna:kit-outfit:carpenter's kit, tool kit", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:cap:lens cap, lens cover", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:lock:combination lock", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:cap:lens cap, lens cover", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:control-control:joystick", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:cap:lens cap, lens cover", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:protective garm:knee pad", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:cap:lens cap, lens cover", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:cap:lens cap, lens cover", "oc": 22}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:cap:lens cap, lens cover", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:scientific inst:magnifier:microscope:light microscop:hand glass-simp:loupe, jeweler's loupe", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:cap:lens cap, lens cover", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electrical devi:transducer:electro-acousti:microphone, mike", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:cap:lens cap, lens cover", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electronic devi:mouse, computer mouse", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:cap:lens cap, lens cover", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:ping-pong ball", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:cap:lens cap, lens cover", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:plane, carpenter's plane, woodworking plane", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:cap:lens cap, lens cover", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:projector", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:cap:lens cap, lens cover", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:rotating mechan:circle-round:disk-disc:puck, hockey puck", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:cap:lens cap, lens cover", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:photographic eq:camera-photogra:reflex camera", "oc": 6}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:cap:lens cap, lens cover", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:eraser:rubber eraser, rubber, pencil eraser", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:cap:lens cap, lens cover", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:safety belt-lif:seat belt, seatbelt", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:cap:lens cap, lens cover", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:support:rack-stand:tripod", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:cap:lens cap, lens cover", "at": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:wine-vino:red wine", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:knife:letter opener, paper knife, paperknife", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:writing impleme:pen:ballpoint, ballpoint pen, ballpen, Biro", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:knife:letter opener, paper knife, paperknife", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloth covering:dressing-medica:bandage-patch:adhesive bandag:Band Aid", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:knife:letter opener, paper knife, paperknife", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:gear-parapherna:kit-outfit:carpenter's kit, tool kit", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:knife:letter opener, paper knife, paperknife", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:cassette", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:knife:letter opener, paper knife, paperknife", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:cassette player", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:knife:letter opener, paper knife, paperknife", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:connection-conn:attachment-bond:ligament:chain", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:knife:letter opener, paper knife, paperknife", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:chest", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:knife:letter opener, paper knife, paperknife", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:knife:cleaver, meat cleaver, chopper", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:knife:letter opener, paper knife, paperknife", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:drumstick", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:knife:letter opener, paper knife, paperknife", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:writing impleme:pen:fountain pen", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:knife:letter opener, paper knife, paperknife", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:clip:hair slide", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:knife:letter opener, paper knife, paperknife", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:hammer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:knife:letter opener, paper knife, paperknife", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:sheath:holster", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:knife:letter opener, paper knife, paperknife", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:audio system-so:reproducer:stereo-stereoph:iPod", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:knife:letter opener, paper knife, paperknife", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:iron, smoothing iron", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:knife:letter opener, paper knife, paperknife", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:knife:letter opener, paper knife, paperknife", "oc": 14}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:knife:letter opener, paper knife, paperknife", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:mask", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:knife:letter opener, paper knife, paperknife", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:matchstick", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:knife:letter opener, paper knife, paperknife", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:applicator-appl:paintbrush", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:knife:letter opener, paper knife, paperknife", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:plane, carpenter's plane, woodworking plane", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:knife:letter opener, paper knife, paperknife", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:writing impleme:pen:quill, quill pen", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:knife:letter opener, paper knife, paperknife", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:eraser:rubber eraser, rubber, pencil eraser", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:knife:letter opener, paper knife, paperknife", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:measuring stick:rule, ruler", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:knife:letter opener, paper knife, paperknife", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:sheath:scabbard", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:knife:letter opener, paper knife, paperknife", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dish:bowl:soup bowl", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:knife:letter opener, paper knife, paperknife", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:support:rack-stand:tripod", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:knife:letter opener, paper knife, paperknife", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:clock:wall clock", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:knife:letter opener, paper knife, paperknife", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:article:ware:tableware:cutlery-eating :spoon:wooden spoon", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:knife:letter opener, paper knife, paperknife", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:dessert-sweet-a:frozen dessert:ice lolly, lolly, lollipop, popsicle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:library", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:outerwear-overc:gown-robe:academic gown, academic robe, judge's robe", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:library", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:bookcase", "oc": 5}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:library", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:bookshop, bookstore, bookstall", "oc": 6}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:library", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:table:desk", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:library", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:guitar:electric guitar", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:library", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:game:puzzle:jigsaw puzzle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:library", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:coat:lab coat, laboratory coat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:library", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:library", "oc": 26}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:library", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:cabinet:medicine chest, medicine cabinet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:library", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:house:residence:palace", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:library", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:punching bag, punch bag, punching ball, punchball", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:library", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:medical instrum:syringe", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:library", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:tobacco shop, tobacconist shop, tobacconist", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:library", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:outerwear-overc:gown-robe:vestment", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:library", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:screen:window screen", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:boat:sea boat:lifeboat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:amphibian, amphibious vehicle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:boat:sea boat:lifeboat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:boat:sea boat:lifeboat", "oc": 47}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:boat:sea boat:lifeboat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:passenger ship:liner, ocean liner", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:boat:sea boat:lifeboat", "at": "root:entity:physical entity:object-physical:geological form:shore:seashore, coast, seacoast, sea-coast", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:lighter, light, igniter, ignitor", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:buckle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:lighter, light, igniter, ignitor", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:candle, taper, wax light", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:lighter, light, igniter, ignitor", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:cassette", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:lighter, light, igniter, ignitor", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:watch-ticker:digital watch", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:lighter, light, igniter, ignitor", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:writing impleme:pen:fountain pen", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:lighter, light, igniter, ignitor", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:blower:hand blower, blow dryer, blow drier, hair dryer, hair drier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:lighter, light, igniter, ignitor", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:lighter, light, igniter, ignitor", "oc": 28}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:lighter, light, igniter, ignitor", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electrical devi:transducer:electro-acousti:microphone, mike", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:lighter, light, igniter, ignitor", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:modem", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:lighter, light, igniter, ignitor", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:breathing devic:oxygen mask", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:lighter, light, igniter, ignitor", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:package-parcel:packet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:lighter, light, igniter, ignitor", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:machine-simple :wheel:pinwheel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:lighter, light, igniter, ignitor", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:eraser:rubber eraser, rubber, pencil eraser", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:lighter, light, igniter, ignitor", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:screwdriver", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:lighter, light, igniter, ignitor", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:light-light sou:torch", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:lighter, light, igniter, ignitor", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:waffle iron", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:lighter, light, igniter, ignitor", "at": "root:entity:abstraction-abs:communication:sign:street sign", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:lighter, light, igniter, ignitor", "at": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:mixed drink:punch:eggnog", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:limousine, limo", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:convertible", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:limousine, limo", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:limousine, limo", "oc": 39}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:limousine, limo", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:public transpor:bus-autobus-coa:minibus", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:limousine, limo", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:van:passenger van:minivan", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:limousine, limo", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:car-railcar-rai:passenger car, coach, carriage", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:limousine, limo", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:racer, race car, racing car", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:limousine, limo", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:safety belt-lif:seat belt, seatbelt", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:limousine, limo", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :tracked vehicle:snowmobile", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:limousine, limo", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:outerwear-overc:gown-robe:vestment", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:passenger ship:liner, ocean liner", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:cargo ship-carg:container ship, containership, container vessel", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:passenger ship:liner, ocean liner", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:boat:fireboat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:passenger ship:liner, ocean liner", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:passenger ship:liner, ocean liner", "oc": 45}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:passenger ship:liner, ocean liner", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:machine-simple :wheel:paddlewheel, paddle wheel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:passenger ship:liner, ocean liner", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:airfoil-aerofoi:wing", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cosmetic:makeup-make-up-:lipstick, lip rouge", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:backpack, back pack, knapsack, packsack, rucksack, haversack", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cosmetic:makeup-make-up-:lipstick, lip rouge", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:candle, taper, wax light", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cosmetic:makeup-make-up-:lipstick, lip rouge", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cosmetic:makeup-make-up-:face powder", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cosmetic:makeup-make-up-:lipstick, lip rouge", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:writing impleme:pen:fountain pen", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cosmetic:makeup-make-up-:lipstick, lip rouge", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:hair spray", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cosmetic:makeup-make-up-:lipstick, lip rouge", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:control-control:joystick", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cosmetic:makeup-make-up-:lipstick, lip rouge", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:robe:kimono", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cosmetic:makeup-make-up-:lipstick, lip rouge", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:lighter, light, igniter, ignitor", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cosmetic:makeup-make-up-:lipstick, lip rouge", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cosmetic:makeup-make-up-:lipstick, lip rouge", "oc": 32}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cosmetic:makeup-make-up-:lipstick, lip rouge", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:decoration-orna:adornment:jewelry-jewelle:necklace", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cosmetic:makeup-make-up-:lipstick, lip rouge", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:perfume, essence", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cosmetic:makeup-make-up-:lipstick, lip rouge", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:eraser:rubber eraser, rubber, pencil eraser", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cosmetic:makeup-make-up-:lipstick, lip rouge", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:bar:lever:key:space bar", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cosmetic:makeup-make-up-:lipstick, lip rouge", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:spectacles-spec:sunglasses, dark glasses, shades", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cosmetic:makeup-make-up-:lipstick, lip rouge", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:lamp:table lamp", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cosmetic:makeup-make-up-:lipstick, lip rouge", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:attire-garb-dre:hairpiece-false:wig", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cosmetic:makeup-make-up-:lipstick, lip rouge", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:solanaceous veg:pepper:sweet pepper:bell pepper", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:shoe:Loafer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:clog, geta, patten, sabot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:shoe:Loafer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:boot:cowboy boot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:shoe:Loafer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:iron, smoothing iron", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:shoe:Loafer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:apparel-wearing:workwear:jean, blue jean, denim", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:shoe:Loafer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:shoe:Loafer", "oc": 41}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:shoe:Loafer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:miniskirt, mini", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:shoe:Loafer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:bench:park bench", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:shoe:Loafer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:shoe:sandal", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:lotion", "at": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:towel:bath towel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:lotion", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:candle, taper, wax light", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:lotion", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:envelope", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:lotion", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cosmetic:makeup-make-up-:face powder", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:lotion", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:hair spray", "oc": 5}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:lotion", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:lotion", "oc": 27}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:lotion", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:filter:oil filter", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:lotion", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:perfume, essence", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:lotion", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:pill bottle", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:lotion", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:pop bottle, soda bottle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:lotion", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:eraser:rubber eraser, rubber, pencil eraser", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:lotion", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dispenser:soap dispenser", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:lotion", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cream-ointment-:sunscreen, sunblock, sun blocker", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:lotion", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:water bottle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:lotion", "at": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:mixed drink:punch:eggnog", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electrical devi:transducer:electro-acousti:loudspeaker, speaker, speaker unit, loudspeaker system, speaker system", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:ladybug, ladybeetle, lady beetle, ladybird, ladybird beetle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electrical devi:transducer:electro-acousti:loudspeaker, speaker, speaker unit, loudspeaker system, speaker system", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:aircraft:lighter-than-ai:balloon", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electrical devi:transducer:electro-acousti:loudspeaker, speaker, speaker unit, loudspeaker system, speaker system", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:telephone-phone:radiotelephone-:cellular telephone, cellular phone, cellphone, cell, mobile phone", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electrical devi:transducer:electro-acousti:loudspeaker, speaker, speaker unit, loudspeaker system, speaker system", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:cowboy hat, ten-gallon hat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electrical devi:transducer:electro-acousti:loudspeaker, speaker, speaker unit, loudspeaker system, speaker system", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:table:desk", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electrical devi:transducer:electro-acousti:loudspeaker, speaker, speaker unit, loudspeaker system, speaker system", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:brake:brake system-br:hydraulic brake:disk brake, disc brake", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electrical devi:transducer:electro-acousti:loudspeaker, speaker, speaker unit, loudspeaker system, speaker system", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:blower:hand blower, blow dryer, blow drier, hair dryer, hair drier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electrical devi:transducer:electro-acousti:loudspeaker, speaker, speaker unit, loudspeaker system, speaker system", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:theater-theatre:home theater, home theatre", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electrical devi:transducer:electro-acousti:loudspeaker, speaker, speaker unit, loudspeaker system, speaker system", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:audio system-so:reproducer:stereo-stereoph:iPod", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electrical devi:transducer:electro-acousti:loudspeaker, speaker, speaker unit, loudspeaker system, speaker system", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:cap:lens cap, lens cover", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electrical devi:transducer:electro-acousti:loudspeaker, speaker, speaker unit, loudspeaker system, speaker system", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electrical devi:transducer:electro-acousti:loudspeaker, speaker, speaker unit, loudspeaker system, speaker system", "oc": 27}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electrical devi:transducer:electro-acousti:loudspeaker, speaker, speaker unit, loudspeaker system, speaker system", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:modem", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electrical devi:transducer:electro-acousti:loudspeaker, speaker, speaker unit, loudspeaker system, speaker system", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:monitor", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electrical devi:transducer:electro-acousti:loudspeaker, speaker, speaker unit, loudspeaker system, speaker system", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:beating-reed in:double-reed ins:oboe, hautboy, hautbois", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electrical devi:transducer:electro-acousti:loudspeaker, speaker, speaker unit, loudspeaker system, speaker system", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:planetarium", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electrical devi:transducer:electro-acousti:loudspeaker, speaker, speaker unit, loudspeaker system, speaker system", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:rod:pole", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electrical devi:transducer:electro-acousti:loudspeaker, speaker, speaker unit, loudspeaker system, speaker system", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:projector", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electrical devi:transducer:electro-acousti:loudspeaker, speaker, speaker unit, loudspeaker system, speaker system", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:system:communication s:radio, wireless", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electrical devi:transducer:electro-acousti:loudspeaker, speaker, speaker unit, loudspeaker system, speaker system", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:heater-warmer:space heater", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electrical devi:transducer:electro-acousti:loudspeaker, speaker, speaker unit, loudspeaker system, speaker system", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:spotlight, spot", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electrical devi:transducer:electro-acousti:loudspeaker, speaker, speaker unit, loudspeaker system, speaker system", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:surface:horizontal surf:platform:stage", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electrical devi:transducer:electro-acousti:loudspeaker, speaker, speaker unit, loudspeaker system, speaker system", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:heater-warmer:stove", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electrical devi:transducer:electro-acousti:loudspeaker, speaker, speaker unit, loudspeaker system, speaker system", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:toilet seat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:scientific inst:magnifier:microscope:light microscop:hand glass-simp:loupe, jeweler's loupe", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:prototherian:monotreme-egg-l:echidna, spiny anteater, anteater", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:scientific inst:magnifier:microscope:light microscop:hand glass-simp:loupe, jeweler's loupe", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:worm:nematode, nematode worm, roundworm", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:scientific inst:magnifier:microscope:light microscop:hand glass-simp:loupe, jeweler's loupe", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:hymenopterous i:ant, emmet, pismire", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:scientific inst:magnifier:microscope:light microscop:hand glass-simp:loupe, jeweler's loupe", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:birdhouse", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:scientific inst:magnifier:microscope:light microscop:hand glass-simp:loupe, jeweler's loupe", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:bookcase", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:scientific inst:magnifier:microscope:light microscop:hand glass-simp:loupe, jeweler's loupe", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:opener:can opener, tin opener", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:scientific inst:magnifier:microscope:light microscop:hand glass-simp:loupe, jeweler's loupe", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:reflector:mirror:car mirror", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:scientific inst:magnifier:microscope:light microscop:hand glass-simp:loupe, jeweler's loupe", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:brass-brass ins:cornet, horn, trumpet, trump", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:scientific inst:magnifier:microscope:light microscop:hand glass-simp:loupe, jeweler's loupe", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:table:desk", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:scientific inst:magnifier:microscope:light microscop:hand glass-simp:loupe, jeweler's loupe", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:writing impleme:pen:fountain pen", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:scientific inst:magnifier:microscope:light microscop:hand glass-simp:loupe, jeweler's loupe", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:mask:gasmask, respirator, gas helmet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:scientific inst:magnifier:microscope:light microscop:hand glass-simp:loupe, jeweler's loupe", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:clip:hair slide", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:scientific inst:magnifier:microscope:light microscop:hand glass-simp:loupe, jeweler's loupe", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:portable comput:laptop, laptop computer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:scientific inst:magnifier:microscope:light microscop:hand glass-simp:loupe, jeweler's loupe", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:cap:lens cap, lens cover", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:scientific inst:magnifier:microscope:light microscop:hand glass-simp:loupe, jeweler's loupe", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cosmetic:makeup-make-up-:lipstick, lip rouge", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:scientific inst:magnifier:microscope:light microscop:hand glass-simp:loupe, jeweler's loupe", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:scientific inst:magnifier:microscope:light microscop:hand glass-simp:loupe, jeweler's loupe", "oc": 16}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:scientific inst:magnifier:microscope:light microscop:hand glass-simp:loupe, jeweler's loupe", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:sharpener:pencil sharpener", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:scientific inst:magnifier:microscope:light microscop:hand glass-simp:loupe, jeweler's loupe", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:projector", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:scientific inst:magnifier:microscope:light microscop:hand glass-simp:loupe, jeweler's loupe", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:sports implemen:racket, racquet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:scientific inst:magnifier:microscope:light microscop:hand glass-simp:loupe, jeweler's loupe", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:photographic eq:camera-photogra:reflex camera", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:scientific inst:magnifier:microscope:light microscop:hand glass-simp:loupe, jeweler's loupe", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:measuring stick:rule, ruler", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:scientific inst:magnifier:microscope:light microscop:hand glass-simp:loupe, jeweler's loupe", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:strongbox-deedb:safe", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:scientific inst:magnifier:microscope:light microscop:hand glass-simp:loupe, jeweler's loupe", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:sheath:scabbard", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:scientific inst:magnifier:microscope:light microscop:hand glass-simp:loupe, jeweler's loupe", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:mask:face mask:ski mask", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:scientific inst:magnifier:microscope:light microscop:hand glass-simp:loupe, jeweler's loupe", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:spectacles-spec:sunglasses, dark glasses, shades", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:scientific inst:magnifier:microscope:light microscop:hand glass-simp:loupe, jeweler's loupe", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:medical instrum:syringe", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:scientific inst:magnifier:microscope:light microscop:hand glass-simp:loupe, jeweler's loupe", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:system:communication s:telecommunicati:television, television system", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:scientific inst:magnifier:microscope:light microscop:hand glass-simp:loupe, jeweler's loupe", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:brass-brass ins:trombone", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:scientific inst:magnifier:microscope:light microscop:hand glass-simp:loupe, jeweler's loupe", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:clock:wall clock", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:scientific inst:magnifier:microscope:light microscop:hand glass-simp:loupe, jeweler's loupe", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:case:wallet, billfold, notecase, pocketbook", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:scientific inst:magnifier:microscope:light microscop:hand glass-simp:loupe, jeweler's loupe", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:wrapping-wrap-w:jacket:book jacket, dust cover, dust jacket, dust wrapper", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:scientific inst:magnifier:microscope:light microscop:hand glass-simp:loupe, jeweler's loupe", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:cruciferous veg:broccoli", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:scientific inst:magnifier:microscope:light microscop:hand glass-simp:loupe, jeweler's loupe", "at": "root:entity:abstraction-abs:attribute:shape-form:round shape:sphere:ball-globe-orb:globule:bubble", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:scientific inst:magnifier:microscope:light microscop:hand glass-simp:loupe, jeweler's loupe", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:person-individu:peer-equal-matc:associate:participant:groom, bridegroom", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building comple:plant-works-ind:factory-mill-ma:lumbermill, sawmill", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:gymnastic appar:balance beam, beam", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building comple:plant-works-ind:factory-mill-ma:lumbermill, sawmill", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:farm building:barn", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building comple:plant-works-ind:factory-mill-ma:lumbermill, sawmill", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:chainlink fence", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building comple:plant-works-ind:factory-mill-ma:lumbermill, sawmill", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:power tool:power saw-saw-s:chain saw, chainsaw", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building comple:plant-works-ind:factory-mill-ma:lumbermill, sawmill", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:lifting device:crane", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building comple:plant-works-ind:factory-mill-ma:lumbermill, sawmill", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:crate", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building comple:plant-works-ind:factory-mill-ma:lumbermill, sawmill", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:brake:brake system-br:hydraulic brake:disk brake, disc brake", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building comple:plant-works-ind:factory-mill-ma:lumbermill, sawmill", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:greenhouse, nursery, glasshouse", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building comple:plant-works-ind:factory-mill-ma:lumbermill, sawmill", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:instrument of e:guillotine", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building comple:plant-works-ind:factory-mill-ma:lumbermill, sawmill", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building comple:plant-works-ind:factory-mill-ma:lumbermill, sawmill", "oc": 33}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building comple:plant-works-ind:factory-mill-ma:lumbermill, sawmill", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:marimba, xylophone", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building comple:plant-works-ind:factory-mill-ma:lumbermill, sawmill", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:lock:padlock", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building comple:plant-works-ind:factory-mill-ma:lumbermill, sawmill", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:support:pier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building comple:plant-works-ind:factory-mill-ma:lumbermill, sawmill", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:snowplow, snowplough", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building comple:plant-works-ind:factory-mill-ma:lumbermill, sawmill", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:roof:thatch, thatched roof", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building comple:plant-works-ind:factory-mill-ma:lumbermill, sawmill", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:rail fence:worm fence, snake fence, snake-rail fence, Virginia fence", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building comple:plant-works-ind:factory-mill-ma:lumbermill, sawmill", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:wreck", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building comple:plant-works-ind:factory-mill-ma:lumbermill, sawmill", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:housing-lodging:dwelling-home-d:yurt", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:navigational in:compass:magnetic compass", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:clock:analog clock", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:navigational in:compass:magnetic compass", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:barometer", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:navigational in:compass:magnetic compass", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:power tool:power saw-saw-s:chain saw, chainsaw", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:navigational in:compass:magnetic compass", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:chime, bell, gong", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:navigational in:compass:magnetic compass", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:telephone-phone:dial telephone, dial phone", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:navigational in:compass:magnetic compass", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cosmetic:makeup-make-up-:face powder", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:navigational in:compass:magnetic compass", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:blower:hand blower, blow dryer, blow drier, hair dryer, hair drier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:navigational in:compass:magnetic compass", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:navigational in:compass:magnetic compass", "oc": 32}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:navigational in:compass:magnetic compass", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:can-tin-tin can:milk can", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:navigational in:compass:magnetic compass", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:timer:parking meter", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:navigational in:compass:magnetic compass", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:pot, flowerpot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:navigational in:compass:magnetic compass", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:projectile, missile", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:navigational in:compass:magnetic compass", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:timer:stopwatch, stop watch", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:navigational in:compass:magnetic compass", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:sundial", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:navigational in:compass:magnetic compass", "at": "root:entity:physical entity:matter:substance:material-stuff:paper:tissue-tissue p:toilet tissue, toilet paper, bathroom tissue", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:mailbag, postbag", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:chameleon-chama:African chameleon, Chamaeleo chamaeleon", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:mailbag, postbag", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:robe:abaya", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:mailbag, postbag", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:backpack, back pack, knapsack, packsack, rucksack, haversack", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:mailbag, postbag", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:vest-waistcoat:bulletproof vest", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:mailbag, postbag", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:shoe:Loafer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:mailbag, postbag", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:mailbag, postbag", "oc": 26}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:mailbag, postbag", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:muzzle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:mailbag, postbag", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:pencil box, pencil case", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:mailbag, postbag", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:padding-cushion:cushion:pillow", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:mailbag, postbag", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:cloak:poncho", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:mailbag, postbag", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:purse", "oc": 8}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:mailbag, postbag", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:shoe shop, shoe-shop, shoe store", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:mailbag, postbag", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:basket-handbask:shopping basket", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:mailbag, postbag", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:litter:stretcher", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:mailbag, postbag", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:case:wallet, billfold, notecase, pocketbook", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:mailbox, letter box", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bin:ashcan, trash can, garbage can, wastebin, ash bin, ash-bin, ashbin, dustbin, trash barrel, trash bin", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:mailbox, letter box", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:birdhouse", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:mailbox, letter box", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:envelope", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:mailbox, letter box", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:garden tool-law:lawn mower, mower", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:mailbox, letter box", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:mailbox, letter box", "oc": 40}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:mailbox, letter box", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:can-tin-tin can:milk can", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:mailbox, letter box", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:timer:parking meter", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:mailbox, letter box", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:picket fence, paling", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:mailbox, letter box", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:firearm-piece-s:pistol-handgun-:revolver, six-gun, six-shooter", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:footwear:hosiery-hose:tights-leotards:maillot", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:greyhound:whippet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:footwear:hosiery-hose:tights-leotards:maillot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:cap:bathing cap, swimming cap", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:footwear:hosiery-hose:tights-leotards:maillot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:swimsuit-swimwe:bikini, two-piece", "oc": 5}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:footwear:hosiery-hose:tights-leotards:maillot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:undergarment-un:brassiere, bra, bandeau", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:footwear:hosiery-hose:tights-leotards:maillot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:blower:hand blower, blow dryer, blow drier, hair dryer, hair drier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:footwear:hosiery-hose:tights-leotards:maillot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:wagon-waggon:cart:jinrikisha, ricksha, rickshaw", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:footwear:hosiery-hose:tights-leotards:maillot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:footwear:hosiery-hose:tights-leotards:maillot", "oc": 12}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:footwear:hosiery-hose:tights-leotards:maillot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:swimsuit-swimwe:maillot, tank suit", "oc": 23}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:footwear:hosiery-hose:tights-leotards:maillot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:miniskirt, mini", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:footwear:hosiery-hose:tights-leotards:maillot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:bicycle-bike-wh:mountain bike, all-terrain bike, off-roader", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:footwear:hosiery-hose:tights-leotards:maillot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:nightwear-sleep:pajama, pyjama, pj's, jammies", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:footwear:hosiery-hose:tights-leotards:maillot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:sarong", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:swimsuit-swimwe:maillot, tank suit", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:wolfhound:borzoi, Russian wolfhound", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:swimsuit-swimwe:maillot, tank suit", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:gymnastic appar:balance beam, beam", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:swimsuit-swimwe:maillot, tank suit", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:cap:bathing cap, swimming cap", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:swimsuit-swimwe:maillot, tank suit", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:swimsuit-swimwe:bikini, two-piece", "oc": 7}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:swimsuit-swimwe:maillot, tank suit", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:breakwater, groin, groyne, mole, bulwark, seawall, jetty", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:swimsuit-swimwe:maillot, tank suit", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:gymnastic appar:horizontal bar, high bar", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:swimsuit-swimwe:maillot, tank suit", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:footwear:hosiery-hose:tights-leotards:maillot", "oc": 14}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:swimsuit-swimwe:maillot, tank suit", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:swimsuit-swimwe:maillot, tank suit", "oc": 16}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:swimsuit-swimwe:maillot, tank suit", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:miniskirt, mini", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:swimsuit-swimwe:maillot, tank suit", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:gymnastic appar:parallel bars, bars", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:swimsuit-swimwe:maillot, tank suit", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:sombrero", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:swimsuit-swimwe:maillot, tank suit", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:turner-food tur:spatula", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:swimsuit-swimwe:maillot, tank suit", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:tub, vat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:swimsuit-swimwe:maillot, tank suit", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:canopy:umbrella", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:top-cover:manhole cover", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:crate", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:top-cover:manhole cover", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:floor cover-flo:mat:doormat, welcome mat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:top-cover:manhole cover", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:top-cover:manhole cover", "oc": 46}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:top-cover:manhole cover", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:system:maze, labyrinth", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:top-cover:manhole cover", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:sundial", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:maraca", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:calculator-calc:abacus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:maraca", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:gear-parapherna:kit-outfit:carpenter's kit, tool kit", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:maraca", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:weight-free wei:dumbbell", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:maraca", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:glass-drinking :goblet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:maraca", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:clip:hair slide", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:maraca", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:ladle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:maraca", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:maraca", "oc": 38}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:maraca", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:top-cover:cap:nipple", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:maraca", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:writing impleme:pen:quill, quill pen", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:maraca", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:sheath:scabbard", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:maraca", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:soccer ball", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:maraca", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:spindle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:maraca", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:squash:winter squash:butternut squash", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:marimba, xylophone", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:ride:carousel, carrousel, merry-go-round, roundabout, whirligig", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:marimba, xylophone", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:drumstick", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:marimba, xylophone", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:theater-theatre:home theater, home theatre", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:marimba, xylophone", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:robe:kimono", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:marimba, xylophone", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building comple:plant-works-ind:factory-mill-ma:lumbermill, sawmill", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:marimba, xylophone", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:marimba, xylophone", "oc": 42}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:marimba, xylophone", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:bench:park bench", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:marimba, xylophone", "at": "root:entity:abstraction-abs:attribute:shape-form:round shape:sphere:ball-globe-orb:globule:bubble", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:mask", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:venomous lizard:Gila monster, Heloderma suspectum", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:mask", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:birdhouse", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:mask", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shield:plate-scale-she:armor plate-arm:breastplate, aegis, egis", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:mask", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:ride:carousel, carrousel, merry-go-round, roundabout, whirligig", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:mask", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:helmet:crash helmet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:mask", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:armor-armour:body armor-body:cuirass", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:mask", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:mask:gasmask, respirator, gas helmet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:mask", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:robe:kimono", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:mask", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:mask", "oc": 27}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:mask", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:machine-simple :wheel:pinwheel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:mask", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:plastic bag", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:mask", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:drill:power drill", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:mask", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:firearm-piece-s:pistol-handgun-:revolver, six-gun, six-shooter", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:mask", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:shoe shop, shoe-shop, shoe store", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:mask", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:mask:face mask:ski mask", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:mask", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:surface:horizontal surf:platform:stage", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:mask", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:spectacles-spec:sunglasses, dark glasses, shades", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:mask", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:medical instrum:syringe", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:mask", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:column-pillar:totem pole", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:mask", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:toyshop", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:mask", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:attire-garb-dre:hairpiece-false:wig", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:matchstick", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:long-horned beetle, longicorn, longicorn beetle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:matchstick", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:clock:analog clock", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:matchstick", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:candle, taper, wax light", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:matchstick", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:drumstick", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:matchstick", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:supporting stru:framework:honeycomb", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:matchstick", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:sandglass:hourglass", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:matchstick", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:maraca", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:matchstick", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:matchstick", "oc": 33}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:matchstick", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electronic devi:mouse, computer mouse", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:matchstick", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:nail", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:matchstick", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:column-pillar:obelisk", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:matchstick", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:eraser:rubber eraser, rubber, pencil eraser", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:matchstick", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:screw", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:matchstick", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:berry:strawberry", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:support:structural memb:upright-vertica:post:maypole", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:staff:flagpole, flagstaff", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:support:structural memb:upright-vertica:post:maypole", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:instrument of e:guillotine", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:support:structural memb:upright-vertica:post:maypole", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:support:structural memb:upright-vertica:post:maypole", "oc": 47}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:support:structural memb:upright-vertica:post:maypole", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:canopy:umbrella", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:system:maze, labyrinth", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:place of worshi:church, church building", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:system:maze, labyrinth", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electrical devi:transducer:electro-acousti:loudspeaker, speaker, speaker unit, loudspeaker system, speaker system", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:system:maze, labyrinth", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:system:maze, labyrinth", "oc": 44}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:system:maze, labyrinth", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:nail", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:system:maze, labyrinth", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:pot, flowerpot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:system:maze, labyrinth", "at": "root:entity:physical entity:matter:substance:food-nutrient:feed-provender:fodder:hay", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:system:maze, labyrinth", "at": "root:entity:physical entity:object-physical:geological form:shore:lakeside, lakeshore", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:measure:measuring cup", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:lagomorph-gnawi:leporid-leporid:rabbit-coney-co:Angora, Angora rabbit", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:measure:measuring cup", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:jar:beaker", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:measure:measuring cup", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bucket, pail", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:measure:measuring cup", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:opener:can opener, tin opener", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:measure:measuring cup", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:mask:gasmask, respirator, gas helmet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:measure:measuring cup", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:measure:measuring cup", "oc": 31}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:measure:measuring cup", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dish:bowl:mixing bowl", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:measure:measuring cup", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:package-parcel:packet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:measure:measuring cup", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:applicator-appl:paintbrush", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:measure:measuring cup", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:savings bank-co:piggy bank, penny bank", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:measure:measuring cup", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:turner-food tur:spatula", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:measure:measuring cup", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:medical instrum:stethoscope", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:measure:measuring cup", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:soup:consomme", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:measure:measuring cup", "at": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:loaf of bread-l:French loaf", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:measure:measuring cup", "at": "root:entity:physical entity:matter:substance:food-nutrient:beverage-drink-:coffee-java:espresso", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:measure:measuring cup", "at": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:mixed drink:punch:cup", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:measure:measuring cup", "at": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:mixed drink:punch:eggnog", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:cabinet:medicine chest, medicine cabinet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:bookcase", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:cabinet:medicine chest, medicine cabinet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:bookshop, bookstore, bookstall", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:cabinet:medicine chest, medicine cabinet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:chest of drawer:chiffonier, commode", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:cabinet:medicine chest, medicine cabinet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:cabinet:china cabinet, china closet", "oc": 5}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:cabinet:medicine chest, medicine cabinet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:table:desk", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:cabinet:medicine chest, medicine cabinet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:cabinet:medicine chest, medicine cabinet", "oc": 26}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:cabinet:medicine chest, medicine cabinet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:microwave, microwave oven", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:cabinet:medicine chest, medicine cabinet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:supporting stru:framework:rack:plate rack", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:cabinet:medicine chest, medicine cabinet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:white goods:refrigerator, icebox", "oc": 5}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:cabinet:medicine chest, medicine cabinet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:blind-screen:curtain-drape-d:shower curtain", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:cabinet:medicine chest, medicine cabinet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:movable barrier:door:sliding door", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:cabinet:medicine chest, medicine cabinet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:slot machine-co:vending machine", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:cabinet:medicine chest, medicine cabinet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:wardrobe, closet, press", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:memorial-monume:megalith, megalithic structure", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:binoculars, field glasses, opera glasses", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:memorial-monume:megalith, megalithic structure", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:housing-lodging:dwelling-home-d:cliff dwelling", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:memorial-monume:megalith, megalithic structure", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:crate", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:memorial-monume:megalith, megalithic structure", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:fountain", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:memorial-monume:megalith, megalithic structure", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:memorial-monume:megalith, megalithic structure", "oc": 40}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:memorial-monume:megalith, megalithic structure", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:plow, plough", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:memorial-monume:megalith, megalithic structure", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:institution:penal instituti:correctional in:prison, prison house", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:memorial-monume:megalith, megalithic structure", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:stone wall", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:memorial-monume:megalith, megalithic structure", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:bridge-span:suspension bridge", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:memorial-monume:megalith, megalithic structure", "at": "root:entity:physical entity:matter:substance:food-nutrient:feed-provender:fodder:hay", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:memorial-monume:megalith, megalithic structure", "at": "root:entity:physical entity:object-physical:geological form:cliff, drop, drop-off", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electrical devi:transducer:electro-acousti:microphone, mike", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:trilobite", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electrical devi:transducer:electro-acousti:microphone, mike", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:guitar:acoustic guitar", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electrical devi:transducer:electro-acousti:microphone, mike", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:banjo", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electrical devi:transducer:electro-acousti:microphone, mike", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:weight-free wei:barbell", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electrical devi:transducer:electro-acousti:microphone, mike", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:cap:bathing cap, swimming cap", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electrical devi:transducer:electro-acousti:microphone, mike", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:opener:bottle opener:corkscrew, bottle screw", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electrical devi:transducer:electro-acousti:microphone, mike", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:white goods:dishwasher, dish washer, dishwashing machine", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electrical devi:transducer:electro-acousti:microphone, mike", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:flute, transverse flute", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electrical devi:transducer:electro-acousti:microphone, mike", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:writing impleme:pen:fountain pen", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electrical devi:transducer:electro-acousti:microphone, mike", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:hammer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electrical devi:transducer:electro-acousti:microphone, mike", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:blower:hand blower, blow dryer, blow drier, hair dryer, hair drier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electrical devi:transducer:electro-acousti:microphone, mike", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:coat:lab coat, laboratory coat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electrical devi:transducer:electro-acousti:microphone, mike", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electrical devi:transducer:electro-acousti:microphone, mike", "oc": 23}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electrical devi:transducer:electro-acousti:microphone, mike", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:ocarina, sweet potato", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electrical devi:transducer:electro-acousti:microphone, mike", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:projector", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electrical devi:transducer:electro-acousti:microphone, mike", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:punching bag, punch bag, punching ball, punchball", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electrical devi:transducer:electro-acousti:microphone, mike", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:photographic eq:camera-photogra:reflex camera", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electrical devi:transducer:electro-acousti:microphone, mike", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:pin:safety pin", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electrical devi:transducer:electro-acousti:microphone, mike", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:surface:horizontal surf:platform:stage", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electrical devi:transducer:electro-acousti:microphone, mike", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:suit, suit of clothes", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electrical devi:transducer:electro-acousti:microphone, mike", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:tape player", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electrical devi:transducer:electro-acousti:microphone, mike", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:light-light sou:torch", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electrical devi:transducer:electro-acousti:microphone, mike", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:support:rack-stand:tripod", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electrical devi:transducer:electro-acousti:microphone, mike", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:brass-brass ins:trombone", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electrical devi:transducer:electro-acousti:microphone, mike", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:creation:product-product:work-piece of w:publication:magazine-mag:comic book", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:microwave, microwave oven", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Yorkshire terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:microwave, microwave oven", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloth covering:dressing-medica:bandage-patch:adhesive bandag:Band Aid", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:microwave, microwave oven", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bathtub, bathing tub, bath, tub", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:microwave, microwave oven", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:bookshop, bookstore, bookstall", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:microwave, microwave oven", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:cash machine, cash dispenser, automated teller machine, automatic teller machine, automated teller, automatic teller, ATM", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:microwave, microwave oven", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:clock:digital clock", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:microwave, microwave oven", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:table:dining table, board", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:microwave, microwave oven", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:blower:hand blower, blow dryer, blow drier, hair dryer, hair drier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:microwave, microwave oven", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:apparel-wearing:workwear:jean, blue jean, denim", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:microwave, microwave oven", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:cabinet:medicine chest, medicine cabinet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:microwave, microwave oven", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:microwave, microwave oven", "oc": 24}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:microwave, microwave oven", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:monitor", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:microwave, microwave oven", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:printer-printin:printer", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:microwave, microwave oven", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:projector", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:microwave, microwave oven", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:white goods:refrigerator, icebox", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:microwave, microwave oven", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:heater-warmer:space heater", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:microwave, microwave oven", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:heater-warmer:stove", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:microwave, microwave oven", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:system:communication s:telecommunicati:television, television system", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:microwave, microwave oven", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:toaster", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:microwave, microwave oven", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:wardrobe, closet, press", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:microwave, microwave oven", "at": "root:entity:abstraction-abs:attribute:shape-form:round shape:sphere:ball-globe-orb:globule:bubble", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:uniform:military uniform", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:bearskin, busby, shako", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:uniform:military uniform", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:bow", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:uniform:military uniform", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:cash machine, cash dispenser, automated teller machine, automatic teller machine, automated teller, automatic teller, ATM", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:uniform:military uniform", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloak", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:uniform:military uniform", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:cowboy hat, ten-gallon hat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:uniform:military uniform", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:marketplace-mar:grocery store, grocery, food market, market", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:uniform:military uniform", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:military vehicl:half track", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:uniform:military uniform", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:uniform:military uniform", "oc": 33}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:uniform:military uniform", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:nightwear-sleep:pajama, pyjama, pj's, jammies", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:uniform:military uniform", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:bench:park bench", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:uniform:military uniform", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shield:plate-scale-she:armor plate-arm:helmet:pickelhaube", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:uniform:military uniform", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:suit, suit of clothes", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:uniform:military uniform", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:sweater-jumper:pullover-slipov:sweatshirt", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:uniform:military uniform", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :armored vehicle:tank, army tank, armored combat vehicle, armoured combat vehicle", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:uniform:military uniform", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:tobacco shop, tobacconist shop, tobacconist", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:uniform:military uniform", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:tow truck, tow car, wrecker", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:can-tin-tin can:milk can", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:connection-conn:attachment-bond:ligament:chain", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:can-tin-tin can:milk can", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:shaker:cocktail shaker", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:can-tin-tin can:milk can", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:wagon-waggon:cart:horse cart, horse-cart", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:can-tin-tin can:milk can", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:iron, smoothing iron", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:can-tin-tin can:milk can", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:can-tin-tin can:milk can", "oc": 37}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:can-tin-tin can:milk can", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:motorcycle-bike:minibike-motorb:moped", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:can-tin-tin can:milk can", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:top-cover:cap:nipple", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:can-tin-tin can:milk can", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:scientific inst:magnifier:telescope-scope:astronomical te:radio telescope, radio reflector", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:can-tin-tin can:milk can", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:excavation:pool:cistern:rain barrel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:can-tin-tin can:milk can", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:cleaning implem:swab, swob, mop", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:can-tin-tin can:milk can", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:toaster", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:can-tin-tin can:milk can", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :tractor", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:can-tin-tin can:milk can", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:wardrobe, closet, press", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:public transpor:bus-autobus-coa:minibus", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:ambulance", "oc": 6}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:public transpor:bus-autobus-coa:minibus", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:golfcart, golf cart", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:public transpor:bus-autobus-coa:minibus", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:jeep, landrover", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:public transpor:bus-autobus-coa:minibus", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:limousine, limo", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:public transpor:bus-autobus-coa:minibus", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:public transpor:bus-autobus-coa:minibus", "oc": 37}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:public transpor:bus-autobus-coa:minibus", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:van:passenger van:minivan", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:public transpor:bus-autobus-coa:minibus", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:van:police van, police wagon, paddy wagon, patrol wagon, wagon, black Maria", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:public transpor:bus-autobus-coa:minibus", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:public transpor:bus-autobus-coa:school bus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:public transpor:bus-autobus-coa:minibus", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:public transpor:bus-autobus-coa:trolleybus, trolley coach, trackless trolley", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:miniskirt, mini", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:protective garm:apron", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:miniskirt, mini", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:weight-free wei:barbell", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:miniskirt, mini", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:cash machine, cash dispenser, automated teller machine, automatic teller machine, automated teller, automatic teller, ATM", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:miniskirt, mini", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:diaper, nappy, napkin", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:miniskirt, mini", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:white goods:dishwasher, dish washer, dishwashing machine", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:miniskirt, mini", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:blower:hand blower, blow dryer, blow drier, hair dryer, hair drier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:miniskirt, mini", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:portable comput:laptop, laptop computer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:miniskirt, mini", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:support:structural memb:upright-vertica:post:maypole", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:miniskirt, mini", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:miniskirt, mini", "oc": 25}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:miniskirt, mini", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:screen:mosquito net", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:miniskirt, mini", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:nightwear-sleep:pajama, pyjama, pj's, jammies", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:miniskirt, mini", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:telephone-phone:pay-phone, pay-station", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:miniskirt, mini", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:white goods:refrigerator, icebox", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:miniskirt, mini", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:rocking chair, rocker", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:miniskirt, mini", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:sleeping bag", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:miniskirt, mini", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:sofa-couch-loun:convertible-sof:studio couch, day bed", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:miniskirt, mini", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:swimsuit-swimwe:swimming trunks, bathing trunks", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:miniskirt, mini", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:system:communication s:telecommunicati:television, television system", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:miniskirt, mini", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:coat:raincoat-waterp:trench coat", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:miniskirt, mini", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:canopy:umbrella", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:miniskirt, mini", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:creation:product-product:work-piece of w:publication:magazine-mag:comic book", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:miniskirt, mini", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:jackfruit, jak, jack", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:miniskirt, mini", "at": "root:entity:abstraction-abs:attribute:shape-form:round shape:sphere:ball-globe-orb:globule:bubble", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:van:passenger van:minivan", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:Labrador retriever", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:van:passenger van:minivan", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:ambulance", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:van:passenger van:minivan", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:beach wagon, station wagon, wagon, estate car, beach waggon, station waggon, waggon", "oc": 10}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:van:passenger van:minivan", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:public transpor:train-railroad :passenger train:bullet train, bullet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:van:passenger van:minivan", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:cab, hack, taxi, taxicab", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:van:passenger van:minivan", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:grate-grating:grille, radiator grille", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:van:passenger van:minivan", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:limousine, limo", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:van:passenger van:minivan", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:public transpor:bus-autobus-coa:minibus", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:van:passenger van:minivan", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:van:passenger van:minivan", "oc": 21}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:van:passenger van:minivan", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:trailer-house t:mobile home, manufactured home", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:van:passenger van:minivan", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:van:moving van", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:van:passenger van:minivan", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:pickup, pickup truck", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:van:passenger van:minivan", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:van:police van, police wagon, paddy wagon, patrol wagon, wagon, black Maria", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:van:passenger van:minivan", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:racer, race car, racing car", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:van:passenger van:minivan", "at": "root:entity:abstraction-abs:communication:signal-signalin:visual signal:light:traffic light, traffic signal, stoplight", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:rocket-projecti:missile", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:shorebird-shore:sandpiper:redshank, Tringa totanus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:rocket-projecti:missile", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:aircraft:heavier-than-ai:airplane-aeropl:airliner", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:rocket-projecti:missile", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:firearm-piece-s:autoloader-self:automatic firea:automatic rifle:assault rifle, assault gun", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:rocket-projecti:missile", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:binder, ring-binder", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:rocket-projecti:missile", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:reflector:mirror:car mirror", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:rocket-projecti:missile", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:lifting device:crane", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:rocket-projecti:missile", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shade:lampshade, lamp shade", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:rocket-projecti:missile", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:lighter, light, igniter, ignitor", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:rocket-projecti:missile", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:rocket-projecti:missile", "oc": 28}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:rocket-projecti:missile", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:column-pillar:obelisk", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:rocket-projecti:missile", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:projectile, missile", "oc": 8}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:rocket-projecti:missile", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:spacecraft-ball:space shuttle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:rocket-projecti:missile", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :armored vehicle:tank, army tank, armored combat vehicle, armoured combat vehicle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:rocket-projecti:missile", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:roof:vault", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:rocket-projecti:missile", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:aircraft:heavier-than-ai:warplane, military plane", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:handwear-hand w:glove:mitten", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:lacertid lizard:green lizard, Lacerta viridis", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:handwear-hand w:glove:mitten", "at": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:bib", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:handwear-hand w:glove:mitten", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:bonnet, poke bonnet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:handwear-hand w:glove:mitten", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:sweater-jumper:cardigan", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:handwear-hand w:glove:mitten", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:footwear:hosiery-hose:stocking:Christmas stocking", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:handwear-hand w:glove:mitten", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:handwear-hand w:glove:mitten", "oc": 35}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:handwear-hand w:glove:mitten", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:nightwear-sleep:pajama, pyjama, pj's, jammies", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:handwear-hand w:glove:mitten", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:punching bag, punch bag, punching ball, punchball", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:handwear-hand w:glove:mitten", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:cap:shower cap", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:handwear-hand w:glove:mitten", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:sleeping bag", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:handwear-hand w:glove:mitten", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:bar:lever:key:space bar", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:handwear-hand w:glove:mitten", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:scarf:stole", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:handwear-hand w:glove:mitten", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:fabric-cloth-ma:wool, woolen, woollen", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dish:bowl:mixing bowl", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:cabinet:china cabinet, china closet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dish:bowl:mixing bowl", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:croquet ball", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dish:bowl:mixing bowl", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dish:bowl:mixing bowl", "oc": 40}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dish:bowl:mixing bowl", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dish:Petri dish", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dish:bowl:mixing bowl", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dish:bowl:soup bowl", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dish:bowl:mixing bowl", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:spotlight, spot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dish:bowl:mixing bowl", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:basin:washbasin, handbasin, washbowl, lavabo, wash-hand basin", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dish:bowl:mixing bowl", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:soup:consomme", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dish:bowl:mixing bowl", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:berry:strawberry", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dish:bowl:mixing bowl", "at": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:mixed drink:punch:cup", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:trailer-house t:mobile home, manufactured home", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:farm building:barn", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:trailer-house t:mobile home, manufactured home", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:outbuilding:shed:boathouse", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:trailer-house t:mobile home, manufactured home", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:reflector:mirror:car mirror", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:trailer-house t:mobile home, manufactured home", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:crate", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:trailer-house t:mobile home, manufactured home", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:car-railcar-rai:freight car", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:trailer-house t:mobile home, manufactured home", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:greenhouse, nursery, glasshouse", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:trailer-house t:mobile home, manufactured home", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:trailer-house t:mobile home, manufactured home", "oc": 29}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:trailer-house t:mobile home, manufactured home", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:car-railcar-rai:passenger car, coach, carriage", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:trailer-house t:mobile home, manufactured home", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:drill:power drill", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:trailer-house t:mobile home, manufactured home", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :recreational vehicle, RV, R.V.", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:trailer-house t:mobile home, manufactured home", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:runner:ski", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:trailer-house t:mobile home, manufactured home", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:litter:stretcher", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:trailer-house t:mobile home, manufactured home", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:tow truck, tow car, wrecker", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:trailer-house t:mobile home, manufactured home", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:toyshop", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:trailer-house t:mobile home, manufactured home", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:trailer truck, tractor trailer, trucking rig, rig, articulated lorry, semi", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:trailer-house t:mobile home, manufactured home", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:rail fence:worm fence, snake fence, snake-rail fence, Virginia fence", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:trailer-house t:mobile home, manufactured home", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:housing-lodging:dwelling-home-d:yurt", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:trailer-house t:mobile home, manufactured home", "at": "root:entity:physical entity:object-physical:geological form:cliff, drop, drop-off", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:Model T", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:garden tool-law:lawn mower, mower", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:Model T", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:Model T", "oc": 48}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:Model T", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:pickup, pickup truck", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:modem", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:CD player", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:modem", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:audio system-so:reproducer:stereo-stereoph:iPod", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:modem", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:iron, smoothing iron", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:modem", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:portable comput:laptop, laptop computer", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:modem", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:modem", "oc": 31}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:modem", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:monitor", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:modem", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:trap:mousetrap", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:modem", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:portable comput:notebook, notebook computer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:modem", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:photographic eq:camera-photogra:Polaroid camera, Polaroid Land camera", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:modem", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:printer-printin:printer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:modem", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:projector", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:modem", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:sports implemen:racket, racquet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:modem", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:system:communication s:radio, wireless", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:modem", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:public transpor:bus-autobus-coa:school bus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:modem", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:spotlight, spot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:modem", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:wardrobe, closet, press", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:modem", "at": "root:entity:physical entity:matter:substance:material-stuff:paper:tissue-tissue p:toilet tissue, toilet paper, bathroom tissue", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:house:residence:religious resid:monastery", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:altar", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:house:residence:religious resid:monastery", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:clock:analog clock", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:house:residence:religious resid:monastery", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:cap:bathing cap, swimming cap", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:house:residence:religious resid:monastery", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:bell cote, bell cot", "oc": 5}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:house:residence:religious resid:monastery", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:defensive struc:fortification-m:castle", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:house:residence:religious resid:monastery", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:place of worshi:church, church building", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:house:residence:religious resid:monastery", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:fountain", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:house:residence:religious resid:monastery", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:house:residence:religious resid:monastery", "oc": 24}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:house:residence:religious resid:monastery", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:place of worshi:mosque", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:house:residence:religious resid:monastery", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:house:residence:palace", "oc": 5}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:house:residence:religious resid:monastery", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:arch:triumphal arch", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:house:residence:religious resid:monastery", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:roof:vault", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:house:residence:religious resid:monastery", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:outerwear-overc:gown-robe:vestment", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:house:residence:religious resid:monastery", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:bridge-span:viaduct", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:house:residence:religious resid:monastery", "at": "root:entity:physical entity:object-physical:geological form:cliff, drop, drop-off", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:monitor", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:barbershop", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:monitor", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:bookcase", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:monitor", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:table:desk", "oc": 6}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:monitor", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:desktop computer", "oc": 10}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:monitor", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:wall unit:entertainment center", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:monitor", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:theater-theatre:home theater, home theatre", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:monitor", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:portable comput:laptop, laptop computer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:monitor", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:monitor", "oc": 15}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:monitor", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:portable comput:notebook, notebook computer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:monitor", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:package-parcel:packet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:monitor", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:printer-printin:printer", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:monitor", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electronic devi:display-video d:screen, CRT screen", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:monitor", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:screen-cover-co:shoji", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:monitor", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:tape player", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:monitor", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:system:communication s:telecommunicati:television, television system", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:monitor", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:slot machine-co:vending machine", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:monitor", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:web site, website, internet site, site", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:motorcycle-bike:minibike-motorb:moped", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:bicycle-bike-wh:bicycle-built-for-two, tandem bicycle, tandem", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:motorcycle-bike:minibike-motorb:moped", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shield:plate-scale-she:armor plate-arm:breastplate, aegis, egis", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:motorcycle-bike:minibike-motorb:moped", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:helmet:crash helmet", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:motorcycle-bike:minibike-motorb:moped", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:wagon-waggon:cart:jinrikisha, ricksha, rickshaw", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:motorcycle-bike:minibike-motorb:moped", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:motorcycle-bike:minibike-motorb:moped", "oc": 31}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:motorcycle-bike:minibike-motorb:moped", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:motor scooter, scooter", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:motorcycle-bike:minibike-motorb:moped", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:bicycle-bike-wh:mountain bike, all-terrain bike, off-roader", "oc": 6}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:motorcycle-bike:minibike-motorb:moped", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:litter:stretcher", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:motorcycle-bike:minibike-motorb:moped", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:unicycle, monocycle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:mortar", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:mud turtle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:mortar", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:cannon", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:mortar", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:chest", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:mortar", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:coffee maker:espresso maker", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:mortar", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:coat:lab coat, laboratory coat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:mortar", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:ladle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:mortar", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dish:bowl:mixing bowl", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:mortar", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:mortar", "oc": 39}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:mortar", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:machine-simple :wheel:potter's wheel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:mortar", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dish:bowl:soup bowl", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:mortar", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:seed:grain-caryopsis:kernel:corn", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:mortar", "at": "root:entity:physical entity:matter:substance:material-stuff:paper:tissue-tissue p:toilet tissue, toilet paper, bathroom tissue", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:cap:mortarboard", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:spitz:Pomeranian", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:cap:mortarboard", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:robe:abaya", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:cap:mortarboard", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:outerwear-overc:gown-robe:academic gown, academic robe, judge's robe", "oc": 7}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:cap:mortarboard", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:neckwear:necktie-tie:bow tie, bow-tie, bowtie", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:cap:mortarboard", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:diaper, nappy, napkin", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:cap:mortarboard", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:staff:flagpole, flagstaff", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:cap:mortarboard", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:cap:mortarboard", "oc": 28}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:cap:mortarboard", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:package-parcel:packet", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:cap:mortarboard", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:projector", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:cap:mortarboard", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:writing impleme:pen:quill, quill pen", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:cap:mortarboard", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:pin:safety pin", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:cap:mortarboard", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:suit, suit of clothes", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:cap:mortarboard", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:swimsuit-swimwe:swimming trunks, bathing trunks", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:cap:mortarboard", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:coat:raincoat-waterp:trench coat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:cap:mortarboard", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:canopy:umbrella", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:cap:mortarboard", "at": "root:entity:abstraction-abs:communication:signal-signalin:visual signal:light:traffic light, traffic signal, stoplight", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:place of worshi:mosque", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:roof:dome", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:place of worshi:mosque", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:place of worshi:mosque", "oc": 47}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:place of worshi:mosque", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:house:residence:palace", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:place of worshi:mosque", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:seed:buckeye, horse chestnut, conker", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:screen:mosquito net", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:baby bed-babys :bassinet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:screen:mosquito net", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:screen:mosquito net", "oc": 47}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:screen:mosquito net", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:plastic bag", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:screen:mosquito net", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:roof:thatch, thatched roof", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:motor scooter, scooter", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:sled-sledge-sle:bobsled, bobsleigh, bob", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:motor scooter, scooter", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:helmet:crash helmet", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:motor scooter, scooter", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:motorcycle-bike:minibike-motorb:moped", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:motor scooter, scooter", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:motor scooter, scooter", "oc": 39}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:motor scooter, scooter", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:textile machine:sewing machine", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:motor scooter, scooter", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :tracked vehicle:snowmobile", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:motor scooter, scooter", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pot:teapot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:motor scooter, scooter", "at": "root:entity:abstraction-abs:communication:signal-signalin:visual signal:light:traffic light, traffic signal, stoplight", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:bicycle-bike-wh:mountain bike, all-terrain bike, off-roader", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:bicycle-bike-wh:bicycle-built-for-two, tandem bicycle, tandem", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:bicycle-bike-wh:mountain bike, all-terrain bike, off-roader", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:cannon", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:bicycle-bike-wh:mountain bike, all-terrain bike, off-roader", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:helmet:crash helmet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:bicycle-bike-wh:mountain bike, all-terrain bike, off-roader", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:sheath:holster", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:bicycle-bike-wh:mountain bike, all-terrain bike, off-roader", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:bicycle-bike-wh:mountain bike, all-terrain bike, off-roader", "oc": 39}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:bicycle-bike-wh:mountain bike, all-terrain bike, off-roader", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:sailing vessel-:sailboat-sailin:trimaran", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:bicycle-bike-wh:mountain bike, all-terrain bike, off-roader", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:unicycle, monocycle", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:bicycle-bike-wh:mountain bike, all-terrain bike, off-roader", "at": "root:entity:physical entity:object-physical:geological form:natural elevati:mountain-mount:alp", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:shelter:tent-collapsibl:mountain tent", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:screen:mosquito net", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:shelter:tent-collapsibl:mountain tent", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:shelter:tent-collapsibl:mountain tent", "oc": 46}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:shelter:tent-collapsibl:mountain tent", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:sleeping bag", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:shelter:tent-collapsibl:mountain tent", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:canopy:umbrella", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:shelter:tent-collapsibl:mountain tent", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:screen:window screen", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electronic devi:mouse, computer mouse", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:domestic cat-ho:Persian cat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electronic devi:mouse, computer mouse", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:binder, ring-binder", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electronic devi:mouse, computer mouse", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:keyboard:computer keyboard, keypad", "oc": 5}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electronic devi:mouse, computer mouse", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:helmet:crash helmet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electronic devi:mouse, computer mouse", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:crate", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electronic devi:mouse, computer mouse", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:desktop computer", "oc": 14}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electronic devi:mouse, computer mouse", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:coffee maker:espresso maker", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electronic devi:mouse, computer mouse", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:cap:lens cap, lens cover", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electronic devi:mouse, computer mouse", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:microwave, microwave oven", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electronic devi:mouse, computer mouse", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electronic devi:mouse, computer mouse", "oc": 14}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electronic devi:mouse, computer mouse", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:trap:mousetrap", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electronic devi:mouse, computer mouse", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:meter:odometer, hodometer, mileometer, milometer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electronic devi:mouse, computer mouse", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:nightwear-sleep:pajama, pyjama, pj's, jammies", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electronic devi:mouse, computer mouse", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:printer-printin:printer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electronic devi:mouse, computer mouse", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:writing impleme:pen:quill, quill pen", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electronic devi:mouse, computer mouse", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:shoe:running shoe", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electronic devi:mouse, computer mouse", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:spectacles-spec:sunglasses, dark glasses, shades", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electronic devi:mouse, computer mouse", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:toaster", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electronic devi:mouse, computer mouse", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:game:puzzle:crossword puzzle, crossword", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:trap:mousetrap", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:rodent-gnawer:hamster", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:trap:mousetrap", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:rodent-gnawer:beaver", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:trap:mousetrap", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:cassette", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:trap:mousetrap", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:apparel-wearing:workwear:jean, blue jean, denim", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:trap:mousetrap", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:shoe:Loafer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:trap:mousetrap", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:navigational in:compass:magnetic compass", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:trap:mousetrap", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:matchstick", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:trap:mousetrap", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electronic devi:mouse, computer mouse", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:trap:mousetrap", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:trap:mousetrap", "oc": 37}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:trap:mousetrap", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:institution:penal instituti:correctional in:prison, prison house", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:trap:mousetrap", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:writing impleme:pen:quill, quill pen", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:trap:mousetrap", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:shoe:sandal", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:trap:mousetrap", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:spacecraft-ball:space shuttle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:trap:mousetrap", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:vacuum, vacuum cleaner", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:van:moving van", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:ambulance", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:van:moving van", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:amphibian, amphibious vehicle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:van:moving van", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bin:ashcan, trash can, garbage can, wastebin, ash bin, ash-bin, ashbin, dustbin, trash barrel, trash bin", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:van:moving van", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:cab, hack, taxi, taxicab", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:van:moving van", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:reflector:mirror:car mirror", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:van:moving van", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:fire engine, fire truck", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:van:moving van", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:garbage truck, dustcart", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:van:moving van", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:public transpor:bus-autobus-coa:minibus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:van:moving van", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:van:passenger van:minivan", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:van:moving van", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:trailer-house t:mobile home, manufactured home", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:van:moving van", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:van:moving van", "oc": 20}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:van:moving van", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:pickup, pickup truck", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:van:moving van", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:van:police van, police wagon, paddy wagon, patrol wagon, wagon, black Maria", "oc": 5}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:van:moving van", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :recreational vehicle, RV, R.V.", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:van:moving van", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:strongbox-deedb:safe", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:van:moving van", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:tow truck, tow car, wrecker", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:van:moving van", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:trailer truck, tractor trailer, trucking rig, rig, articulated lorry, semi", "oc": 5}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:van:moving van", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:public transpor:bus-autobus-coa:trolleybus, trolley coach, trackless trolley", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:muzzle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:basset, basset hound", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:muzzle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:beagle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:muzzle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:bloodhound, sleuthhound", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:muzzle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:Saluki, gazelle hound", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:muzzle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Scotch terrier, Scottish terrier, Scottie", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:muzzle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:soft-coated wheaten terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:muzzle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:flat-coated retriever", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:muzzle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:pointer-Spanish:German short-haired pointer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:muzzle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Rottweiler", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:muzzle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:German shepherd, German shepherd dog, German police dog, alsatian", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:muzzle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:sled dog-sledge:malamute, malemute, Alaskan malamute", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:muzzle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:corgi-Welsh cor:Pembroke, Pembroke Welsh corgi", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:muzzle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:hyena, hyaena", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:muzzle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:lamellicorn bee:scarabaeid beet:rhinoceros beetle", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:muzzle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:armor-armour:body armor-body:cuirass", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:muzzle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:diaper, nappy, napkin", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:muzzle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:wagon-waggon:cart:horse cart, horse-cart", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:muzzle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:muzzle", "oc": 24}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:muzzle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:breathing devic:oxygen mask", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:muzzle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:punching bag, punch bag, punching ball, punchball", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:muzzle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:firearm-piece-s:rifle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:muzzle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:shoe:sandal", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:muzzle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:safety belt-lif:seat belt, seatbelt", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:muzzle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:plaything-toy:teddy, teddy bear", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:nail", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:salamander:newt-triton:common newt, Triturus vulgaris", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:nail", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:water snake", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:nail", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:scorpion", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:nail", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:stork:black stork, Ciconia nigra", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:nail", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:lamellicorn bee:scarabaeid beet:dung beetle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:nail", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:ape:anthropoid ape:great ape-pongi:chimpanzee, chimp, Pan troglodytes", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:nail", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:bannister, banister, balustrade, balusters, handrail", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:nail", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:chime, bell, gong", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:nail", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:fountain", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:nail", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:library", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:nail", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:trap:mousetrap", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:nail", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:nail", "oc": 27}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:nail", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:decoration-orna:adornment:jewelry-jewelle:necklace", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:nail", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:lock:padlock", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:nail", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:picket fence, paling", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:nail", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:radiator", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:nail", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:sheath:scabbard", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:nail", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:screw", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:nail", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:screwdriver", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:nail", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:shovel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:nail", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:fungus:bolete", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:strengthener-re:brace:neck brace", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:greyhound:Italian greyhound", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:strengthener-re:brace:neck brace", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:bulldog-English:French bulldog", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:strengthener-re:brace:neck brace", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:keyboard instru:accordion, piano accordion, squeeze box", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:strengthener-re:brace:neck brace", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:barber chair", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:strengthener-re:brace:neck brace", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bathtub, bathing tub, bath, tub", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:strengthener-re:brace:neck brace", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:binoculars, field glasses, opera glasses", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:strengthener-re:brace:neck brace", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:neckwear:necktie-tie:bow tie, bow-tie, bowtie", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:strengthener-re:brace:neck brace", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:undergarment-un:brassiere, bra, bandeau", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:strengthener-re:brace:neck brace", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:staff:crutch", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:strengthener-re:brace:neck brace", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:go-kart", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:strengthener-re:brace:neck brace", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:hair spray", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:strengthener-re:brace:neck brace", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:public transpor:bus-autobus-coa:minibus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:strengthener-re:brace:neck brace", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:strengthener-re:brace:neck brace", "oc": 30}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:strengthener-re:brace:neck brace", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:telephone-phone:pay-phone, pay-station", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:strengthener-re:brace:neck brace", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:eraser:rubber eraser, rubber, pencil eraser", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:strengthener-re:brace:neck brace", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:soccer ball", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:strengthener-re:brace:neck brace", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:surface:horizontal surf:platform:stage", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:strengthener-re:brace:neck brace", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:litter:stretcher", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:strengthener-re:brace:neck brace", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:optical device:lens-lense-lens:converging lens:sunglass", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:strengthener-re:brace:neck brace", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:canopy:umbrella", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:decoration-orna:adornment:jewelry-jewelle:necklace", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:neckwear:necktie-tie:bolo tie, bolo, bola tie, bola", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:decoration-orna:adornment:jewelry-jewelle:necklace", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:connection-conn:attachment-bond:ligament:chain", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:decoration-orna:adornment:jewelry-jewelle:necklace", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electronic devi:mouse, computer mouse", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:decoration-orna:adornment:jewelry-jewelle:necklace", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:decoration-orna:adornment:jewelry-jewelle:necklace", "oc": 43}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:decoration-orna:adornment:jewelry-jewelle:necklace", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:pin:safety pin", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:decoration-orna:adornment:jewelry-jewelle:necklace", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:cap:shower cap", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:decoration-orna:adornment:jewelry-jewelle:necklace", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:swing", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:top-cover:cap:nipple", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:poodle-poodle d:miniature poodle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:top-cover:cap:nipple", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:lagomorph-gnawi:leporid-leporid:rabbit-coney-co:Angora, Angora rabbit", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:top-cover:cap:nipple", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:rodent-gnawer:hamster", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:top-cover:cap:nipple", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloth covering:dressing-medica:bandage-patch:adhesive bandag:Band Aid", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:top-cover:cap:nipple", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:candle, taper, wax light", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:top-cover:cap:nipple", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:opener:can opener, tin opener", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:top-cover:cap:nipple", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:coat:lab coat, laboratory coat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:top-cover:cap:nipple", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:strengthener-re:brace:neck brace", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:top-cover:cap:nipple", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:top-cover:cap:nipple", "oc": 33}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:top-cover:cap:nipple", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:breathing devic:oxygen mask", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:top-cover:cap:nipple", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:shaker:saltshaker, salt shaker", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:top-cover:cap:nipple", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:shoe:sandal", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:top-cover:cap:nipple", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:screwdriver", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:top-cover:cap:nipple", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:reflector:solar dish, solar collector, solar furnace", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:top-cover:cap:nipple", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:filter:strainer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:top-cover:cap:nipple", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:medical instrum:syringe", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:top-cover:cap:nipple", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:jug:whiskey jug", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:portable comput:notebook, notebook computer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:public transpor:train-railroad :passenger train:bullet train, bullet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:portable comput:notebook, notebook computer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:CD player", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:portable comput:notebook, notebook computer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:keyboard:computer keyboard, keypad", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:portable comput:notebook, notebook computer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:table:desk", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:portable comput:notebook, notebook computer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:desktop computer", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:portable comput:notebook, notebook computer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cosmetic:makeup-make-up-:face powder", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:portable comput:notebook, notebook computer", "at": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:handkerchief, hankie, hanky, hankey", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:portable comput:notebook, notebook computer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:memory device-s:magnetic disk-m:hard disc, hard disk, fixed disk", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:portable comput:notebook, notebook computer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:free-reed instr:harmonica, mouth organ, harp, mouth harp", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:portable comput:notebook, notebook computer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:portable comput:laptop, laptop computer", "oc": 10}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:portable comput:notebook, notebook computer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:monitor", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:portable comput:notebook, notebook computer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:portable comput:notebook, notebook computer", "oc": 21}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:portable comput:notebook, notebook computer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:applicator-appl:paintbrush", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:portable comput:notebook, notebook computer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:safety belt-lif:seat belt, seatbelt", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:portable comput:notebook, notebook computer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:web site, website, internet site, site", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:portable comput:notebook, notebook computer", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:dessert-sweet-a:frozen dessert:ice lolly, lolly, lollipop, popsicle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:column-pillar:obelisk", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:place of worshi:church, church building", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:column-pillar:obelisk", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:crate", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:column-pillar:obelisk", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:staff:flagpole, flagstaff", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:column-pillar:obelisk", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:fountain", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:column-pillar:obelisk", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:column-pillar:obelisk", "oc": 38}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:column-pillar:obelisk", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:house:residence:palace", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:column-pillar:obelisk", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:area:patio, terrace", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:column-pillar:obelisk", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:supporting stru:support:pedestal, plinth, footstall", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:column-pillar:obelisk", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:rod:pole", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:column-pillar:obelisk", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:sundial", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:column-pillar:obelisk", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:arch:triumphal arch", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:column-pillar:obelisk", "at": "root:entity:physical entity:object-physical:geological form:shore:lakeside, lakeshore", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:beating-reed in:double-reed ins:oboe, hautboy, hautbois", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:firearm-piece-s:autoloader-self:automatic firea:automatic rifle:assault rifle, assault gun", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:beating-reed in:double-reed ins:oboe, hautboy, hautbois", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:beating-reed in:double-reed ins:bassoon", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:beating-reed in:double-reed ins:oboe, hautboy, hautbois", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:flute, transverse flute", "oc": 8}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:beating-reed in:double-reed ins:oboe, hautboy, hautbois", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:chordophone:harp", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:beating-reed in:double-reed ins:oboe, hautboy, hautbois", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:beating-reed in:double-reed ins:oboe, hautboy, hautbois", "oc": 32}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:beating-reed in:double-reed ins:oboe, hautboy, hautbois", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:firearm-piece-s:rifle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:beating-reed in:double-reed ins:oboe, hautboy, hautbois", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:beating-reed in:single-reed ins:sax, saxophone", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:beating-reed in:double-reed ins:oboe, hautboy, hautbois", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:sheath:scabbard", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:beating-reed in:double-reed ins:oboe, hautboy, hautbois", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:runner:ski", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:beating-reed in:double-reed ins:oboe, hautboy, hautbois", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:brass-brass ins:trombone", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:beating-reed in:double-reed ins:oboe, hautboy, hautbois", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:acoustic device:whistle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:beating-reed in:double-reed ins:oboe, hautboy, hautbois", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:web site, website, internet site, site", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:ocarina, sweet potato", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:lepidopterous i:butterfly:ringlet, ringlet butterfly", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:ocarina, sweet potato", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:neckwear:necktie-tie:bow tie, bow-tie, bowtie", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:ocarina, sweet potato", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:drum, membranophone, tympan", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:ocarina, sweet potato", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:free-reed instr:harmonica, mouth organ, harp, mouth harp", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:ocarina, sweet potato", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:scientific inst:magnifier:microscope:light microscop:hand glass-simp:loupe, jeweler's loupe", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:ocarina, sweet potato", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:ocarina, sweet potato", "oc": 41}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:ocarina, sweet potato", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:area:patio, terrace", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:ocarina, sweet potato", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:safety belt-lif:seat belt, seatbelt", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:ocarina, sweet potato", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:dessert-sweet-a:frozen dessert:ice lolly, lolly, lollipop, popsicle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:ocarina, sweet potato", "at": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :concoction-mixt:dough", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:meter:odometer, hodometer, mileometer, milometer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:CD player", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:meter:odometer, hodometer, mileometer, milometer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:clock:digital clock", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:meter:odometer, hodometer, mileometer, milometer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:meter:odometer, hodometer, mileometer, milometer", "oc": 48}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:filter:oil filter", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:constrictor:boa:boa constrictor, Constrictor constrictor", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:filter:oil filter", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:bearskin, busby, shako", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:filter:oil filter", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:sled-sledge-sle:bobsled, bobsleigh, bob", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:filter:oil filter", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:opener:can opener, tin opener", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:filter:oil filter", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:gear-parapherna:kit-outfit:carpenter's kit, tool kit", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:filter:oil filter", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:drum, membranophone, tympan", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:filter:oil filter", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:fire engine, fire truck", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:filter:oil filter", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:blower:hand blower, blow dryer, blow drier, hair dryer, hair drier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:filter:oil filter", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:memory device-s:magnetic disk-m:hard disc, hard disk, fixed disk", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:filter:oil filter", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:garden tool-law:lawn mower, mower", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:filter:oil filter", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:filter:oil filter", "oc": 29}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:filter:oil filter", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:lock:padlock", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:filter:oil filter", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:timer:parking meter", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:filter:oil filter", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:pill bottle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:filter:oil filter", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:drill:power drill", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:filter:oil filter", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:excavation:pool:cistern:rain barrel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:filter:oil filter", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:winder:reel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:filter:oil filter", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:screwdriver", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:filter:oil filter", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:basket-handbask:shopping basket", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:filter:oil filter", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:heater-warmer:space heater", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:filter:oil filter", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:cap:thimble", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:organ, pipe organ", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:altar", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:organ, pipe organ", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:place of worshi:church, church building", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:organ, pipe organ", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:weight-free wei:dumbbell", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:organ, pipe organ", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:piano-pianofort:grand piano, grand", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:organ, pipe organ", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shade:lampshade, lamp shade", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:organ, pipe organ", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:organ, pipe organ", "oc": 39}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:organ, pipe organ", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:picket fence, paling", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:organ, pipe organ", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :recreational vehicle, RV, R.V.", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:organ, pipe organ", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:restaurant, eating house, eating place, eatery", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:organ, pipe organ", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:oven:rotisserie", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:organ, pipe organ", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:piano-pianofort:upright, upright piano", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:oscilloscope, scope, cathode-ray oscilloscope, CRO", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:portable comput:hand-held computer, hand-held microcomputer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:oscilloscope, scope, cathode-ray oscilloscope, CRO", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:modem", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:oscilloscope, scope, cathode-ray oscilloscope, CRO", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:oscilloscope, scope, cathode-ray oscilloscope, CRO", "oc": 46}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:oscilloscope, scope, cathode-ray oscilloscope, CRO", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:tape player", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:oscilloscope, scope, cathode-ray oscilloscope, CRO", "at": "root:entity:physical entity:matter:substance:food-nutrient:fare:menu", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:overskirt", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:cocker spaniel, English cocker spaniel, cocker", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:overskirt", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:outerwear-overc:gown-robe:academic gown, academic robe, judge's robe", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:overskirt", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:altar", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:overskirt", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:protective garm:apron", "oc": 5}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:overskirt", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:bonnet, poke bonnet", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:overskirt", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:bow", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:overskirt", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloak", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:overskirt", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:staff:crutch", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:overskirt", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:coat:fur coat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:overskirt", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:womans clothing:dress-frock:gown", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:overskirt", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:hoopskirt, crinoline", "oc": 6}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:overskirt", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:robe:kimono", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:overskirt", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:screen:mosquito net", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:overskirt", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:overskirt", "oc": 13}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:overskirt", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:nightwear-sleep:pajama, pyjama, pj's, jammies", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:overskirt", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:cloak:poncho", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:overskirt", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:purse", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:overskirt", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:sarong", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:overskirt", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:blind-screen:curtain-drape-d:shower curtain", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:overskirt", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:scarf:stole", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:overskirt", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:coat:raincoat-waterp:trench coat", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:overskirt", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:outerwear-overc:gown-robe:vestment", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:wagon-waggon:cart:oxcart", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:bovine:cattle-cows-kin:ox", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:wagon-waggon:cart:oxcart", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:Old World buffa:water buffalo, water ox, Asiatic buffalo, Bubalus bubalis", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:wagon-waggon:cart:oxcart", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:wagon-waggon:cart:horse cart, horse-cart", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:wagon-waggon:cart:oxcart", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:game:puzzle:jigsaw puzzle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:wagon-waggon:cart:oxcart", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building comple:plant-works-ind:factory-mill-ma:lumbermill, sawmill", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:wagon-waggon:cart:oxcart", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:wagon-waggon:cart:oxcart", "oc": 42}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:wagon-waggon:cart:oxcart", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:farm machine:thresher, thrasher, threshing machine", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:breathing devic:oxygen mask", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:helmet:crash helmet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:breathing devic:oxygen mask", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:guitar:electric guitar", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:breathing devic:oxygen mask", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:mask:gasmask, respirator, gas helmet", "oc": 5}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:breathing devic:oxygen mask", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:coat:lab coat, laboratory coat", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:breathing devic:oxygen mask", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:miniskirt, mini", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:breathing devic:oxygen mask", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electronic devi:mouse, computer mouse", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:breathing devic:oxygen mask", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:breathing devic:oxygen mask", "oc": 27}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:breathing devic:oxygen mask", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shield:plate-scale-she:armor plate-arm:helmet:pickelhaube", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:breathing devic:oxygen mask", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:safety belt-lif:seat belt, seatbelt", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:breathing devic:oxygen mask", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :tracked vehicle:snowmobile", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:breathing devic:oxygen mask", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:litter:stretcher", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:breathing devic:oxygen mask", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:vacuum, vacuum cleaner", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:breathing devic:oxygen mask", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:burrito", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:breathing devic:oxygen mask", "at": "root:entity:abstraction-abs:attribute:shape-form:round shape:sphere:ball-globe-orb:globule:bubble", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:breathing devic:oxygen mask", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:person-individu:explorer-advent:diver-frogman-u:scuba diver", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:package-parcel:packet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloth covering:dressing-medica:bandage-patch:adhesive bandag:Band Aid", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:package-parcel:packet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:beer bottle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:package-parcel:packet", "at": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:bib", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:package-parcel:packet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:carton", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:package-parcel:packet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:footwear:hosiery-hose:stocking:Christmas stocking", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:package-parcel:packet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:confectionery, confectionary, candy store", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:package-parcel:packet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:envelope", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:package-parcel:packet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:marketplace-mar:grocery store, grocery, food market, market", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:package-parcel:packet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:hammer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:package-parcel:packet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:lotion", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:package-parcel:packet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:filter:oil filter", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:package-parcel:packet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:package-parcel:packet", "oc": 24}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:package-parcel:packet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:pill bottle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:package-parcel:packet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:padding-cushion:cushion:pillow", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:package-parcel:packet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:plastic bag", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:package-parcel:packet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:purse", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:package-parcel:packet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:eraser:rubber eraser, rubber, pencil eraser", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:package-parcel:packet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:toyshop", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:package-parcel:packet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:case:wallet, billfold, notecase, pocketbook", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:package-parcel:packet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:creation:product-product:work-piece of w:publication:magazine-mag:comic book", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:package-parcel:packet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:wrapping-wrap-w:jacket:book jacket, dust cover, dust jacket, dust wrapper", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:package-parcel:packet", "at": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:mixed drink:punch:eggnog", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:oar:paddle, boat paddle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:bannister, banister, balustrade, balusters, handrail", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:oar:paddle, boat paddle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:sled-sledge-sle:bobsled, bobsleigh, bob", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:oar:paddle, boat paddle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:boat:small boat:canoe", "oc": 11}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:oar:paddle, boat paddle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:table:dining table, board", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:oar:paddle, boat paddle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:boat:gondola", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:oar:paddle, boat paddle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:oar:paddle, boat paddle", "oc": 31}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:oar:paddle, boat paddle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:winder:reel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:oar:paddle, boat paddle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:swing", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:oar:paddle, boat paddle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:article:ware:tableware:cutlery-eating :spoon:wooden spoon", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:machine-simple :wheel:paddlewheel, paddle wheel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:outbuilding:shed:boathouse", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:machine-simple :wheel:paddlewheel, paddle wheel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:boat:fireboat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:machine-simple :wheel:paddlewheel, paddle wheel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:machine-simple :wheel:paddlewheel, paddle wheel", "oc": 45}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:machine-simple :wheel:paddlewheel, paddle wheel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:supporting stru:framework:rack:plate rack", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:machine-simple :wheel:paddlewheel, paddle wheel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:blind-screen:curtain-drape-d:theater curtain, theatre curtain", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:machine-simple :wheel:paddlewheel, paddle wheel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:support:rack-stand:tripod", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:lock:padlock", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:bow", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:lock:padlock", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:lock:combination lock", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:lock:padlock", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:opener:bottle opener:corkscrew, bottle screw", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:lock:padlock", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:hook, claw", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:lock:padlock", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:lighter, light, igniter, ignitor", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:lock:padlock", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:scientific inst:magnifier:microscope:light microscop:hand glass-simp:loupe, jeweler's loupe", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:lock:padlock", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:decoration-orna:adornment:jewelry-jewelle:necklace", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:lock:padlock", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:lock:padlock", "oc": 34}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:lock:padlock", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:sharpener:pencil sharpener", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:lock:padlock", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:system:communication s:radio, wireless", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:lock:padlock", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:measuring stick:rule, ruler", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:lock:padlock", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:sheath:scabbard", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:lock:padlock", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:armor-armour:shield, buckler", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:lock:padlock", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:jug:whiskey jug", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:applicator-appl:paintbrush", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:bear:ice bear, polar bear, Ursus Maritimus, Thalarctos maritimus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:applicator-appl:paintbrush", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bucket, pail", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:applicator-appl:paintbrush", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cosmetic:makeup-make-up-:face powder", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:applicator-appl:paintbrush", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:portable comput:laptop, laptop computer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:applicator-appl:paintbrush", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:knife:letter opener, paper knife, paperknife", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:applicator-appl:paintbrush", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cosmetic:makeup-make-up-:lipstick, lip rouge", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:applicator-appl:paintbrush", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:applicator-appl:paintbrush", "oc": 32}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:applicator-appl:paintbrush", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:sharpener:pencil sharpener", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:applicator-appl:paintbrush", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:pot, flowerpot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:applicator-appl:paintbrush", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:firearm-piece-s:rifle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:applicator-appl:paintbrush", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:eraser:rubber eraser, rubber, pencil eraser", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:applicator-appl:paintbrush", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:measuring stick:rule, ruler", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:applicator-appl:paintbrush", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:beating-reed in:single-reed ins:sax, saxophone", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:applicator-appl:paintbrush", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:screwdriver", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:applicator-appl:paintbrush", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:footwear:hosiery-hose:sock", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:applicator-appl:paintbrush", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dish:bowl:soup bowl", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:applicator-appl:paintbrush", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:turner-food tur:spatula", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:applicator-appl:paintbrush", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:jar:vase", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:nightwear-sleep:pajama, pyjama, pj's, jammies", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:ride:carousel, carrousel, merry-go-round, roundabout, whirligig", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:nightwear-sleep:pajama, pyjama, pj's, jammies", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:baby bed-babys :crib, cot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:nightwear-sleep:pajama, pyjama, pj's, jammies", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:womans clothing:dress-frock:gown", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:nightwear-sleep:pajama, pyjama, pj's, jammies", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:gymnastic appar:horizontal bar, high bar", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:nightwear-sleep:pajama, pyjama, pj's, jammies", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:shirt:jersey, T-shirt, tee shirt", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:nightwear-sleep:pajama, pyjama, pj's, jammies", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:robe:kimono", "oc": 6}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:nightwear-sleep:pajama, pyjama, pj's, jammies", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:nightwear-sleep:pajama, pyjama, pj's, jammies", "oc": 32}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:nightwear-sleep:pajama, pyjama, pj's, jammies", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloth covering:bedclothes-bed :quilt, comforter, comfort, puff", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:nightwear-sleep:pajama, pyjama, pj's, jammies", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:sarong", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:nightwear-sleep:pajama, pyjama, pj's, jammies", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:safety belt-lif:seat belt, seatbelt", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:nightwear-sleep:pajama, pyjama, pj's, jammies", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:sofa-couch-loun:convertible-sof:studio couch, day bed", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:nightwear-sleep:pajama, pyjama, pj's, jammies", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:swimsuit-swimwe:swimming trunks, bathing trunks", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:nightwear-sleep:pajama, pyjama, pj's, jammies", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:blind-screen:curtain-drape-d:theater curtain, theatre curtain", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:nightwear-sleep:pajama, pyjama, pj's, jammies", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:light-light sou:torch", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:house:residence:palace", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:bell cote, bell cot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:house:residence:palace", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:defensive struc:fortification-m:castle", "oc": 6}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:house:residence:palace", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:theater-theatre:cinema, movie theater, movie theatre, movie house, picture palace", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:house:residence:palace", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:croquet ball", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:house:residence:palace", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:roof:dome", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:house:residence:palace", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:house:residence:religious resid:monastery", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:house:residence:palace", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:place of worshi:mosque", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:house:residence:palace", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:machine-simple :wheel:paddlewheel, paddle wheel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:house:residence:palace", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:house:residence:palace", "oc": 34}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:house:residence:palace", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:support:pier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:house:residence:palace", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:institution:penal instituti:correctional in:prison, prison house", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:house:residence:palace", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:bridge-span:viaduct", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:pipe:panpipe, pandean pipe, syrinx", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:beating-reed in:double-reed ins:bassoon", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:pipe:panpipe, pandean pipe, syrinx", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:memorial-monume:brass, memorial tablet, plaque", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:pipe:panpipe, pandean pipe, syrinx", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bucket, pail", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:pipe:panpipe, pandean pipe, syrinx", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:flute, transverse flute", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:pipe:panpipe, pandean pipe, syrinx", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:writing impleme:pen:fountain pen", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:pipe:panpipe, pandean pipe, syrinx", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:coat:fur coat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:pipe:panpipe, pandean pipe, syrinx", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:pipe:panpipe, pandean pipe, syrinx", "oc": 38}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:pipe:panpipe, pandean pipe, syrinx", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:firearm-piece-s:pistol-handgun-:revolver, six-gun, six-shooter", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:pipe:panpipe, pandean pipe, syrinx", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:rocking chair, rocker", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:pipe:panpipe, pandean pipe, syrinx", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:surface:horizontal surf:platform:stage", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:pipe:panpipe, pandean pipe, syrinx", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:steel drum", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:pipe:panpipe, pandean pipe, syrinx", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:outerwear-overc:gown-robe:vestment", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:towel:paper towel", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:domestic cat-ho:tabby, tabby cat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:towel:paper towel", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:hymenopterous i:ant, emmet, pismire", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:towel:paper towel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:barber chair", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:towel:paper towel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:jar:beaker", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:towel:paper towel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:undergarment-un:brassiere, bra, bandeau", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:towel:paper towel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:footwear:hosiery-hose:stocking:Christmas stocking", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:towel:paper towel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:landing-landing:dock, dockage, docking facility", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:towel:paper towel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:envelope", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:towel:paper towel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:knife:letter opener, paper knife, paperknife", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:towel:paper towel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:cabinet:medicine chest, medicine cabinet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:towel:paper towel", "at": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:towel:paper towel", "oc": 24}, {"rt": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:towel:paper towel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:pencil box, pencil case", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:towel:paper towel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:padding-cushion:cushion:pillow", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:towel:paper towel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:printer-printin:printer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:towel:paper towel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:white goods:refrigerator, icebox", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:towel:paper towel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:tennis ball", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:towel:paper towel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:tub, vat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:towel:paper towel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:jug:whiskey jug", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:towel:paper towel", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:entree-main cou:plate", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:towel:paper towel", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:dessert-sweet-a:frozen dessert:ice cream, icecream", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:towel:paper towel", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:snack food:sandwich:hotdog, hot dog, red hot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:towel:paper towel", "at": "root:entity:physical entity:matter:substance:material-stuff:paper:tissue-tissue p:toilet tissue, toilet paper, bathroom tissue", "oc": 6}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:rescue equipmen:parachute, chute", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:warship-war ves:aircraft carrier, carrier, flattop, attack aircraft carrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:rescue equipmen:parachute, chute", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:aircraft:lighter-than-ai:balloon", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:rescue equipmen:parachute, chute", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:staff:flagpole, flagstaff", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:rescue equipmen:parachute, chute", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:rescue equipmen:parachute, chute", "oc": 45}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:rescue equipmen:parachute, chute", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:cleaning implem:swab, swob, mop", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:rescue equipmen:parachute, chute", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:aircraft:heavier-than-ai:warplane, military plane", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:gymnastic appar:parallel bars, bars", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:gymnastic appar:balance beam, beam", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:gymnastic appar:parallel bars, bars", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:bannister, banister, balustrade, balusters, handrail", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:gymnastic appar:parallel bars, bars", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:weight-free wei:barbell", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:gymnastic appar:parallel bars, bars", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:staff:crutch", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:gymnastic appar:parallel bars, bars", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:gymnastic appar:horizontal bar, high bar", "oc": 8}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:gymnastic appar:parallel bars, bars", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:marimba, xylophone", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:gymnastic appar:parallel bars, bars", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:gymnastic appar:parallel bars, bars", "oc": 32}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:gymnastic appar:parallel bars, bars", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:table:pool table, billiard table, snooker table", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:gymnastic appar:parallel bars, bars", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:volleyball", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:bench:park bench", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:sea turtle-mari:leatherback turtle, leatherback, leathery turtle, Dermochelys coriacea", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:bench:park bench", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:rodent-gnawer:squirrel:tree squirrel:fox squirrel, eastern fox squirrel, Sciurus niger", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:bench:park bench", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:outbuilding:shed:apiary, bee house", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:bench:park bench", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:wagon-waggon:cart:horse cart, horse-cart", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:bench:park bench", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:swimsuit-swimwe:maillot, tank suit", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:bench:park bench", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:marimba, xylophone", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:bench:park bench", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:system:maze, labyrinth", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:bench:park bench", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:bench:park bench", "oc": 37}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:bench:park bench", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:area:patio, terrace", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:bench:park bench", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:institution:penal instituti:correctional in:prison, prison house", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:bench:park bench", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:place of worshi:shrine:stupa, tope", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:bench:park bench", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:swing", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:bench:park bench", "at": "root:entity:physical entity:object-physical:geological form:shore:lakeside, lakeshore", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:timer:parking meter", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:beer bottle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:timer:parking meter", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:clock:digital clock", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:timer:parking meter", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:mailbox, letter box", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:timer:parking meter", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:timer:parking meter", "oc": 42}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:timer:parking meter", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:telephone-phone:pay-phone, pay-station", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:timer:parking meter", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:mask:face mask:ski mask", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:timer:parking meter", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:snowplow, snowplough", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:timer:parking meter", "at": "root:entity:abstraction-abs:communication:signal-signalin:visual signal:light:traffic light, traffic signal, stoplight", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:car-railcar-rai:passenger car, coach, carriage", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:keyboard instru:accordion, piano accordion, squeeze box", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:car-railcar-rai:passenger car, coach, carriage", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:beach wagon, station wagon, wagon, estate car, beach waggon, station waggon, waggon", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:car-railcar-rai:passenger car, coach, carriage", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:public transpor:train-railroad :passenger train:bullet train, bullet", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:car-railcar-rai:passenger car, coach, carriage", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :locomotive-engi:electric locomotive", "oc": 7}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:car-railcar-rai:passenger car, coach, carriage", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:public transpor:bus-autobus-coa:minibus", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:car-railcar-rai:passenger car, coach, carriage", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:Model T", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:car-railcar-rai:passenger car, coach, carriage", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:car-railcar-rai:passenger car, coach, carriage", "oc": 24}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:car-railcar-rai:passenger car, coach, carriage", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:racer, race car, racing car", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:car-railcar-rai:passenger car, coach, carriage", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :recreational vehicle, RV, R.V.", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:car-railcar-rai:passenger car, coach, carriage", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:public transpor:bus-autobus-coa:school bus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:car-railcar-rai:passenger car, coach, carriage", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :locomotive-engi:steam locomotive", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:car-railcar-rai:passenger car, coach, carriage", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:cleaning implem:swab, swob, mop", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:car-railcar-rai:passenger car, coach, carriage", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :armored vehicle:tank, army tank, armored combat vehicle, armoured combat vehicle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:car-railcar-rai:passenger car, coach, carriage", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:public transpor:bus-autobus-coa:trolleybus, trolley coach, trackless trolley", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:car-railcar-rai:passenger car, coach, carriage", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:bridge-span:viaduct", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:car-railcar-rai:passenger car, coach, carriage", "at": "root:entity:physical entity:object-physical:geological form:natural elevati:mountain-mount:alp", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:area:patio, terrace", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:keyboard instru:accordion, piano accordion, squeeze box", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:area:patio, terrace", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:bannister, banister, balustrade, balusters, handrail", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:area:patio, terrace", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:ride:carousel, carrousel, merry-go-round, roundabout, whirligig", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:area:patio, terrace", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:staff:crutch", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:area:patio, terrace", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:table:dining table, board", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:area:patio, terrace", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:landing-landing:dock, dockage, docking facility", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:area:patio, terrace", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:boat:gondola", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:area:patio, terrace", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:greenhouse, nursery, glasshouse", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:area:patio, terrace", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:system:maze, labyrinth", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:area:patio, terrace", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:column-pillar:obelisk", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:area:patio, terrace", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:bench:park bench", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:area:patio, terrace", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:area:patio, terrace", "oc": 31}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:area:patio, terrace", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:picket fence, paling", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:area:patio, terrace", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:pot, flowerpot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:area:patio, terrace", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:restaurant, eating house, eating place, eatery", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:area:patio, terrace", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:movable barrier:door:sliding door", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:area:patio, terrace", "at": "root:entity:physical entity:matter:substance:material-stuff:paper:tissue-tissue p:toilet tissue, toilet paper, bathroom tissue", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:telephone-phone:pay-phone, pay-station", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:cash machine, cash dispenser, automated teller machine, automatic teller machine, automated teller, automatic teller, ATM", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:telephone-phone:pay-phone, pay-station", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:boat:fireboat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:telephone-phone:pay-phone, pay-station", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :forklift", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:telephone-phone:pay-phone, pay-station", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:pump:gas pump, gasoline pump, petrol pump, island dispenser", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:telephone-phone:pay-phone, pay-station", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:gymnastic appar:horizontal bar, high bar", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:telephone-phone:pay-phone, pay-station", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:cabinet:medicine chest, medicine cabinet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:telephone-phone:pay-phone, pay-station", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:telephone-phone:pay-phone, pay-station", "oc": 38}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:telephone-phone:pay-phone, pay-station", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :recreational vehicle, RV, R.V.", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:telephone-phone:pay-phone, pay-station", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:white goods:refrigerator, icebox", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:telephone-phone:pay-phone, pay-station", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:strongbox-deedb:safe", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:telephone-phone:pay-phone, pay-station", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:scale, weighing machine", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:telephone-phone:pay-phone, pay-station", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:public transpor:bus-autobus-coa:trolleybus, trolley coach, trackless trolley", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:telephone-phone:pay-phone, pay-station", "at": "root:entity:abstraction-abs:attribute:shape-form:round shape:sphere:ball-globe-orb:globule:bubble", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:supporting stru:support:pedestal, plinth, footstall", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:gymnastic appar:balance beam, beam", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:supporting stru:support:pedestal, plinth, footstall", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:bell cote, bell cot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:supporting stru:support:pedestal, plinth, footstall", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:boat:fireboat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:supporting stru:support:pedestal, plinth, footstall", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:fountain", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:supporting stru:support:pedestal, plinth, footstall", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:greenhouse, nursery, glasshouse", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:supporting stru:support:pedestal, plinth, footstall", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:house:residence:religious resid:monastery", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:supporting stru:support:pedestal, plinth, footstall", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:place of worshi:mosque", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:supporting stru:support:pedestal, plinth, footstall", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:column-pillar:obelisk", "oc": 6}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:supporting stru:support:pedestal, plinth, footstall", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:area:patio, terrace", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:supporting stru:support:pedestal, plinth, footstall", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:supporting stru:support:pedestal, plinth, footstall", "oc": 26}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:supporting stru:support:pedestal, plinth, footstall", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:excavation:pool:cistern:rain barrel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:supporting stru:support:pedestal, plinth, footstall", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:place of worshi:shrine:stupa, tope", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:supporting stru:support:pedestal, plinth, footstall", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:sundial", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:supporting stru:support:pedestal, plinth, footstall", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:column-pillar:totem pole", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:supporting stru:support:pedestal, plinth, footstall", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:arch:triumphal arch", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:supporting stru:support:pedestal, plinth, footstall", "at": "root:entity:abstraction-abs:attribute:shape-form:round shape:sphere:ball-globe-orb:globule:bubble", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:pencil box, pencil case", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:spiny-finned fi:percoid fish-pe:damselfish-demo:anemone fish", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:pencil box, pencil case", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:keyboard instru:accordion, piano accordion, squeeze box", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:pencil box, pencil case", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:protective garm:apron", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:pencil box, pencil case", "at": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:bib", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:pencil box, pencil case", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:binder, ring-binder", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:pencil box, pencil case", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:chest", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:pencil box, pencil case", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:footwear:hosiery-hose:stocking:Christmas stocking", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:pencil box, pencil case", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:envelope", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:pencil box, pencil case", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cosmetic:makeup-make-up-:face powder", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:pencil box, pencil case", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:breathing devic:oxygen mask", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:pencil box, pencil case", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:pencil box, pencil case", "oc": 30}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:pencil box, pencil case", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:padding-cushion:cushion:pillow", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:pencil box, pencil case", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:purse", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:pencil box, pencil case", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:eraser:rubber eraser, rubber, pencil eraser", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:pencil box, pencil case", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:case:wallet, billfold, notecase, pocketbook", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:sharpener:pencil sharpener", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:opener:can opener, tin opener", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:sharpener:pencil sharpener", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:carton", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:sharpener:pencil sharpener", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:drinking vessel:mug:coffee mug", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:sharpener:pencil sharpener", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:writing impleme:pen:fountain pen", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:sharpener:pencil sharpener", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:trap:mousetrap", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:sharpener:pencil sharpener", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:top-cover:cap:nipple", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:sharpener:pencil sharpener", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:pencil box, pencil case", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:sharpener:pencil sharpener", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:sharpener:pencil sharpener", "oc": 26}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:sharpener:pencil sharpener", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:firearm-piece-s:rifle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:sharpener:pencil sharpener", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:eraser:rubber eraser, rubber, pencil eraser", "oc": 11}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:sharpener:pencil sharpener", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:shoe shop, shoe-shop, shoe store", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:sharpener:pencil sharpener", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:blind-screen:curtain-drape-d:shower curtain", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:perfume, essence", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:clock:analog clock", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:perfume, essence", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bin:ashcan, trash can, garbage can, wastebin, ash bin, ash-bin, ashbin, dustbin, trash barrel, trash bin", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:perfume, essence", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:CD player", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:perfume, essence", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pot:coffeepot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:perfume, essence", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:envelope", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:perfume, essence", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:glass-drinking :goblet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:perfume, essence", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:iron, smoothing iron", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:perfume, essence", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:lighter, light, igniter, ignitor", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:perfume, essence", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:lotion", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:perfume, essence", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:top-cover:cap:nipple", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:perfume, essence", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:perfume, essence", "oc": 33}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:perfume, essence", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cream-ointment-:sunscreen, sunblock, sun blocker", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:perfume, essence", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:wine bottle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dish:Petri dish", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:green snake, grass snake", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dish:Petri dish", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:neckwear:necktie-tie:bow tie, bow-tie, bowtie", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dish:Petri dish", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:buckle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dish:Petri dish", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cosmetic:makeup-make-up-:face powder", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dish:Petri dish", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:marketplace-mar:grocery store, grocery, food market, market", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dish:Petri dish", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:cap:lens cap, lens cover", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dish:Petri dish", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:measure:measuring cup", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dish:Petri dish", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:mortar", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dish:Petri dish", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:perfume, essence", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dish:Petri dish", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dish:Petri dish", "oc": 31}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dish:Petri dish", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:savings bank-co:piggy bank, penny bank", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dish:Petri dish", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:pot, flowerpot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dish:Petri dish", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:armor-armour:shield, buckler", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dish:Petri dish", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:filter:strainer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dish:Petri dish", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pot:teapot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dish:Petri dish", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:receptacle:tray", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dish:Petri dish", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:clock:wall clock", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dish:Petri dish", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:solanaceous veg:pepper:sweet pepper:bell pepper", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dish:Petri dish", "at": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:mixed drink:punch:cup", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dish:Petri dish", "at": "root:entity:abstraction-abs:attribute:shape-form:round shape:sphere:ball-globe-orb:globule:bubble", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:apparatus-setup:duplicator-copi:photocopier", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:apparatus-setup:duplicator-copi:photocopier", "oc": 46}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:apparatus-setup:duplicator-copi:photocopier", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:printer-printin:printer", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:apparatus-setup:duplicator-copi:photocopier", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:heater-warmer:stove", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:pick, plectrum, plectron", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:keyboard instru:accordion, piano accordion, squeeze box", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:pick, plectrum, plectron", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:guitar:acoustic guitar", "oc": 5}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:pick, plectrum, plectron", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:neckwear:necktie-tie:bolo tie, bolo, bola tie, bola", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:pick, plectrum, plectron", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:floor cover-flo:mat:doormat, welcome mat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:pick, plectrum, plectron", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:decoration-orna:adornment:jewelry-jewelle:necklace", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:pick, plectrum, plectron", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:ocarina, sweet potato", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:pick, plectrum, plectron", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:pick, plectrum, plectron", "oc": 36}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:pick, plectrum, plectron", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:machine-simple :wheel:pinwheel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:pick, plectrum, plectron", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:remote control, remote", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:pick, plectrum, plectron", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:timer:stopwatch, stop watch", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:pick, plectrum, plectron", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:bowed stringed :violin, fiddle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shield:plate-scale-she:armor plate-arm:helmet:pickelhaube", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:bicycle-bike-wh:bicycle-built-for-two, tandem bicycle, tandem", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shield:plate-scale-she:armor plate-arm:helmet:pickelhaube", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:coat:fur coat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shield:plate-scale-she:armor plate-arm:helmet:pickelhaube", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:uniform:military uniform", "oc": 5}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shield:plate-scale-she:armor plate-arm:helmet:pickelhaube", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:supporting stru:support:pedestal, plinth, footstall", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shield:plate-scale-she:armor plate-arm:helmet:pickelhaube", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shield:plate-scale-she:armor plate-arm:helmet:pickelhaube", "oc": 37}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shield:plate-scale-she:armor plate-arm:helmet:pickelhaube", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:picket fence, paling", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shield:plate-scale-she:armor plate-arm:helmet:pickelhaube", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:firearm-piece-s:rifle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shield:plate-scale-she:armor plate-arm:helmet:pickelhaube", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:litter:stretcher", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shield:plate-scale-she:armor plate-arm:helmet:pickelhaube", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:person-individu:contestant:player-particip:ballplayer, baseball player", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:picket fence, paling", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:bear:sloth bear, Melursus ursinus, Ursus ursinus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:picket fence, paling", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:pachyderm:elephant:Indian elephant, Elephas maximus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:picket fence, paling", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:breakwater, groin, groyne, mole, bulwark, seawall, jetty", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:picket fence, paling", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:place of worshi:church, church building", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:picket fence, paling", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:cowboy hat, ten-gallon hat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:picket fence, paling", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:picket fence, paling", "oc": 42}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:picket fence, paling", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:support:pier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:picket fence, paling", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:handcart-pushca:shopping cart", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:picket fence, paling", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:wreck", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:pickup, pickup truck", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:ambulance", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:pickup, pickup truck", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:beach wagon, station wagon, wagon, estate car, beach waggon, station waggon, waggon", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:pickup, pickup truck", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:van:passenger van:minivan", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:pickup, pickup truck", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:Model T", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:pickup, pickup truck", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:van:moving van", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:pickup, pickup truck", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:pickup, pickup truck", "oc": 35}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:pickup, pickup truck", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:handcart-pushca:shopping cart", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:pickup, pickup truck", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:sports car, sport car", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:pickup, pickup truck", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:tow truck, tow car, wrecker", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:support:pier", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:bannister, banister, balustrade, balusters, handrail", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:support:pier", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:farm building:barn", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:support:pier", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:outbuilding:shed:boathouse", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:support:pier", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:breakwater, groin, groyne, mole, bulwark, seawall, jetty", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:support:pier", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:sailing vessel-:sailboat-sailin:catamaran", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:support:pier", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:theater-theatre:cinema, movie theater, movie theatre, movie house, picture palace", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:support:pier", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:cargo ship-carg:container ship, containership, container vessel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:support:pier", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:lifting device:crane", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:support:pier", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:dam, dike, dyke", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:support:pier", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:landing-landing:dock, dockage, docking facility", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:support:pier", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:fountain", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:support:pier", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:supporting stru:support:pedestal, plinth, footstall", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:support:pier", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:support:pier", "oc": 24}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:support:pier", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:bridge-span:steel arch bridge", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:support:pier", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:bridge-span:suspension bridge", "oc": 7}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:support:pier", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:bridge-span:viaduct", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:support:pier", "at": "root:entity:physical entity:object-physical:geological form:shore:seashore, coast, seacoast, sea-coast", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:savings bank-co:piggy bank, penny bank", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:salamander:ambystomid-amby:spotted salamander, Ambystoma maculatum", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:savings bank-co:piggy bank, penny bank", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dish:Petri dish", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:savings bank-co:piggy bank, penny bank", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:savings bank-co:piggy bank, penny bank", "oc": 43}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:savings bank-co:piggy bank, penny bank", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:padding-cushion:cushion:pillow", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:savings bank-co:piggy bank, penny bank", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:eraser:rubber eraser, rubber, pencil eraser", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:savings bank-co:piggy bank, penny bank", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:soccer ball", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:savings bank-co:piggy bank, penny bank", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:column-pillar:totem pole", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:savings bank-co:piggy bank, penny bank", "at": "root:entity:physical entity:matter:substance:food-nutrient:fare:menu", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:pill bottle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:calculator-calc:abacus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:pill bottle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloth covering:dressing-medica:bandage-patch:adhesive bandag:Band Aid", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:pill bottle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:top-cover:cap:bottlecap", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:pill bottle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:helmet:football helmet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:pill bottle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:trap:mousetrap", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:pill bottle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:filter:oil filter", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:pill bottle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:pill bottle", "oc": 34}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:pill bottle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:machine-simple :wheel:pinwheel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:pill bottle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:shaker:saltshaker, salt shaker", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:pill bottle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:spotlight, spot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:pill bottle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cream-ointment-:sunscreen, sunblock, sun blocker", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:pill bottle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:jar:vase", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:pill bottle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:jug:whiskey jug", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:pill bottle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:acoustic device:whistle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:pill bottle", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:citrus-citrus f:lemon", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:padding-cushion:cushion:pillow", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:backpack, back pack, knapsack, packsack, rucksack, haversack", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:padding-cushion:cushion:pillow", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:binder, ring-binder", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:padding-cushion:cushion:pillow", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:top-cover:cap:bottlecap", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:padding-cushion:cushion:pillow", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:vest-waistcoat:bulletproof vest", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:padding-cushion:cushion:pillow", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:footwear:hosiery-hose:stocking:Christmas stocking", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:padding-cushion:cushion:pillow", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:cowboy hat, ten-gallon hat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:padding-cushion:cushion:pillow", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:diaper, nappy, napkin", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:padding-cushion:cushion:pillow", "at": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:handkerchief, hankie, hanky, hankey", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:padding-cushion:cushion:pillow", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:mailbag, postbag", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:padding-cushion:cushion:pillow", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:beating-reed in:double-reed ins:oboe, hautboy, hautbois", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:padding-cushion:cushion:pillow", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:package-parcel:packet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:padding-cushion:cushion:pillow", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:pencil box, pencil case", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:padding-cushion:cushion:pillow", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:padding-cushion:cushion:pillow", "oc": 32}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:padding-cushion:cushion:pillow", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:machine-simple :wheel:pinwheel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:padding-cushion:cushion:pillow", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:eraser:rubber eraser, rubber, pencil eraser", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:padding-cushion:cushion:pillow", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:slot machine-co:slot, one-armed bandit", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:padding-cushion:cushion:pillow", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:blind-screen:window blind:window shade", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:padding-cushion:cushion:pillow", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:person-individu:peer-equal-matc:associate:participant:groom, bridegroom", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:ping-pong ball", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:confectionery, confectionary, candy store", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:ping-pong ball", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:mask:gasmask, respirator, gas helmet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:ping-pong ball", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:control-control:joystick", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:ping-pong ball", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dish:bowl:mixing bowl", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:ping-pong ball", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:bench:park bench", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:ping-pong ball", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:ping-pong ball", "oc": 40}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:ping-pong ball", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:sports implemen:racket, racquet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:ping-pong ball", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:spotlight, spot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:ping-pong ball", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:toyshop", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:ping-pong ball", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:piano-pianofort:upright, upright piano", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:ping-pong ball", "at": "root:entity:abstraction-abs:attribute:shape-form:round shape:sphere:ball-globe-orb:globule:bubble", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:machine-simple :wheel:pinwheel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:undergarment-un:brassiere, bra, bandeau", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:machine-simple :wheel:pinwheel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:ride:carousel, carrousel, merry-go-round, roundabout, whirligig", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:machine-simple :wheel:pinwheel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:confectionery, confectionary, candy store", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:machine-simple :wheel:pinwheel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:golfcart, golf cart", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:machine-simple :wheel:pinwheel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:support:structural memb:upright-vertica:post:maypole", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:machine-simple :wheel:pinwheel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:pick, plectrum, plectron", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:machine-simple :wheel:pinwheel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:machine-simple :wheel:pinwheel", "oc": 39}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:machine-simple :wheel:pinwheel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:sleeping bag", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:machine-simple :wheel:pinwheel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:toyshop", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:machine-simple :wheel:pinwheel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:clock:wall clock", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:machine-simple :wheel:pinwheel", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:person-individu:explorer-advent:diver-frogman-u:scuba diver", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:pirate, pirate ship", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:boat:small boat:canoe", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:pirate, pirate ship", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:lifting device:crane", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:pirate, pirate ship", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:landing-landing:dock, dockage, docking facility", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:pirate, pirate ship", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:passenger ship:liner, ocean liner", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:pirate, pirate ship", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:pirate, pirate ship", "oc": 39}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:pirate, pirate ship", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:plow, plough", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:pirate, pirate ship", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:sailing vessel-:schooner", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:pirate, pirate ship", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:warship-war ves:submersible-sub:submarine, pigboat, sub, U-boat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:pirate, pirate ship", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:toyshop", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:pirate, pirate ship", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:wreck", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:pirate, pirate ship", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:boat:small boat:yawl", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:pitcher, ewer", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crayfish, crawfish, crawdad, crawdaddy", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:pitcher, ewer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bucket, pail", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:pitcher, ewer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:drinking vessel:mug:coffee mug", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:pitcher, ewer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pot:coffeepot", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:pitcher, ewer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:table:dining table, board", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:pitcher, ewer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:glass-drinking :goblet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:pitcher, ewer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shade:lampshade, lamp shade", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:pitcher, ewer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:perfume, essence", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:pitcher, ewer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:pitcher, ewer", "oc": 22}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:pitcher, ewer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:writing impleme:pen:quill, quill pen", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:pitcher, ewer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pot:teapot", "oc": 5}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:pitcher, ewer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:jar:vase", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:pitcher, ewer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:jug:water jug", "oc": 6}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:pitcher, ewer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:jug:whiskey jug", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:pitcher, ewer", "at": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:mixed drink:punch:cup", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:plane, carpenter's plane, woodworking plane", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:boat:small boat:canoe", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:plane, carpenter's plane, woodworking plane", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:carton", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:plane, carpenter's plane, woodworking plane", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:military vehicl:half track", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:plane, carpenter's plane, woodworking plane", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:ax-axe:hatchet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:plane, carpenter's plane, woodworking plane", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:mailbox, letter box", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:plane, carpenter's plane, woodworking plane", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:marimba, xylophone", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:plane, carpenter's plane, woodworking plane", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:trap:mousetrap", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:plane, carpenter's plane, woodworking plane", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:plane, carpenter's plane, woodworking plane", "oc": 40}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:plane, carpenter's plane, woodworking plane", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:firearm-piece-s:rifle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:plane, carpenter's plane, woodworking plane", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:sheath:scabbard", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:plane, carpenter's plane, woodworking plane", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:wine bottle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:planetarium", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:theater-theatre:cinema, movie theater, movie theatre, movie house, picture palace", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:planetarium", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:roof:dome", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:planetarium", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shade:lampshade, lamp shade", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:planetarium", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:place of worshi:mosque", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:planetarium", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:planetarium", "oc": 44}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:planetarium", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:spotlight, spot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:planetarium", "at": "root:entity:physical entity:matter:substance:food-nutrient:feed-provender:fodder:hay", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:plastic bag", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:domestic cat-ho:tabby, tabby cat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:plastic bag", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:domestic cat-ho:Egyptian cat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:plastic bag", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:memorial-monume:brass, memorial tablet, plaque", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:plastic bag", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:telephone-phone:radiotelephone-:cellular telephone, cellular phone, cellphone, cell, mobile phone", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:plastic bag", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:staff:crutch", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:plastic bag", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:fan:electric fan, blower", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:plastic bag", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:coat:fur coat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:plastic bag", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:hair spray", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:plastic bag", "at": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:handkerchief, hankie, hanky, hankey", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:plastic bag", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:mailbox, letter box", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:plastic bag", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:system:maze, labyrinth", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:plastic bag", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:uniform:military uniform", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:plastic bag", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:miniskirt, mini", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:plastic bag", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:screen:mosquito net", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:plastic bag", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:portable comput:notebook, notebook computer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:plastic bag", "at": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:towel:paper towel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:plastic bag", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:bench:park bench", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:plastic bag", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:plastic bag", "oc": 19}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:plastic bag", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:pot, flowerpot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:plastic bag", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:cap:shower cap", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:plastic bag", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:blind-screen:curtain-drape-d:shower curtain", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:plastic bag", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:roof:tile roof", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:plastic bag", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:toyshop", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:plastic bag", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:coat:raincoat-waterp:trench coat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:plastic bag", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:tank-storage ta:reservoir:water tower", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:plastic bag", "at": "root:entity:abstraction-abs:communication:sign:street sign", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:plastic bag", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:snack food:sandwich:hotdog, hot dog, red hot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:plastic bag", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:citrus-citrus f:lemon", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:plastic bag", "at": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:wine-vino:red wine", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:plastic bag", "at": "root:entity:physical entity:object-physical:geological form:shore:seashore, coast, seacoast, sea-coast", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:plastic bag", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:person-individu:contestant:player-particip:ballplayer, baseball player", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:plastic bag", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:person-individu:peer-equal-matc:associate:participant:groom, bridegroom", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:supporting stru:framework:rack:plate rack", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:bookcase", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:supporting stru:framework:rack:plate rack", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:cabinet:china cabinet, china closet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:supporting stru:framework:rack:plate rack", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:table:desk", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:supporting stru:framework:rack:plate rack", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:white goods:dishwasher, dish washer, dishwashing machine", "oc": 7}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:supporting stru:framework:rack:plate rack", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:weight-free wei:dumbbell", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:supporting stru:framework:rack:plate rack", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:system:maze, labyrinth", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:supporting stru:framework:rack:plate rack", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:microwave, microwave oven", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:supporting stru:framework:rack:plate rack", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dish:bowl:mixing bowl", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:supporting stru:framework:rack:plate rack", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:organ, pipe organ", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:supporting stru:framework:rack:plate rack", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:plane, carpenter's plane, woodworking plane", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:supporting stru:framework:rack:plate rack", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:supporting stru:framework:rack:plate rack", "oc": 29}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:supporting stru:framework:rack:plate rack", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:white goods:refrigerator, icebox", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:supporting stru:framework:rack:plate rack", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:eraser:rubber eraser, rubber, pencil eraser", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:supporting stru:framework:rack:plate rack", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:handcart-pushca:shopping cart", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:supporting stru:framework:rack:plate rack", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:toaster", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:supporting stru:framework:rack:plate rack", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:tub, vat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:plow, plough", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:hen", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:plow, plough", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:bovine:cattle-cows-kin:ox", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:plow, plough", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:Old World buffa:water buffalo, water ox, Asiatic buffalo, Bubalus bubalis", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:plow, plough", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:bow", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:plow, plough", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:ax-axe:hatchet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:plow, plough", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:garden tool-law:lawn mower, mower", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:plow, plough", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:miniskirt, mini", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:plow, plough", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:wagon-waggon:cart:oxcart", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:plow, plough", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:plow, plough", "oc": 36}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:plow, plough", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:shovel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:plow, plough", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:farm machine:thresher, thrasher, threshing machine", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:plow, plough", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:rail fence:worm fence, snake fence, snake-rail fence, Virginia fence", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:plow, plough", "at": "root:entity:physical entity:object-physical:geological form:natural elevati:mountain-mount:alp", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:plow, plough", "at": "root:entity:physical entity:object-physical:geological form:natural depress:valley, vale", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:plunger, plumber's helper", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:domestic cat-ho:Siamese cat, Siamese", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:plunger, plumber's helper", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:gymnastic appar:balance beam, beam", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:plunger, plumber's helper", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bucket, pail", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:plunger, plumber's helper", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:armor-armour:body armor-body:cuirass", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:plunger, plumber's helper", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:table:desk", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:plunger, plumber's helper", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:piano-pianofort:grand piano, grand", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:plunger, plumber's helper", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:hammer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:plunger, plumber's helper", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:robe:kimono", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:plunger, plumber's helper", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cosmetic:makeup-make-up-:lipstick, lip rouge", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:plunger, plumber's helper", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:cabinet:medicine chest, medicine cabinet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:plunger, plumber's helper", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:miniskirt, mini", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:plunger, plumber's helper", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:bicycle-bike-wh:mountain bike, all-terrain bike, off-roader", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:plunger, plumber's helper", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:plunger, plumber's helper", "oc": 25}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:plunger, plumber's helper", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:excavation:pool:cistern:rain barrel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:plunger, plumber's helper", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:restaurant, eating house, eating place, eatery", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:plunger, plumber's helper", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:firearm-piece-s:rifle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:plunger, plumber's helper", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:shoe:sandal", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:plunger, plumber's helper", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:sarong", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:plunger, plumber's helper", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:shovel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:plunger, plumber's helper", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dispenser:soap dispenser", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:plunger, plumber's helper", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:spectacles-spec:sunglasses, dark glasses, shades", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:plunger, plumber's helper", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:cleaning implem:swab, swob, mop", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:plunger, plumber's helper", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:vacuum, vacuum cleaner", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:plunger, plumber's helper", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:creation:product-product:work-piece of w:publication:magazine-mag:comic book", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:photographic eq:camera-photogra:Polaroid camera, Polaroid Land camera", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:cassette", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:photographic eq:camera-photogra:Polaroid camera, Polaroid Land camera", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:CD player", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:photographic eq:camera-photogra:Polaroid camera, Polaroid Land camera", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:telephone-phone:radiotelephone-:cellular telephone, cellular phone, cellphone, cell, mobile phone", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:photographic eq:camera-photogra:Polaroid camera, Polaroid Land camera", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:modem", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:photographic eq:camera-photogra:Polaroid camera, Polaroid Land camera", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:photographic eq:camera-photogra:Polaroid camera, Polaroid Land camera", "oc": 42}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:photographic eq:camera-photogra:Polaroid camera, Polaroid Land camera", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:drill:power drill", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:photographic eq:camera-photogra:Polaroid camera, Polaroid Land camera", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:photographic eq:camera-photogra:reflex camera", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:photographic eq:camera-photogra:Polaroid camera, Polaroid Land camera", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:textile machine:sewing machine", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:rod:pole", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:seabird-sea bir:pelecaniform se:pelican", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:rod:pole", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:phasmid-phasmid:walking stick, walkingstick, stick insect", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:rod:pole", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:gymnastic appar:balance beam, beam", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:rod:pole", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:handcart-pushca:barrow, garden cart, lawn cart, wheelbarrow", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:rod:pole", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:chainlink fence", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:rod:pole", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:staff:crutch", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:rod:pole", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :locomotive-engi:electric locomotive", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:rod:pole", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:staff:flagpole, flagstaff", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:rod:pole", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:pump:gas pump, gasoline pump, petrol pump, island dispenser", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:rod:pole", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:gymnastic appar:horizontal bar, high bar", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:rod:pole", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building comple:plant-works-ind:factory-mill-ma:lumbermill, sawmill", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:rod:pole", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:support:structural memb:upright-vertica:post:maypole", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:rod:pole", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:column-pillar:obelisk", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:rod:pole", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:gymnastic appar:parallel bars, bars", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:rod:pole", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:support:pier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:rod:pole", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:rod:pole", "oc": 17}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:rod:pole", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:winder:reel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:rod:pole", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:firearm-piece-s:rifle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:rod:pole", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:movable barrier:door:sliding door", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:rod:pole", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:surface:horizontal surf:platform:stage", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:rod:pole", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:lamp:table lamp", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:rod:pole", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:light-light sou:torch", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:rod:pole", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:public transpor:bus-autobus-coa:trolleybus, trolley coach, trackless trolley", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:rod:pole", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:outerwear-overc:gown-robe:vestment", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:rod:pole", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:tank-storage ta:reservoir:water tower", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:rod:pole", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:rail fence:worm fence, snake fence, snake-rail fence, Virginia fence", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:rod:pole", "at": "root:entity:abstraction-abs:communication:sign:street sign", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:rod:pole", "at": "root:entity:abstraction-abs:communication:signal-signalin:visual signal:light:traffic light, traffic signal, stoplight", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:van:police van, police wagon, paddy wagon, patrol wagon, wagon, black Maria", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:ambulance", "oc": 5}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:van:police van, police wagon, paddy wagon, patrol wagon, wagon, black Maria", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:cab, hack, taxi, taxicab", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:van:police van, police wagon, paddy wagon, patrol wagon, wagon, black Maria", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:fire engine, fire truck", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:van:police van, police wagon, paddy wagon, patrol wagon, wagon, black Maria", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:portable comput:laptop, laptop computer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:van:police van, police wagon, paddy wagon, patrol wagon, wagon, black Maria", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:public transpor:bus-autobus-coa:minibus", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:van:police van, police wagon, paddy wagon, patrol wagon, wagon, black Maria", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:van:moving van", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:van:police van, police wagon, paddy wagon, patrol wagon, wagon, black Maria", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:van:police van, police wagon, paddy wagon, patrol wagon, wagon, black Maria", "oc": 37}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:cloak:poncho", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:robe:abaya", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:cloak:poncho", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:outerwear-overc:gown-robe:academic gown, academic robe, judge's robe", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:cloak:poncho", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:sweater-jumper:cardigan", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:cloak:poncho", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:footwear:hosiery-hose:stocking:Christmas stocking", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:cloak:poncho", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:robe:kimono", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:cloak:poncho", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:overskirt", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:cloak:poncho", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:nightwear-sleep:pajama, pyjama, pj's, jammies", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:cloak:poncho", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:rescue equipmen:parachute, chute", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:cloak:poncho", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:cloak:poncho", "oc": 31}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:cloak:poncho", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloth covering:bedclothes-bed :quilt, comforter, comfort, puff", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:cloak:poncho", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:sarong", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:cloak:poncho", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:sleeping bag", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:cloak:poncho", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:scarf:stole", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:cloak:poncho", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:outerwear-overc:gown-robe:vestment", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:cloak:poncho", "at": "root:entity:physical entity:object-physical:geological form:cliff, drop, drop-off", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:table:pool table, billiard table, snooker table", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:boot:cowboy boot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:table:pool table, billiard table, snooker table", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:piano-pianofort:grand piano, grand", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:table:pool table, billiard table, snooker table", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:theater-theatre:home theater, home theatre", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:table:pool table, billiard table, snooker table", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:maraca", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:table:pool table, billiard table, snooker table", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:marimba, xylophone", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:table:pool table, billiard table, snooker table", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:ping-pong ball", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:table:pool table, billiard table, snooker table", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:table:pool table, billiard table, snooker table", "oc": 41}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:table:pool table, billiard table, snooker table", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:snowplow, snowplough", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:table:pool table, billiard table, snooker table", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:sombrero", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:pop bottle, soda bottle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:jar:beaker", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:pop bottle, soda bottle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:beer bottle", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:pop bottle, soda bottle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:confectionery, confectionary, candy store", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:pop bottle, soda bottle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:package-parcel:packet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:pop bottle, soda bottle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:pop bottle, soda bottle", "oc": 36}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:pop bottle, soda bottle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:purse", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:pop bottle, soda bottle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:white goods:refrigerator, icebox", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:pop bottle, soda bottle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:footwear:hosiery-hose:sock", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:pop bottle, soda bottle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:cap:thimble", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:pop bottle, soda bottle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:keyboard:typewriter keyboard", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:pop bottle, soda bottle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:water bottle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:pop bottle, soda bottle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:wine bottle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:pot, flowerpot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:cabinet:china cabinet, china closet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:pot, flowerpot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:greenhouse, nursery, glasshouse", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:pot, flowerpot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:mailbox, letter box", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:pot, flowerpot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:can-tin-tin can:milk can", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:pot, flowerpot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:pot, flowerpot", "oc": 41}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:pot, flowerpot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:jar:vase", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:pot, flowerpot", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:stew:hot pot, hotpot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:pot, flowerpot", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:squash:summer squash:zucchini, courgette", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:pot, flowerpot", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:artichoke, globe artichoke", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:pot, flowerpot", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:banana", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:machine-simple :wheel:potter's wheel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:coil, spiral, volute, whorl, helix", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:machine-simple :wheel:potter's wheel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:hair spray", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:machine-simple :wheel:potter's wheel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:mortar", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:machine-simple :wheel:potter's wheel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:machine-simple :wheel:potter's wheel", "oc": 44}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:machine-simple :wheel:potter's wheel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:sombrero", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:machine-simple :wheel:potter's wheel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:game:puzzle:crossword puzzle, crossword", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:drill:power drill", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:backpack, back pack, knapsack, packsack, rucksack, haversack", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:drill:power drill", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:beer bottle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:drill:power drill", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:bookshop, bookstore, bookstall", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:drill:power drill", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:bow", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:drill:power drill", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:gear-parapherna:kit-outfit:carpenter's kit, tool kit", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:drill:power drill", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:cash machine, cash dispenser, automated teller machine, automatic teller machine, automated teller, automatic teller, ATM", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:drill:power drill", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:helmet:crash helmet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:drill:power drill", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:crate", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:drill:power drill", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:staff:crutch", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:drill:power drill", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:weight-free wei:dumbbell", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:drill:power drill", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:guitar:electric guitar", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:drill:power drill", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:blower:hand blower, blow dryer, blow drier, hair dryer, hair drier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:drill:power drill", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:control-control:joystick", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:drill:power drill", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:library", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:drill:power drill", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:maraca", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:drill:power drill", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:marimba, xylophone", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:drill:power drill", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electrical devi:transducer:electro-acousti:microphone, mike", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:drill:power drill", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:timer:parking meter", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:drill:power drill", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:ping-pong ball", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:drill:power drill", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:plane, carpenter's plane, woodworking plane", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:drill:power drill", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:drill:power drill", "oc": 21}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:drill:power drill", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:scale, weighing machine", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:drill:power drill", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:screwdriver", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:drill:power drill", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:slot machine-co:slot, one-armed bandit", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:drill:power drill", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:swimsuit-swimwe:swimming trunks, bathing trunks", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:drill:power drill", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:medical instrum:syringe", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:drill:power drill", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:vacuum, vacuum cleaner", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:drill:power drill", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:waffle iron", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:floor cover-flo:rug-carpet-carp:prayer rug, prayer mat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:neckwear:necktie-tie:bow tie, bow-tie, bowtie", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:floor cover-flo:rug-carpet-carp:prayer rug, prayer mat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:footwear:hosiery-hose:stocking:Christmas stocking", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:floor cover-flo:rug-carpet-carp:prayer rug, prayer mat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:table:dining table, board", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:floor cover-flo:rug-carpet-carp:prayer rug, prayer mat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:floor cover-flo:mat:doormat, welcome mat", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:floor cover-flo:rug-carpet-carp:prayer rug, prayer mat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:robe:kimono", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:floor cover-flo:rug-carpet-carp:prayer rug, prayer mat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:motor scooter, scooter", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:floor cover-flo:rug-carpet-carp:prayer rug, prayer mat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:house:residence:palace", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:floor cover-flo:rug-carpet-carp:prayer rug, prayer mat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:floor cover-flo:rug-carpet-carp:prayer rug, prayer mat", "oc": 35}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:floor cover-flo:rug-carpet-carp:prayer rug, prayer mat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloth covering:bedclothes-bed :quilt, comforter, comfort, puff", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:floor cover-flo:rug-carpet-carp:prayer rug, prayer mat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:rocking chair, rocker", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:floor cover-flo:rug-carpet-carp:prayer rug, prayer mat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:outerwear-overc:gown-robe:vestment", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:floor cover-flo:rug-carpet-carp:prayer rug, prayer mat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:wreck", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:floor cover-flo:rug-carpet-carp:prayer rug, prayer mat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:housing-lodging:dwelling-home-d:yurt", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:floor cover-flo:rug-carpet-carp:prayer rug, prayer mat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:creation:product-product:work-piece of w:publication:magazine-mag:comic book", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:printer-printin:printer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:binder, ring-binder", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:printer-printin:printer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:cash machine, cash dispenser, automated teller machine, automatic teller machine, automated teller, automatic teller, ATM", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:printer-printin:printer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:CD player", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:printer-printin:printer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:table:desk", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:printer-printin:printer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:white goods:dishwasher, dish washer, dishwashing machine", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:printer-printin:printer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:theater-theatre:home theater, home theatre", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:printer-printin:printer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:control-control:joystick", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:printer-printin:printer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:portable comput:notebook, notebook computer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:printer-printin:printer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:apparatus-setup:duplicator-copi:photocopier", "oc": 11}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:printer-printin:printer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:pickup, pickup truck", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:printer-printin:printer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:printer-printin:printer", "oc": 25}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:printer-printin:printer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:measuring stick:rule, ruler", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:printer-printin:printer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:keyboard:typewriter keyboard", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:institution:penal instituti:correctional in:prison, prison house", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bin:ashcan, trash can, garbage can, wastebin, ash bin, ash-bin, ashbin, dustbin, trash barrel, trash bin", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:institution:penal instituti:correctional in:prison, prison house", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:bookcase", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:institution:penal instituti:correctional in:prison, prison house", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:bow", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:institution:penal instituti:correctional in:prison, prison house", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:defensive struc:fortification-m:castle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:institution:penal instituti:correctional in:prison, prison house", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:chainlink fence", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:institution:penal instituti:correctional in:prison, prison house", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:place of worshi:church, church building", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:institution:penal instituti:correctional in:prison, prison house", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:coat:fur coat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:institution:penal instituti:correctional in:prison, prison house", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:library", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:institution:penal instituti:correctional in:prison, prison house", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:house:residence:religious resid:monastery", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:institution:penal instituti:correctional in:prison, prison house", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:pipe:panpipe, pandean pipe, syrinx", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:institution:penal instituti:correctional in:prison, prison house", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:area:patio, terrace", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:institution:penal instituti:correctional in:prison, prison house", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:telephone-phone:pay-phone, pay-station", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:institution:penal instituti:correctional in:prison, prison house", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:institution:penal instituti:correctional in:prison, prison house", "oc": 28}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:institution:penal instituti:correctional in:prison, prison house", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:screen-cover-co:shoji", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:institution:penal instituti:correctional in:prison, prison house", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:shovel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:institution:penal instituti:correctional in:prison, prison house", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:sofa-couch-loun:convertible-sof:studio couch, day bed", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:institution:penal instituti:correctional in:prison, prison house", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:arch:triumphal arch", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:institution:penal instituti:correctional in:prison, prison house", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:roof:vault", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:institution:penal instituti:correctional in:prison, prison house", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:volleyball", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:institution:penal instituti:correctional in:prison, prison house", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:screen:window screen", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:institution:penal instituti:correctional in:prison, prison house", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:game:puzzle:crossword puzzle, crossword", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:projectile, missile", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:aircraft:heavier-than-ai:airplane-aeropl:airliner", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:projectile, missile", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:sled-sledge-sle:bobsled, bobsleigh, bob", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:projectile, missile", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:cannon", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:projectile, missile", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:lifting device:crane", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:projectile, missile", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:ladle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:projectile, missile", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:miniskirt, mini", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:projectile, missile", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:rocket-projecti:missile", "oc": 25}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:projectile, missile", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:plunger, plumber's helper", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:projectile, missile", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:projectile, missile", "oc": 12}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:projectile, missile", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:firearm-piece-s:rifle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:projectile, missile", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:trailer truck, tractor trailer, trucking rig, rig, articulated lorry, semi", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:projectile, missile", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:roof:vault", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:projectile, missile", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:aircraft:heavier-than-ai:warplane, military plane", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:projectile, missile", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:airfoil-aerofoi:wing", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:projector", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:reflector:mirror:car mirror", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:projector", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:cassette player", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:projector", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:CD player", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:projector", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:clock:digital clock", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:projector", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:sheath:holster", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:projector", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electrical devi:transducer:electro-acousti:loudspeaker, speaker, speaker unit, loudspeaker system, speaker system", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:projector", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:modem", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:projector", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:trap:mousetrap", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:projector", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:photographic eq:camera-photogra:Polaroid camera, Polaroid Land camera", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:projector", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:projector", "oc": 32}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:projector", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:system:communication s:radio, wireless", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:projector", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:photographic eq:camera-photogra:reflex camera", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:projector", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:spotlight, spot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:projector", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:control-control:switch, electric switch, electrical switch", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:projector", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:waffle iron", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:rotating mechan:circle-round:disk-disc:puck, hockey puck", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:spider:black widow, Latrodectus mactans", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:rotating mechan:circle-round:disk-disc:puck, hockey puck", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cosmetic:makeup-make-up-:face powder", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:rotating mechan:circle-round:disk-disc:puck, hockey puck", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:rotating mechan:circle-round:disk-disc:puck, hockey puck", "oc": 47}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:rotating mechan:circle-round:disk-disc:puck, hockey puck", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:runner:ski", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:punching bag, punch bag, punching ball, punchball", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:gastropod-univa:conch", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:punching bag, punch bag, punching ball, punchball", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:guitar:acoustic guitar", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:punching bag, punch bag, punching ball, punchball", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:protective garm:apron", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:punching bag, punch bag, punching ball, punchball", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bin:ashcan, trash can, garbage can, wastebin, ash bin, ash-bin, ashbin, dustbin, trash barrel, trash bin", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:punching bag, punch bag, punching ball, punchball", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:weight-free wei:barbell", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:punching bag, punch bag, punching ball, punchball", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shield:plate-scale-she:armor plate-arm:breastplate, aegis, egis", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:punching bag, punch bag, punching ball, punchball", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:helmet:crash helmet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:punching bag, punch bag, punching ball, punchball", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:weight-free wei:dumbbell", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:punching bag, punch bag, punching ball, punchball", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:helmet:football helmet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:punching bag, punch bag, punching ball, punchball", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:instrument of e:guillotine", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:punching bag, punch bag, punching ball, punchball", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:shirt:jersey, T-shirt, tee shirt", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:punching bag, punch bag, punching ball, punchball", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:lighter, light, igniter, ignitor", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:punching bag, punch bag, punching ball, punchball", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:shoe:Loafer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:punching bag, punch bag, punching ball, punchball", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:maraca", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:punching bag, punch bag, punching ball, punchball", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:area:patio, terrace", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:punching bag, punch bag, punching ball, punchball", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:plunger, plumber's helper", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:punching bag, punch bag, punching ball, punchball", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:punching bag, punch bag, punching ball, punchball", "oc": 29}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:punching bag, punch bag, punching ball, punchball", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:screwdriver", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:punching bag, punch bag, punching ball, punchball", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:support:rack-stand:tripod", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:punching bag, punch bag, punching ball, punchball", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:waffle iron", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:punching bag, punch bag, punching ball, punchball", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:dessert-sweet-a:frozen dessert:ice lolly, lolly, lollipop, popsicle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:purse", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:teiid lizard-te:whiptail, whiptail lizard", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:purse", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:backpack, back pack, knapsack, packsack, rucksack, haversack", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:purse", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:bakery, bakeshop, bakehouse", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:purse", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:bonnet, poke bonnet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:purse", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:footwear:hosiery-hose:stocking:Christmas stocking", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:purse", "at": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:handkerchief, hankie, hanky, hankey", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:purse", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:sheath:holster", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:purse", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:mailbag, postbag", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:purse", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:trap:mousetrap", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:purse", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:pencil box, pencil case", "oc": 5}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:purse", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:padding-cushion:cushion:pillow", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:purse", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:purse", "oc": 19}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:purse", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:shoe:sandal", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:purse", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:shoe shop, shoe-shop, shoe store", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:purse", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:footwear:hosiery-hose:sock", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:purse", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:medical instrum:stethoscope", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:purse", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:place of worshi:shrine:stupa, tope", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:purse", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:keyboard:typewriter keyboard", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:purse", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:case:wallet, billfold, notecase, pocketbook", "oc": 7}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:purse", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:fabric-cloth-ma:wool, woolen, woollen", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:writing impleme:pen:quill, quill pen", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:crocodilian rep:alligator-gator:American alligator, Alligator mississipiensis", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:writing impleme:pen:quill, quill pen", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:bow", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:writing impleme:pen:quill, quill pen", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:cowboy hat, ten-gallon hat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:writing impleme:pen:quill, quill pen", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:envelope", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:writing impleme:pen:quill, quill pen", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:ladle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:writing impleme:pen:quill, quill pen", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:knife:letter opener, paper knife, paperknife", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:writing impleme:pen:quill, quill pen", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:trap:mousetrap", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:writing impleme:pen:quill, quill pen", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:pitcher, ewer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:writing impleme:pen:quill, quill pen", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:floor cover-flo:rug-carpet-carp:prayer rug, prayer mat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:writing impleme:pen:quill, quill pen", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:writing impleme:pen:quill, quill pen", "oc": 35}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:writing impleme:pen:quill, quill pen", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:sombrero", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:writing impleme:pen:quill, quill pen", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:medical instrum:stethoscope", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:writing impleme:pen:quill, quill pen", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:swing", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:writing impleme:pen:quill, quill pen", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:tobacco shop, tobacconist shop, tobacconist", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:writing impleme:pen:quill, quill pen", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:game:puzzle:crossword puzzle, crossword", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloth covering:bedclothes-bed :quilt, comforter, comfort, puff", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:iguanid-iguanid:common iguana, iguana, Iguana iguana", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloth covering:bedclothes-bed :quilt, comforter, comfort, puff", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Airedale, Airedale terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloth covering:bedclothes-bed :quilt, comforter, comfort, puff", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever:Labrador retriever", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloth covering:bedclothes-bed :quilt, comforter, comfort, puff", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :pinscher:miniature pinscher", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloth covering:bedclothes-bed :quilt, comforter, comfort, puff", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:domestic cat-ho:tiger cat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloth covering:bedclothes-bed :quilt, comforter, comfort, puff", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:baby bed-babys :cradle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloth covering:bedclothes-bed :quilt, comforter, comfort, puff", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:baby bed-babys :crib, cot", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloth covering:bedclothes-bed :quilt, comforter, comfort, puff", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:bedroom furnitu:bed:four-poster", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloth covering:bedclothes-bed :quilt, comforter, comfort, puff", "at": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:handkerchief, hankie, hanky, hankey", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloth covering:bedclothes-bed :quilt, comforter, comfort, puff", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:screen:mosquito net", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloth covering:bedclothes-bed :quilt, comforter, comfort, puff", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:padding-cushion:cushion:pillow", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloth covering:bedclothes-bed :quilt, comforter, comfort, puff", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:floor cover-flo:rug-carpet-carp:prayer rug, prayer mat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloth covering:bedclothes-bed :quilt, comforter, comfort, puff", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloth covering:bedclothes-bed :quilt, comforter, comfort, puff", "oc": 28}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloth covering:bedclothes-bed :quilt, comforter, comfort, puff", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:screen-cover-co:shoji", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloth covering:bedclothes-bed :quilt, comforter, comfort, puff", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:sleeping bag", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloth covering:bedclothes-bed :quilt, comforter, comfort, puff", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:sofa-couch-loun:convertible-sof:studio couch, day bed", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:racer, race car, racing car", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:cab, hack, taxi, taxicab", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:racer, race car, racing car", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:convertible", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:racer, race car, racing car", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:go-kart", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:racer, race car, racing car", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:grate-grating:grille, radiator grille", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:racer, race car, racing car", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:jeep, landrover", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:racer, race car, racing car", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:racer, race car, racing car", "oc": 39}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:racer, race car, racing car", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:signboard-sign:scoreboard", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:racer, race car, racing car", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:sports car, sport car", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:racer, race car, racing car", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:tow truck, tow car, wrecker", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:racer, race car, racing car", "at": "root:entity:physical entity:object-physical:geological form:cliff, drop, drop-off", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:racer, race car, racing car", "at": "root:entity:physical entity:object-physical:geological form:natural elevati:mountain-mount:volcano", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:sports implemen:racket, racquet", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:greyhound:Italian greyhound", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:sports implemen:racket, racquet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:drumstick", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:sports implemen:racket, racquet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:go-kart", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:sports implemen:racket, racquet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:maraca", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:sports implemen:racket, racquet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:sports implemen:racket, racquet", "oc": 37}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:sports implemen:racket, racquet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:signboard-sign:scoreboard", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:sports implemen:racket, racquet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:armor-armour:shield, buckler", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:sports implemen:racket, racquet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:reflector:solar dish, solar collector, solar furnace", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:sports implemen:racket, racquet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:tennis ball", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:sports implemen:racket, racquet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:vacuum, vacuum cleaner", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:sports implemen:racket, racquet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:volleyball", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:sports implemen:racket, racquet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:acoustic device:whistle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:radiator", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :schipperke", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:radiator", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:sled dog-sledge:malamute, malemute, Alaskan malamute", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:radiator", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:barbershop", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:radiator", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:crate", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:radiator", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:armor-armour:body armor-body:cuirass", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:radiator", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:car-railcar-rai:freight car", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:radiator", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:piano-pianofort:grand piano, grand", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:radiator", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:grate-grating:grille, radiator grille", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:radiator", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:military vehicl:half track", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:radiator", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electrical devi:transducer:electro-acousti:loudspeaker, speaker, speaker unit, loudspeaker system, speaker system", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:radiator", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:modem", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:radiator", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:projector", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:radiator", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:radiator", "oc": 35}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:radiator", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:reflector:solar dish, solar collector, solar furnace", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:radiator", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :tractor", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:system:communication s:radio, wireless", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:barometer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:system:communication s:radio, wireless", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:cassette player", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:system:communication s:radio, wireless", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:CD player", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:system:communication s:radio, wireless", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:telephone-phone:radiotelephone-:cellular telephone, cellular phone, cellphone, cell, mobile phone", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:system:communication s:radio, wireless", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:chainlink fence", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:system:communication s:radio, wireless", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:chest", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:system:communication s:radio, wireless", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:office furnitur:file, file cabinet, filing cabinet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:system:communication s:radio, wireless", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:audio system-so:reproducer:stereo-stereoph:iPod", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:system:communication s:radio, wireless", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:lighter, light, igniter, ignitor", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:system:communication s:radio, wireless", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:oscilloscope, scope, cathode-ray oscilloscope, CRO", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:system:communication s:radio, wireless", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:projector", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:system:communication s:radio, wireless", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:radiator", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:system:communication s:radio, wireless", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:system:communication s:radio, wireless", "oc": 26}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:system:communication s:radio, wireless", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:signboard-sign:scoreboard", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:system:communication s:radio, wireless", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:tape player", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:scientific inst:magnifier:telescope-scope:astronomical te:radio telescope, radio reflector", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:cannon", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:scientific inst:magnifier:telescope-scope:astronomical te:radio telescope, radio reflector", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:fan:electric fan, blower", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:scientific inst:magnifier:telescope-scope:astronomical te:radio telescope, radio reflector", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:scientific inst:magnifier:telescope-scope:astronomical te:radio telescope, radio reflector", "oc": 46}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:scientific inst:magnifier:telescope-scope:astronomical te:radio telescope, radio reflector", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:reflector:solar dish, solar collector, solar furnace", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:excavation:pool:cistern:rain barrel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bin:ashcan, trash can, garbage can, wastebin, ash bin, ash-bin, ashbin, dustbin, trash barrel, trash bin", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:excavation:pool:cistern:rain barrel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:bakery, bakeshop, bakehouse", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:excavation:pool:cistern:rain barrel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:barrel, cask", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:excavation:pool:cistern:rain barrel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bucket, pail", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:excavation:pool:cistern:rain barrel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:picket fence, paling", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:excavation:pool:cistern:rain barrel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:plunger, plumber's helper", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:excavation:pool:cistern:rain barrel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:pot, flowerpot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:excavation:pool:cistern:rain barrel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:excavation:pool:cistern:rain barrel", "oc": 38}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:excavation:pool:cistern:rain barrel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:movable barrier:gate:turnstile", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:excavation:pool:cistern:rain barrel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:vacuum, vacuum cleaner", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:excavation:pool:cistern:rain barrel", "at": "root:entity:physical entity:matter:substance:material-stuff:paper:tissue-tissue p:toilet tissue, toilet paper, bathroom tissue", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :recreational vehicle, RV, R.V.", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:ambulance", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :recreational vehicle, RV, R.V.", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:amphibian, amphibious vehicle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :recreational vehicle, RV, R.V.", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:barber chair", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :recreational vehicle, RV, R.V.", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:beach wagon, station wagon, wagon, estate car, beach waggon, station waggon, waggon", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :recreational vehicle, RV, R.V.", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:public transpor:bus-autobus-coa:minibus", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :recreational vehicle, RV, R.V.", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:motorcycle-bike:minibike-motorb:moped", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :recreational vehicle, RV, R.V.", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:printer-printin:printer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :recreational vehicle, RV, R.V.", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :recreational vehicle, RV, R.V.", "oc": 38}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :recreational vehicle, RV, R.V.", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:trailer truck, tractor trailer, trucking rig, rig, articulated lorry, semi", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :recreational vehicle, RV, R.V.", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:arch:triumphal arch", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :recreational vehicle, RV, R.V.", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:public transpor:bus-autobus-coa:trolleybus, trolley coach, trackless trolley", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:winder:reel", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:odonate:damselfly", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:winder:reel", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:wild sheep:mountain sheep:bighorn, bighorn sheep, cimarron, Rocky Mountain bighorn, Rocky Mountain sheep, Ovis canadensis", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:winder:reel", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:ganoid-ganoid f:gar, garfish, garpike, billfish, Lepisosteus osseus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:winder:reel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:aircraft:lighter-than-ai:balloon", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:winder:reel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:bow", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:winder:reel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:cannon", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:winder:reel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:power tool:power saw-saw-s:chain saw, chainsaw", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:winder:reel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:lifting device:crane", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:winder:reel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:weight-free wei:dumbbell", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:winder:reel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:grate-grating:grille, radiator grille", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:winder:reel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:marketplace-mar:grocery store, grocery, food market, market", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:winder:reel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:control-control:joystick", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:winder:reel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:motorcycle-bike:minibike-motorb:moped", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:winder:reel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:motor scooter, scooter", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:winder:reel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:winder:reel", "oc": 32}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:winder:reel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:shovel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:winder:reel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:cleaning implem:swab, swob, mop", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:winder:reel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:vacuum, vacuum cleaner", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:winder:reel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pan-cooking pan:wok", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:photographic eq:camera-photogra:reflex camera", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:keyboard instru:accordion, piano accordion, squeeze box", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:photographic eq:camera-photogra:reflex camera", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:firearm-piece-s:autoloader-self:automatic firea:automatic rifle:assault rifle, assault gun", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:photographic eq:camera-photogra:reflex camera", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:binoculars, field glasses, opera glasses", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:photographic eq:camera-photogra:reflex camera", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:watch-ticker:digital watch", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:photographic eq:camera-photogra:reflex camera", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:mask:gasmask, respirator, gas helmet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:photographic eq:camera-photogra:reflex camera", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:cap:lens cap, lens cover", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:photographic eq:camera-photogra:reflex camera", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electrical devi:transducer:electro-acousti:loudspeaker, speaker, speaker unit, loudspeaker system, speaker system", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:photographic eq:camera-photogra:reflex camera", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:photographic eq:camera-photogra:Polaroid camera, Polaroid Land camera", "oc": 5}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:photographic eq:camera-photogra:reflex camera", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:projector", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:photographic eq:camera-photogra:reflex camera", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:photographic eq:camera-photogra:reflex camera", "oc": 34}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:photographic eq:camera-photogra:reflex camera", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:firearm-piece-s:pistol-handgun-:revolver, six-gun, six-shooter", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:photographic eq:camera-photogra:reflex camera", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:textile machine:sewing machine", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:white goods:refrigerator, icebox", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:greyhound:Italian greyhound", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:white goods:refrigerator, icebox", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cosmetic:makeup-make-up-:face powder", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:white goods:refrigerator, icebox", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:measure:measuring cup", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:white goods:refrigerator, icebox", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:pop bottle, soda bottle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:white goods:refrigerator, icebox", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:racer, race car, racing car", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:white goods:refrigerator, icebox", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:white goods:refrigerator, icebox", "oc": 36}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:white goods:refrigerator, icebox", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:oven:rotisserie", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:white goods:refrigerator, icebox", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:strongbox-deedb:safe", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:white goods:refrigerator, icebox", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:surface:horizontal surf:platform:stage", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:white goods:refrigerator, icebox", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:heater-warmer:stove", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:white goods:refrigerator, icebox", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:toyshop", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:white goods:refrigerator, icebox", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:slot machine-co:vending machine", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:white goods:refrigerator, icebox", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:white goods:washer, automatic washer, washing machine", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:white goods:refrigerator, icebox", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:wine bottle", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:remote control, remote", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:kelpie", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:remote control, remote", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:opener:can opener, tin opener", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:remote control, remote", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:keyboard:computer keyboard, keypad", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:remote control, remote", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:desktop computer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:remote control, remote", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:hair spray", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:remote control, remote", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:portable comput:hand-held computer, hand-held microcomputer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:remote control, remote", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:audio system-so:reproducer:stereo-stereoph:iPod", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:remote control, remote", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:purse", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:remote control, remote", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloth covering:bedclothes-bed :quilt, comforter, comfort, puff", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:remote control, remote", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:remote control, remote", "oc": 35}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:remote control, remote", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:measuring stick:rule, ruler", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:remote control, remote", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:analog computer:slide rule, slipstick", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:remote control, remote", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:turner-food tur:spatula", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:remote control, remote", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:game:puzzle:crossword puzzle, crossword", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:restaurant, eating house, eating place, eatery", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:bakery, bakeshop, bakehouse", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:restaurant, eating house, eating place, eatery", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:candle, taper, wax light", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:restaurant, eating house, eating place, eatery", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:theater-theatre:cinema, movie theater, movie theatre, movie house, picture palace", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:restaurant, eating house, eating place, eatery", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:confectionery, confectionary, candy store", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:restaurant, eating house, eating place, eatery", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:table:dining table, board", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:restaurant, eating house, eating place, eatery", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:greenhouse, nursery, glasshouse", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:restaurant, eating house, eating place, eatery", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:wagon-waggon:cart:jinrikisha, ricksha, rickshaw", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:restaurant, eating house, eating place, eatery", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:ladle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:restaurant, eating house, eating place, eatery", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:breathing devic:oxygen mask", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:restaurant, eating house, eating place, eatery", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:restaurant, eating house, eating place, eatery", "oc": 24}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:restaurant, eating house, eating place, eatery", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dish:bowl:soup bowl", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:restaurant, eating house, eating place, eatery", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:tobacco shop, tobacconist shop, tobacconist", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:restaurant, eating house, eating place, eatery", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:movable barrier:gate:turnstile", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:restaurant, eating house, eating place, eatery", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:wine bottle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:restaurant, eating house, eating place, eatery", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:entree-main cou:plate", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:restaurant, eating house, eating place, eatery", "at": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :ingredient-fixi:flavorer-flavou:condiment:dip:guacamole", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:restaurant, eating house, eating place, eatery", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:soup:consomme", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:restaurant, eating house, eating place, eatery", "at": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:loaf of bread-l:meat loaf, meatloaf", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:restaurant, eating house, eating place, eatery", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:potpie", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:restaurant, eating house, eating place, eatery", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:person-individu:peer-equal-matc:associate:participant:groom, bridegroom", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:firearm-piece-s:pistol-handgun-:revolver, six-gun, six-shooter", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:firearm-piece-s:autoloader-self:automatic firea:automatic rifle:assault rifle, assault gun", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:firearm-piece-s:pistol-handgun-:revolver, six-gun, six-shooter", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:opener:bottle opener:corkscrew, bottle screw", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:firearm-piece-s:pistol-handgun-:revolver, six-gun, six-shooter", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:sheath:holster", "oc": 6}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:firearm-piece-s:pistol-handgun-:revolver, six-gun, six-shooter", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:drill:power drill", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:firearm-piece-s:pistol-handgun-:revolver, six-gun, six-shooter", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:firearm-piece-s:pistol-handgun-:revolver, six-gun, six-shooter", "oc": 38}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:firearm-piece-s:pistol-handgun-:revolver, six-gun, six-shooter", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:firearm-piece-s:rifle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:firearm-piece-s:pistol-handgun-:revolver, six-gun, six-shooter", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:sheath:scabbard", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:firearm-piece-s:rifle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:firearm-piece-s:autoloader-self:automatic firea:automatic rifle:assault rifle, assault gun", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:firearm-piece-s:rifle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shield:plate-scale-she:armor plate-arm:breastplate, aegis, egis", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:firearm-piece-s:rifle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:power tool:power saw-saw-s:chain saw, chainsaw", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:firearm-piece-s:rifle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloak", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:firearm-piece-s:rifle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:flute, transverse flute", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:firearm-piece-s:rifle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:hammer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:firearm-piece-s:rifle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:hook, claw", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:firearm-piece-s:rifle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:wagon-waggon:cart:horse cart, horse-cart", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:firearm-piece-s:rifle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:wagon-waggon:cart:jinrikisha, ricksha, rickshaw", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:firearm-piece-s:rifle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:uniform:military uniform", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:firearm-piece-s:rifle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shield:plate-scale-she:armor plate-arm:helmet:pickelhaube", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:firearm-piece-s:rifle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:plunger, plumber's helper", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:firearm-piece-s:rifle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:firearm-piece-s:pistol-handgun-:revolver, six-gun, six-shooter", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:firearm-piece-s:rifle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:firearm-piece-s:rifle", "oc": 22}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:firearm-piece-s:rifle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:shovel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:firearm-piece-s:rifle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :tracked vehicle:snowmobile", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:firearm-piece-s:rifle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:spindle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:firearm-piece-s:rifle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:tobacco shop, tobacconist shop, tobacconist", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:firearm-piece-s:rifle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:support:rack-stand:tripod", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:firearm-piece-s:rifle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:canopy:umbrella", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:firearm-piece-s:rifle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:wine bottle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:firearm-piece-s:rifle", "at": "root:entity:physical entity:object-physical:geological form:natural elevati:ridge:bar:sandbar, sand bar", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:rocking chair, rocker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:altar", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:rocking chair, rocker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:bannister, banister, balustrade, balusters, handrail", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:rocking chair, rocker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:barber chair", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:rocking chair, rocker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:barbershop", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:rocking chair, rocker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:bookcase", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:rocking chair, rocker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:chest", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:rocking chair, rocker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:footwear:hosiery-hose:stocking:Christmas stocking", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:rocking chair, rocker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:table:dining table, board", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:rocking chair, rocker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:folding chair", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:rocking chair, rocker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:helmet:football helmet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:rocking chair, rocker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:bench:park bench", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:rocking chair, rocker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:scientific inst:magnifier:telescope-scope:astronomical te:radio telescope, radio reflector", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:rocking chair, rocker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:rocking chair, rocker", "oc": 30}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:rocking chair, rocker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:sofa-couch-loun:convertible-sof:studio couch, day bed", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:rocking chair, rocker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:roof:thatch, thatched roof", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:rocking chair, rocker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:chair of state:throne", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:rocking chair, rocker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:toilet seat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:rocking chair, rocker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:tricycle, trike, velocipede", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:rocking chair, rocker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:wreck", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:oven:rotisserie", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crab:king crab, Alaska crab, Alaskan king crab, Alaska king crab, Paralithodes camtschatica", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:oven:rotisserie", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:lobster:spiny lobster, langouste, rock lobster, crawfish, crayfish, sea crawfish", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:oven:rotisserie", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:swine:hog, pig, grunter, squealer, Sus scrofa", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:oven:rotisserie", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:cannon", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:oven:rotisserie", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:restaurant, eating house, eating place, eatery", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:oven:rotisserie", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:oven:rotisserie", "oc": 43}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:oven:rotisserie", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:heater-warmer:stove", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:oven:rotisserie", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pot:teapot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:eraser:rubber eraser, rubber, pencil eraser", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:calculator-calc:abacus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:eraser:rubber eraser, rubber, pencil eraser", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:binder, ring-binder", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:eraser:rubber eraser, rubber, pencil eraser", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:bow", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:eraser:rubber eraser, rubber, pencil eraser", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:opener:can opener, tin opener", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:eraser:rubber eraser, rubber, pencil eraser", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:confectionery, confectionary, candy store", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:eraser:rubber eraser, rubber, pencil eraser", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:hair spray", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:eraser:rubber eraser, rubber, pencil eraser", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:matchstick", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:eraser:rubber eraser, rubber, pencil eraser", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:filter:oil filter", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:eraser:rubber eraser, rubber, pencil eraser", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:organ, pipe organ", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:eraser:rubber eraser, rubber, pencil eraser", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:applicator-appl:paintbrush", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:eraser:rubber eraser, rubber, pencil eraser", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:pencil box, pencil case", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:eraser:rubber eraser, rubber, pencil eraser", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:apparatus-setup:duplicator-copi:photocopier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:eraser:rubber eraser, rubber, pencil eraser", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:eraser:rubber eraser, rubber, pencil eraser", "oc": 31}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:eraser:rubber eraser, rubber, pencil eraser", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:measuring stick:rule, ruler", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:eraser:rubber eraser, rubber, pencil eraser", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:shaker:saltshaker, salt shaker", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:eraser:rubber eraser, rubber, pencil eraser", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:medical instrum:syringe", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:eraser:rubber eraser, rubber, pencil eraser", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:cap:thimble", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:eraser:rubber eraser, rubber, pencil eraser", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:dessert-sweet-a:frozen dessert:ice lolly, lolly, lollipop, popsicle", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:rugby ball", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:aircraft:lighter-than-ai:airship, dirigible", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:rugby ball", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:sled-sledge-sle:bobsled, bobsleigh, bob", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:rugby ball", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:helmet:football helmet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:rugby ball", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:protective garm:knee pad", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:rugby ball", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:rotating mechan:circle-round:disk-disc:puck, hockey puck", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:rugby ball", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:rugby ball", "oc": 42}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:rugby ball", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:swimsuit-swimwe:swimming trunks, bathing trunks", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:rugby ball", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:unicycle, monocycle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:rugby ball", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:volleyball", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:measuring stick:rule, ruler", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crayfish, crawfish, crawdad, crawdaddy", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:measuring stick:rule, ruler", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:robe:abaya", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:measuring stick:rule, ruler", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:carton", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:measuring stick:rule, ruler", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:cassette", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:measuring stick:rule, ruler", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:lock:combination lock", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:measuring stick:rule, ruler", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:opener:bottle opener:corkscrew, bottle screw", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:measuring stick:rule, ruler", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:floor cover-flo:mat:doormat, welcome mat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:measuring stick:rule, ruler", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:envelope", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:measuring stick:rule, ruler", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:portable comput:laptop, laptop computer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:measuring stick:rule, ruler", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dish:bowl:mixing bowl", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:measuring stick:rule, ruler", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:pencil box, pencil case", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:measuring stick:rule, ruler", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:perfume, essence", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:measuring stick:rule, ruler", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:eraser:rubber eraser, rubber, pencil eraser", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:measuring stick:rule, ruler", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:measuring stick:rule, ruler", "oc": 35}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:measuring stick:rule, ruler", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:analog computer:slide rule, slipstick", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:measuring stick:rule, ruler", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:game:puzzle:crossword puzzle, crossword", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:shoe:running shoe", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:croquet ball", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:shoe:running shoe", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:weight-free wei:dumbbell", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:shoe:running shoe", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:shoe:Loafer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:shoe:running shoe", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:package-parcel:packet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:shoe:running shoe", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:sports implemen:racket, racquet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:shoe:running shoe", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:shoe:running shoe", "oc": 41}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:shoe:running shoe", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:shoe shop, shoe-shop, shoe store", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:shoe:running shoe", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:column-pillar:totem pole", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:strongbox-deedb:safe", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:gear-parapherna:kit-outfit:carpenter's kit, tool kit", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:strongbox-deedb:safe", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:coffee maker:espresso maker", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:strongbox-deedb:safe", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:navigational in:compass:magnetic compass", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:strongbox-deedb:safe", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:modem", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:strongbox-deedb:safe", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:monitor", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:strongbox-deedb:safe", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:strongbox-deedb:safe", "oc": 43}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:strongbox-deedb:safe", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:heater-warmer:space heater", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:strongbox-deedb:safe", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:wardrobe, closet, press", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:pin:safety pin", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:ringneck snake, ring-necked snake, ring snake", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:pin:safety pin", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:calculator-calc:abacus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:pin:safety pin", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:writing impleme:pen:ballpoint, ballpoint pen, ballpen, Biro", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:pin:safety pin", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:handcart-pushca:barrow, garden cart, lawn cart, wheelbarrow", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:pin:safety pin", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:top-cover:cap:bottlecap", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:pin:safety pin", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:sweater-jumper:cardigan", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:pin:safety pin", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:coil, spiral, volute, whorl, helix", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:pin:safety pin", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:coffee maker:espresso maker", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:pin:safety pin", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:chordophone:harp", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:pin:safety pin", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:hook, claw", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:pin:safety pin", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:knot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:pin:safety pin", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:decoration-orna:adornment:jewelry-jewelle:necklace", "oc": 5}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:pin:safety pin", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:pencil box, pencil case", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:pin:safety pin", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:purse", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:pin:safety pin", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:pin:safety pin", "oc": 24}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:pin:safety pin", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:screwdriver", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:pin:safety pin", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:cap:thimble", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:pin:safety pin", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:receptacle:tray", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:pin:safety pin", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:clock:wall clock", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:pin:safety pin", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:squash:summer squash:spaghetti squash", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:pin:safety pin", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:berry:strawberry", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:shaker:saltshaker, salt shaker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:glass-drinking :beer glass", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:shaker:saltshaker, salt shaker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:shaker:cocktail shaker", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:shaker:saltshaker, salt shaker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:drinking vessel:mug:coffee mug", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:shaker:saltshaker, salt shaker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:glass-drinking :goblet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:shaker:saltshaker, salt shaker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:sandglass:hourglass", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:shaker:saltshaker, salt shaker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:filter:oil filter", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:shaker:saltshaker, salt shaker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:pitcher, ewer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:shaker:saltshaker, salt shaker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:shaker:saltshaker, salt shaker", "oc": 33}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:shaker:saltshaker, salt shaker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dispenser:soap dispenser", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:shaker:saltshaker, salt shaker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:spotlight, spot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:shaker:saltshaker, salt shaker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pot:teapot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:shaker:saltshaker, salt shaker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:cap:thimble", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:shaker:saltshaker, salt shaker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:clock:wall clock", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:shaker:saltshaker, salt shaker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:water bottle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:shoe:sandal", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:barber chair", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:shoe:sandal", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:clog, geta, patten, sabot", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:shoe:sandal", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:sheath:holster", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:shoe:sandal", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:shoe:Loafer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:shoe:sandal", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:footwear:hosiery-hose:tights-leotards:maillot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:shoe:sandal", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:system:maze, labyrinth", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:shoe:sandal", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electronic devi:mouse, computer mouse", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:shoe:sandal", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:plane, carpenter's plane, woodworking plane", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:shoe:sandal", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:purse", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:shoe:sandal", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:shoe:running shoe", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:shoe:sandal", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:shoe:sandal", "oc": 33}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:shoe:sandal", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:sofa-couch-loun:convertible-sof:studio couch, day bed", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:shoe:sandal", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:tricycle, trike, velocipede", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:shoe:sandal", "at": "root:entity:physical entity:matter:substance:material-stuff:paper:tissue-tissue p:toilet tissue, toilet paper, bathroom tissue", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:sarong", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:gymnastic appar:balance beam, beam", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:sarong", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:swimsuit-swimwe:bikini, two-piece", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:sarong", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:butcher shop, meat market", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:sarong", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:scarf:feather boa, boa", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:sarong", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:blower:hand blower, blow dryer, blow drier, hair dryer, hair drier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:sarong", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:support:structural memb:upright-vertica:post:maypole", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:sarong", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:miniskirt, mini", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:sarong", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:shelter:tent-collapsibl:mountain tent", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:sarong", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:rod:pole", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:sarong", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:sarong", "oc": 33}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:sarong", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:sleeping bag", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:sarong", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:sofa-couch-loun:convertible-sof:studio couch, day bed", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:sarong", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:swimsuit-swimwe:swimming trunks, bathing trunks", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:sarong", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:arch:triumphal arch", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:sarong", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:canopy:umbrella", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:sarong", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:vacuum, vacuum cleaner", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:beating-reed in:single-reed ins:sax, saxophone", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:brass-brass ins:cornet, horn, trumpet, trump", "oc": 5}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:beating-reed in:single-reed ins:sax, saxophone", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:staff:crutch", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:beating-reed in:single-reed ins:sax, saxophone", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:telephone-phone:dial telephone, dial phone", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:beating-reed in:single-reed ins:sax, saxophone", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:gear-parapherna:rig:drill rig-drill:drilling platform, offshore rig", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:beating-reed in:single-reed ins:sax, saxophone", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:guitar:electric guitar", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:beating-reed in:single-reed ins:sax, saxophone", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:flute, transverse flute", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:beating-reed in:single-reed ins:sax, saxophone", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:beating-reed in:double-reed ins:oboe, hautboy, hautbois", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:beating-reed in:single-reed ins:sax, saxophone", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:pipe:panpipe, pandean pipe, syrinx", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:beating-reed in:single-reed ins:sax, saxophone", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:beating-reed in:single-reed ins:sax, saxophone", "oc": 32}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:beating-reed in:single-reed ins:sax, saxophone", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:surface:horizontal surf:platform:stage", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:beating-reed in:single-reed ins:sax, saxophone", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:swing", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:beating-reed in:single-reed ins:sax, saxophone", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:web site, website, internet site, site", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:sheath:scabbard", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:bannister, banister, balustrade, balusters, handrail", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:sheath:scabbard", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:handcart-pushca:barrow, garden cart, lawn cart, wheelbarrow", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:sheath:scabbard", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:bow", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:sheath:scabbard", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:buckle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:sheath:scabbard", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:armor-armour:body armor-body:cuirass", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:sheath:scabbard", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:sheath:holster", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:sheath:scabbard", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:knife:letter opener, paper knife, paperknife", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:sheath:scabbard", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:applicator-appl:paintbrush", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:sheath:scabbard", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:timer:parking meter", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:sheath:scabbard", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:sheath:scabbard", "oc": 34}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:sheath:scabbard", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:armor-armour:shield, buckler", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:sheath:scabbard", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:roof:tile roof", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:sheath:scabbard", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:brass-brass ins:trombone", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:sheath:scabbard", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:fabric-cloth-ma:velvet", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:scale, weighing machine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:clock:analog clock", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:scale, weighing machine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:bakery, bakeshop, bakehouse", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:scale, weighing machine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:binoculars, field glasses, opera glasses", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:scale, weighing machine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:butcher shop, meat market", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:scale, weighing machine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:ride:carousel, carrousel, merry-go-round, roundabout, whirligig", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:scale, weighing machine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:cash machine, cash dispenser, automated teller machine, automatic teller machine, automated teller, automatic teller, ATM", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:scale, weighing machine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:crate", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:scale, weighing machine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:white goods:dishwasher, dish washer, dishwashing machine", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:scale, weighing machine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:oven:Dutch oven", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:scale, weighing machine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:envelope", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:scale, weighing machine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:instrument of e:guillotine", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:scale, weighing machine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:gymnastic appar:horizontal bar, high bar", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:scale, weighing machine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building comple:plant-works-ind:factory-mill-ma:lumbermill, sawmill", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:scale, weighing machine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:lock:padlock", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:scale, weighing machine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:eraser:rubber eraser, rubber, pencil eraser", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:scale, weighing machine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:pin:safety pin", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:scale, weighing machine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:scale, weighing machine", "oc": 28}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:scale, weighing machine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:timer:stopwatch, stop watch", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:scale, weighing machine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pot:teapot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:scale, weighing machine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:jar:vase", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:scale, weighing machine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:waffle iron", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:scale, weighing machine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:basin:washbasin, handbasin, washbowl, lavabo, wash-hand basin", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:public transpor:bus-autobus-coa:school bus", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:public transpor:bus-autobus-coa:school bus", "oc": 44}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:public transpor:bus-autobus-coa:school bus", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:litter:stretcher", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:public transpor:bus-autobus-coa:school bus", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :tractor", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:public transpor:bus-autobus-coa:school bus", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:public transpor:bus-autobus-coa:trolleybus, trolley coach, trackless trolley", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:sailing vessel-:schooner", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:buckle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:sailing vessel-:schooner", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:landing-landing:dock, dockage, docking facility", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:sailing vessel-:schooner", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:passenger ship:liner, ocean liner", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:sailing vessel-:schooner", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:pirate, pirate ship", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:sailing vessel-:schooner", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:sailing vessel-:schooner", "oc": 40}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:sailing vessel-:schooner", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:boat:small boat:yawl", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:sailing vessel-:schooner", "at": "root:entity:physical entity:object-physical:geological form:shore:lakeside, lakeshore", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:signboard-sign:scoreboard", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:watch-ticker:digital watch", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:signboard-sign:scoreboard", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:gear-parapherna:rig:drill rig-drill:drilling platform, offshore rig", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:signboard-sign:scoreboard", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:signboard-sign:scoreboard", "oc": 44}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:signboard-sign:scoreboard", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:trailer truck, tractor trailer, trucking rig, rig, articulated lorry, semi", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:signboard-sign:scoreboard", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:game:puzzle:crossword puzzle, crossword", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:signboard-sign:scoreboard", "at": "root:entity:abstraction-abs:communication:sign:street sign", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:signboard-sign:scoreboard", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:person-individu:contestant:player-particip:ballplayer, baseball player", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electronic devi:display-video d:screen, CRT screen", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:barbershop", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electronic devi:display-video d:screen, CRT screen", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:table:desk", "oc": 8}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electronic devi:display-video d:screen, CRT screen", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:desktop computer", "oc": 6}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electronic devi:display-video d:screen, CRT screen", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:wall unit:entertainment center", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electronic devi:display-video d:screen, CRT screen", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:portable comput:hand-held computer, hand-held microcomputer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electronic devi:display-video d:screen, CRT screen", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:audio system-so:reproducer:stereo-stereoph:iPod", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electronic devi:display-video d:screen, CRT screen", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shade:lampshade, lamp shade", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electronic devi:display-video d:screen, CRT screen", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:portable comput:laptop, laptop computer", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electronic devi:display-video d:screen, CRT screen", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:monitor", "oc": 12}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electronic devi:display-video d:screen, CRT screen", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:oscilloscope, scope, cathode-ray oscilloscope, CRO", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electronic devi:display-video d:screen, CRT screen", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:projector", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electronic devi:display-video d:screen, CRT screen", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electronic devi:display-video d:screen, CRT screen", "oc": 6}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electronic devi:display-video d:screen, CRT screen", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:tape player", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electronic devi:display-video d:screen, CRT screen", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:system:communication s:telecommunicati:television, television system", "oc": 5}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electronic devi:display-video d:screen, CRT screen", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:white goods:washer, automatic washer, washing machine", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:screw", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:hook, claw", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:screw", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:nail", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:screw", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:screw", "oc": 46}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:screw", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:screwdriver", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:screw", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:acoustic device:whistle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:screwdriver", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:worm:nematode, nematode worm, roundworm", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:screwdriver", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:beer bottle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:screwdriver", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:opener:can opener, tin opener", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:screwdriver", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:cassette", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:screwdriver", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:baby bed-babys :crib, cot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:screwdriver", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:coffee maker:espresso maker", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:screwdriver", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:writing impleme:pen:fountain pen", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:screwdriver", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:instrument of e:guillotine", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:screwdriver", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:hammer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:screwdriver", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:farm machine:harvester, reaper", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:screwdriver", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:control-control:joystick", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:screwdriver", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:knife:letter opener, paper knife, paperknife", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:screwdriver", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:nail", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:screwdriver", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:meter:odometer, hodometer, mileometer, milometer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:screwdriver", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:oscilloscope, scope, cathode-ray oscilloscope, CRO", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:screwdriver", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:lock:padlock", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:screwdriver", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:applicator-appl:paintbrush", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:screwdriver", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:plunger, plumber's helper", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:screwdriver", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:pop bottle, soda bottle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:screwdriver", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:drill:power drill", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:screwdriver", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:writing impleme:pen:quill, quill pen", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:screwdriver", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:white goods:refrigerator, icebox", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:screwdriver", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:rocking chair, rocker", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:screwdriver", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:screw", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:screwdriver", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:screwdriver", "oc": 15}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:screwdriver", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:safety belt-lif:seat belt, seatbelt", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:screwdriver", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:turner-food tur:spatula", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:screwdriver", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:swing", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:screwdriver", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:tub, vat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:screwdriver", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:canopy:umbrella", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:screwdriver", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:vacuum, vacuum cleaner", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:screwdriver", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:slot machine-co:vending machine", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:screwdriver", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:dessert-sweet-a:frozen dessert:ice lolly, lolly, lollipop, popsicle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:screwdriver", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:pizza, pizza pie", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:safety belt-lif:seat belt, seatbelt", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:ringneck snake, ring-necked snake, ring snake", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:safety belt-lif:seat belt, seatbelt", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:backpack, back pack, knapsack, packsack, rucksack, haversack", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:safety belt-lif:seat belt, seatbelt", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:portable comput:hand-held computer, hand-held microcomputer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:safety belt-lif:seat belt, seatbelt", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:memory device-s:magnetic disk-m:hard disc, hard disk, fixed disk", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:safety belt-lif:seat belt, seatbelt", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:control-control:joystick", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:safety belt-lif:seat belt, seatbelt", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:photographic eq:camera-photogra:Polaroid camera, Polaroid Land camera", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:safety belt-lif:seat belt, seatbelt", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:safety belt-lif:seat belt, seatbelt", "oc": 42}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:safety belt-lif:seat belt, seatbelt", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:footwear:hosiery-hose:sock", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:safety belt-lif:seat belt, seatbelt", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:control-control:switch, electric switch, electrical switch", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:textile machine:sewing machine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:robe:abaya", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:textile machine:sewing machine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:barbershop", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:textile machine:sewing machine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:table:desk", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:textile machine:sewing machine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:office furnitur:file, file cabinet, filing cabinet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:textile machine:sewing machine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:blower:hand blower, blow dryer, blow drier, hair dryer, hair drier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:textile machine:sewing machine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:audio system-so:reproducer:stereo-stereoph:iPod", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:textile machine:sewing machine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:library", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:textile machine:sewing machine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:photographic eq:camera-photogra:Polaroid camera, Polaroid Land camera", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:textile machine:sewing machine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:projector", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:textile machine:sewing machine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:textile machine:sewing machine", "oc": 38}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:textile machine:sewing machine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:sleeping bag", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:textile machine:sewing machine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:toaster", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:armor-armour:shield, buckler", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:guitar:acoustic guitar", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:armor-armour:shield, buckler", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:altar", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:armor-armour:shield, buckler", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:beer bottle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:armor-armour:shield, buckler", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:top-cover:cap:bottlecap", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:armor-armour:shield, buckler", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:memorial-monume:brass, memorial tablet, plaque", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:armor-armour:shield, buckler", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shield:plate-scale-she:armor plate-arm:breastplate, aegis, egis", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:armor-armour:shield, buckler", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:ride:carousel, carrousel, merry-go-round, roundabout, whirligig", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:armor-armour:shield, buckler", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:coil, spiral, volute, whorl, helix", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:armor-armour:shield, buckler", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:drum, membranophone, tympan", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:armor-armour:shield, buckler", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:fountain", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:armor-armour:shield, buckler", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:gong, tam-tam", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:armor-armour:shield, buckler", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:navigational in:compass:magnetic compass", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:armor-armour:shield, buckler", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:top-cover:manhole cover", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:armor-armour:shield, buckler", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:sports implemen:racket, racquet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:armor-armour:shield, buckler", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:rugby ball", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:armor-armour:shield, buckler", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:sarong", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:armor-armour:shield, buckler", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:armor-armour:shield, buckler", "oc": 25}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:armor-armour:shield, buckler", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:mask:face mask:ski mask", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:armor-armour:shield, buckler", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:sundial", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:armor-armour:shield, buckler", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:spectacles-spec:sunglasses, dark glasses, shades", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:armor-armour:shield, buckler", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:receptacle:tray", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:armor-armour:shield, buckler", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:outerwear-overc:gown-robe:vestment", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:armor-armour:shield, buckler", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:clock:wall clock", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:shoe shop, shoe-shop, shoe store", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:poodle-poodle d:toy poodle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:shoe shop, shoe-shop, shoe store", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:calculator-calc:abacus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:shoe shop, shoe-shop, shoe store", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:barber chair", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:shoe shop, shoe-shop, shoe store", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:barbershop", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:shoe shop, shoe-shop, shoe store", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:ride:carousel, carrousel, merry-go-round, roundabout, whirligig", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:shoe shop, shoe-shop, shoe store", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:library", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:shoe shop, shoe-shop, shoe store", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:shoe:Loafer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:shoe shop, shoe-shop, shoe store", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:miniskirt, mini", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:shoe shop, shoe-shop, shoe store", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:restaurant, eating house, eating place, eatery", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:shoe shop, shoe-shop, shoe store", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:shoe:sandal", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:shoe shop, shoe-shop, shoe store", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:shoe shop, shoe-shop, shoe store", "oc": 39}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:shoe shop, shoe-shop, shoe store", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:spectacles-spec:sunglasses, dark glasses, shades", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:screen-cover-co:shoji", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:bannister, banister, balustrade, balusters, handrail", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:screen-cover-co:shoji", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:screen:fire screen, fireguard", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:screen-cover-co:shoji", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:coat:fur coat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:screen-cover-co:shoji", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:institution:penal instituti:correctional in:prison, prison house", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:screen-cover-co:shoji", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:rocking chair, rocker", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:screen-cover-co:shoji", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:screen-cover-co:shoji", "oc": 36}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:screen-cover-co:shoji", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:movable barrier:door:sliding door", "oc": 6}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:screen-cover-co:shoji", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:screen:window screen", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:basket-handbask:shopping basket", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:binder, ring-binder", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:basket-handbask:shopping basket", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:bonnet, poke bonnet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:basket-handbask:shopping basket", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:cleaning implem:broom", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:basket-handbask:shopping basket", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bucket, pail", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:basket-handbask:shopping basket", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:confectionery, confectionary, candy store", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:basket-handbask:shopping basket", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:floor cover-flo:mat:doormat, welcome mat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:basket-handbask:shopping basket", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:screen:fire screen, fireguard", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:basket-handbask:shopping basket", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:basket-handbask:hamper", "oc": 5}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:basket-handbask:shopping basket", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:pencil box, pencil case", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:basket-handbask:shopping basket", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:shoe shop, shoe-shop, shoe store", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:basket-handbask:shopping basket", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:basket-handbask:shopping basket", "oc": 27}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:basket-handbask:shopping basket", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:handcart-pushca:shopping cart", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:basket-handbask:shopping basket", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:roof:tile roof", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:basket-handbask:shopping basket", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:slot machine-co:vending machine", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:basket-handbask:shopping basket", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:citrus-citrus f:lemon", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:handcart-pushca:shopping cart", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:bookshop, bookstore, bookstall", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:handcart-pushca:shopping cart", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:screen:fire screen, fireguard", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:handcart-pushca:shopping cart", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:brass-brass ins:French horn, horn", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:handcart-pushca:shopping cart", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:basket-handbask:shopping basket", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:handcart-pushca:shopping cart", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:handcart-pushca:shopping cart", "oc": 41}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:handcart-pushca:shopping cart", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:chair of state:throne", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:handcart-pushca:shopping cart", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:tricycle, trike, velocipede", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:handcart-pushca:shopping cart", "at": "root:entity:physical entity:matter:substance:food-nutrient:fare:menu", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:handcart-pushca:shopping cart", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:dessert-sweet-a:frozen dessert:ice lolly, lolly, lollipop, popsicle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:shovel", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:dictyopterous i:cockroach, roach", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:shovel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:outerwear-overc:gown-robe:academic gown, academic robe, judge's robe", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:shovel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloth covering:dressing-medica:bandage-patch:adhesive bandag:Band Aid", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:shovel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:cleaning implem:broom", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:shovel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bucket, pail", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:shovel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:knife:cleaver, meat cleaver, chopper", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:shovel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:coil, spiral, volute, whorl, helix", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:shovel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:gear-parapherna:rig:drill rig-drill:drilling platform, offshore rig", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:shovel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:hammer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:shovel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:memorial-monume:megalith, megalithic structure", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:shovel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:miniskirt, mini", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:shovel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:shelter:tent-collapsibl:mountain tent", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:shovel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shield:plate-scale-she:armor plate-arm:helmet:pickelhaube", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:shovel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:van:police van, police wagon, paddy wagon, patrol wagon, wagon, black Maria", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:shovel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:writing impleme:pen:quill, quill pen", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:shovel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:shovel", "oc": 28}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:shovel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:runner:ski", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:shovel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:snowplow, snowplough", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:shovel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:cleaning implem:swab, swob, mop", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:shovel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:medical instrum:syringe", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:shovel", "at": "root:entity:abstraction-abs:communication:sign:street sign", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:shovel", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:mushroom", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:cap:shower cap", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:soft-finned fis:eel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:cap:shower cap", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:cap:bathing cap, swimming cap", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:cap:shower cap", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:bonnet, poke bonnet", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:cap:shower cap", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bucket, pail", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:cap:shower cap", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:footwear:hosiery-hose:stocking:Christmas stocking", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:cap:shower cap", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:diaper, nappy, napkin", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:cap:shower cap", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:hair spray", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:cap:shower cap", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:marimba, xylophone", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:cap:shower cap", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:sarong", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:cap:shower cap", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:cap:shower cap", "oc": 36}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:cap:shower cap", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:tub, vat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:blind-screen:curtain-drape-d:shower curtain", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:spider:wolf spider, hunting spider", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:blind-screen:curtain-drape-d:shower curtain", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:ganoid-ganoid f:gar, garfish, garpike, billfish, Lepisosteus osseus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:blind-screen:curtain-drape-d:shower curtain", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bin:ashcan, trash can, garbage can, wastebin, ash bin, ash-bin, ashbin, dustbin, trash barrel, trash bin", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:blind-screen:curtain-drape-d:shower curtain", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:backpack, back pack, knapsack, packsack, rucksack, haversack", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:blind-screen:curtain-drape-d:shower curtain", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:binder, ring-binder", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:blind-screen:curtain-drape-d:shower curtain", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:binoculars, field glasses, opera glasses", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:blind-screen:curtain-drape-d:shower curtain", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:birdhouse", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:blind-screen:curtain-drape-d:shower curtain", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloak", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:blind-screen:curtain-drape-d:shower curtain", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:bedroom furnitu:bed:four-poster", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:blind-screen:curtain-drape-d:shower curtain", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:hair spray", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:blind-screen:curtain-drape-d:shower curtain", "at": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:handkerchief, hankie, hanky, hankey", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:blind-screen:curtain-drape-d:shower curtain", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:screen:mosquito net", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:blind-screen:curtain-drape-d:shower curtain", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:nightwear-sleep:pajama, pyjama, pj's, jammies", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:blind-screen:curtain-drape-d:shower curtain", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:plastic bag", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:blind-screen:curtain-drape-d:shower curtain", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:cap:shower cap", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:blind-screen:curtain-drape-d:shower curtain", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:blind-screen:curtain-drape-d:shower curtain", "oc": 28}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:blind-screen:curtain-drape-d:shower curtain", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:wardrobe, closet, press", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:blind-screen:curtain-drape-d:shower curtain", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:basin:washbasin, handbasin, washbowl, lavabo, wash-hand basin", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:blind-screen:curtain-drape-d:shower curtain", "at": "root:entity:physical entity:matter:substance:food-nutrient:fare:menu", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:blind-screen:curtain-drape-d:shower curtain", "at": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:loaf of bread-l:French loaf", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:runner:ski", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:bookshop, bookstore, bookstall", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:runner:ski", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:sled-sledge-sle:dogsled, dog sled, dog sleigh", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:runner:ski", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:memorial-monume:megalith, megalithic structure", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:runner:ski", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:bicycle-bike-wh:mountain bike, all-terrain bike, off-roader", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:runner:ski", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:rotating mechan:circle-round:disk-disc:puck, hockey puck", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:runner:ski", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:sarong", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:runner:ski", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:shovel", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:runner:ski", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:runner:ski", "oc": 32}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:runner:ski", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:soccer ball", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:runner:ski", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:wardrobe, closet, press", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:runner:ski", "at": "root:entity:physical entity:object-physical:geological form:natural elevati:mountain-mount:alp", "oc": 7}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:mask:face mask:ski mask", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:robe:abaya", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:mask:face mask:ski mask", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:cap:bathing cap, swimming cap", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:mask:face mask:ski mask", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:footwear:hosiery-hose:stocking:Christmas stocking", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:mask:face mask:ski mask", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:helmet:crash helmet", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:mask:face mask:ski mask", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:mask:gasmask, respirator, gas helmet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:mask:face mask:ski mask", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:garden tool-law:lawn mower, mower", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:mask:face mask:ski mask", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:handwear-hand w:glove:mitten", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:mask:face mask:ski mask", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:plunger, plumber's helper", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:mask:face mask:ski mask", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:runner:ski", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:mask:face mask:ski mask", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:mask:face mask:ski mask", "oc": 36}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:mask:face mask:ski mask", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :tracked vehicle:snowmobile", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:sleeping bag", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:greyhound:Italian greyhound", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:sleeping bag", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:domestic cat-ho:Siamese cat, Siamese", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:sleeping bag", "at": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:bib", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:sleeping bag", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:footwear:hosiery-hose:stocking:Christmas stocking", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:sleeping bag", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:staff:crutch", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:sleeping bag", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:diaper, nappy, napkin", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:sleeping bag", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:free-reed instr:harmonica, mouth organ, harp, mouth harp", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:sleeping bag", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:shirt:jersey, T-shirt, tee shirt", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:sleeping bag", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:shelter:tent-collapsibl:mountain tent", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:sleeping bag", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:nightwear-sleep:pajama, pyjama, pj's, jammies", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:sleeping bag", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloth covering:bedclothes-bed :quilt, comforter, comfort, puff", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:sleeping bag", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:sleeping bag", "oc": 33}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:sleeping bag", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:scarf:stole", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:sleeping bag", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:cleaning implem:swab, swob, mop", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:sleeping bag", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:fungus:gyromitra", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:analog computer:slide rule, slipstick", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:bannister, banister, balustrade, balusters, handrail", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:analog computer:slide rule, slipstick", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:barometer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:analog computer:slide rule, slipstick", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:carton", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:analog computer:slide rule, slipstick", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:cassette", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:analog computer:slide rule, slipstick", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:envelope", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:analog computer:slide rule, slipstick", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:knot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:analog computer:slide rule, slipstick", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:table:pool table, billiard table, snooker table", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:analog computer:slide rule, slipstick", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:measuring stick:rule, ruler", "oc": 5}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:analog computer:slide rule, slipstick", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:sheath:scabbard", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:analog computer:slide rule, slipstick", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:analog computer:slide rule, slipstick", "oc": 33}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:analog computer:slide rule, slipstick", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:support:rack-stand:tripod", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:analog computer:slide rule, slipstick", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:case:wallet, billfold, notecase, pocketbook", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:analog computer:slide rule, slipstick", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:creation:product-product:work-piece of w:publication:magazine-mag:comic book", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:analog computer:slide rule, slipstick", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:game:puzzle:crossword puzzle, crossword", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:movable barrier:door:sliding door", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:bookcase", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:movable barrier:door:sliding door", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:cleaning implem:broom", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:movable barrier:door:sliding door", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:cabinet:china cabinet, china closet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:movable barrier:door:sliding door", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:coil, spiral, volute, whorl, helix", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:movable barrier:door:sliding door", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:crate", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:movable barrier:door:sliding door", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:staff:crutch", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:movable barrier:door:sliding door", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:bedroom furnitu:bed:four-poster", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:movable barrier:door:sliding door", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:instrument of e:guillotine", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:movable barrier:door:sliding door", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:limousine, limo", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:movable barrier:door:sliding door", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:public transpor:bus-autobus-coa:minibus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:movable barrier:door:sliding door", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:monitor", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:movable barrier:door:sliding door", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:area:patio, terrace", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:movable barrier:door:sliding door", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:telephone-phone:pay-phone, pay-station", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:movable barrier:door:sliding door", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :recreational vehicle, RV, R.V.", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:movable barrier:door:sliding door", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:screen-cover-co:shoji", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:movable barrier:door:sliding door", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:movable barrier:door:sliding door", "oc": 20}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:movable barrier:door:sliding door", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:reflector:solar dish, solar collector, solar furnace", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:movable barrier:door:sliding door", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:sofa-couch-loun:convertible-sof:studio couch, day bed", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:movable barrier:door:sliding door", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:support:rack-stand:tripod", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:movable barrier:door:sliding door", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:public transpor:bus-autobus-coa:trolleybus, trolley coach, trackless trolley", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:movable barrier:door:sliding door", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:movable barrier:gate:turnstile", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:movable barrier:door:sliding door", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:wardrobe, closet, press", "oc": 5}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:slot machine-co:slot, one-armed bandit", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:keyboard instru:accordion, piano accordion, squeeze box", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:slot machine-co:slot, one-armed bandit", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:shoe shop, shoe-shop, shoe store", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:slot machine-co:slot, one-armed bandit", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:slot machine-co:slot, one-armed bandit", "oc": 46}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:slot machine-co:slot, one-armed bandit", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:tobacco shop, tobacconist shop, tobacconist", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:slot machine-co:slot, one-armed bandit", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:slot machine-co:vending machine", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:breathing devic:snorkel", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:sea turtle-mari:loggerhead, loggerhead turtle, Caretta caretta", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:breathing devic:snorkel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:swimsuit-swimwe:bikini, two-piece", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:breathing devic:snorkel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:mask:gasmask, respirator, gas helmet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:breathing devic:snorkel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:breathing devic:snorkel", "oc": 44}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:breathing devic:snorkel", "at": "root:entity:physical entity:object-physical:geological form:natural elevati:ridge:reef:coral reef", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:breathing devic:snorkel", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:person-individu:explorer-advent:diver-frogman-u:scuba diver", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :tracked vehicle:snowmobile", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:rescue equipmen:parachute, chute", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :tracked vehicle:snowmobile", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :tracked vehicle:snowmobile", "oc": 47}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :tracked vehicle:snowmobile", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:snowplow, snowplough", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:snowplow, snowplough", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :forklift", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:snowplow, snowplough", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:garbage truck, dustcart", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:snowplow, snowplough", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:jeep, landrover", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:snowplow, snowplough", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:motor scooter, scooter", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:snowplow, snowplough", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:shovel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:snowplow, snowplough", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:snowplow, snowplough", "oc": 44}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:snowplow, snowplough", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:boat:motorboat-power:speedboat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dispenser:soap dispenser", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bin:ashcan, trash can, garbage can, wastebin, ash bin, ash-bin, ashbin, dustbin, trash barrel, trash bin", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dispenser:soap dispenser", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:writing impleme:pen:ballpoint, ballpoint pen, ballpen, Biro", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dispenser:soap dispenser", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:jar:beaker", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dispenser:soap dispenser", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:candle, taper, wax light", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dispenser:soap dispenser", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:shaker:cocktail shaker", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dispenser:soap dispenser", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cosmetic:makeup-make-up-:face powder", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dispenser:soap dispenser", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:pump:gas pump, gasoline pump, petrol pump, island dispenser", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dispenser:soap dispenser", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:audio system-so:reproducer:stereo-stereoph:iPod", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dispenser:soap dispenser", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:cabinet:medicine chest, medicine cabinet", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dispenser:soap dispenser", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:mortar", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dispenser:soap dispenser", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:perfume, essence", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dispenser:soap dispenser", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:shaker:saltshaker, salt shaker", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dispenser:soap dispenser", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:blind-screen:curtain-drape-d:shower curtain", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dispenser:soap dispenser", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dispenser:soap dispenser", "oc": 23}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dispenser:soap dispenser", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:control-control:switch, electric switch, electrical switch", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dispenser:soap dispenser", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:jar:vase", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dispenser:soap dispenser", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:basin:washbasin, handbasin, washbowl, lavabo, wash-hand basin", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dispenser:soap dispenser", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:water bottle", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dispenser:soap dispenser", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:jug:water jug", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:soccer ball", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:West Highland white terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:soccer ball", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:clock:analog clock", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:soccer ball", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:helmet:crash helmet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:soccer ball", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:diaper, nappy, napkin", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:soccer ball", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:mask", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:soccer ball", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:rugby ball", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:soccer ball", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:soccer ball", "oc": 43}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:soccer ball", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:tennis ball", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:footwear:hosiery-hose:sock", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:swimsuit-swimwe:bikini, two-piece", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:footwear:hosiery-hose:sock", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:cleaning implem:broom", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:footwear:hosiery-hose:sock", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:footwear:hosiery-hose:stocking:Christmas stocking", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:footwear:hosiery-hose:sock", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:diaper, nappy, napkin", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:footwear:hosiery-hose:sock", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:gymnastic appar:horizontal bar, high bar", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:footwear:hosiery-hose:sock", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shade:lampshade, lamp shade", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:footwear:hosiery-hose:sock", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:shoe:Loafer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:footwear:hosiery-hose:sock", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:mailbox, letter box", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:footwear:hosiery-hose:sock", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:miniskirt, mini", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:footwear:hosiery-hose:sock", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:nightwear-sleep:pajama, pyjama, pj's, jammies", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:footwear:hosiery-hose:sock", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:padding-cushion:cushion:pillow", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:footwear:hosiery-hose:sock", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:shoe:sandal", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:footwear:hosiery-hose:sock", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:safety belt-lif:seat belt, seatbelt", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:footwear:hosiery-hose:sock", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:footwear:hosiery-hose:sock", "oc": 32}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:footwear:hosiery-hose:sock", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:canopy:umbrella", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:footwear:hosiery-hose:sock", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:wrapping-wrap-w:jacket:book jacket, dust cover, dust jacket, dust wrapper", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:footwear:hosiery-hose:sock", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:cruciferous veg:cabbage-chou:head cabbage", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:reflector:solar dish, solar collector, solar furnace", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:sled-sledge-sle:bobsled, bobsleigh, bob", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:reflector:solar dish, solar collector, solar furnace", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bucket, pail", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:reflector:solar dish, solar collector, solar furnace", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:lifting device:crane", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:reflector:solar dish, solar collector, solar furnace", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:fan:electric fan, blower", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:reflector:solar dish, solar collector, solar furnace", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:envelope", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:reflector:solar dish, solar collector, solar furnace", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shade:lampshade, lamp shade", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:reflector:solar dish, solar collector, solar furnace", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:garden tool-law:lawn mower, mower", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:reflector:solar dish, solar collector, solar furnace", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:portable comput:notebook, notebook computer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:reflector:solar dish, solar collector, solar furnace", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:institution:penal instituti:correctional in:prison, prison house", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:reflector:solar dish, solar collector, solar furnace", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:scientific inst:magnifier:telescope-scope:astronomical te:radio telescope, radio reflector", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:reflector:solar dish, solar collector, solar furnace", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:sailing vessel-:schooner", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:reflector:solar dish, solar collector, solar furnace", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:reflector:solar dish, solar collector, solar furnace", "oc": 36}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:reflector:solar dish, solar collector, solar furnace", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:bridge-span:suspension bridge", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:reflector:solar dish, solar collector, solar furnace", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:roof:tile roof", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:sombrero", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:finch:goldfinch, Carduelis carduelis", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:sombrero", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:bakery, bakeshop, bakehouse", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:sombrero", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:swimsuit-swimwe:bikini, two-piece", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:sombrero", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:confectionery, confectionary, candy store", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:sombrero", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:cowboy hat, ten-gallon hat", "oc": 8}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:sombrero", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:scarf:feather boa, boa", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:sombrero", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:flute, transverse flute", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:sombrero", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:basket-handbask:hamper", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:sombrero", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:plunger, plumber's helper", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:sombrero", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:shaker:saltshaker, salt shaker", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:sombrero", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:sombrero", "oc": 30}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:sombrero", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:canopy:umbrella", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:sombrero", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:banana", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dish:bowl:soup bowl", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cosmetic:makeup-make-up-:face powder", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dish:bowl:soup bowl", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pan-cooking pan:frying pan, frypan, skillet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dish:bowl:soup bowl", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:ladle", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dish:bowl:soup bowl", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dish:bowl:mixing bowl", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dish:bowl:soup bowl", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dish:bowl:soup bowl", "oc": 28}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dish:bowl:soup bowl", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:receptacle:tray", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dish:bowl:soup bowl", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pan-cooking pan:wok", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dish:bowl:soup bowl", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:soup:consomme", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dish:bowl:soup bowl", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:stew:hot pot, hotpot", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dish:bowl:soup bowl", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:dessert-sweet-a:pudding-pud:trifle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dish:bowl:soup bowl", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:cruciferous veg:broccoli", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dish:bowl:soup bowl", "at": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :ingredient-fixi:flavorer-flavou:condiment:sauce:spaghetti sauce:carbonara", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dish:bowl:soup bowl", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:potpie", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dish:bowl:soup bowl", "at": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:mixed drink:punch:cup", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dish:bowl:soup bowl", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:seed:grain-caryopsis:kernel:corn", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:bar:lever:key:space bar", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:keyboard:computer keyboard, keypad", "oc": 8}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:bar:lever:key:space bar", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:table:desk", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:bar:lever:key:space bar", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:desktop computer", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:bar:lever:key:space bar", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:portable comput:hand-held computer, hand-held microcomputer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:bar:lever:key:space bar", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:portable comput:notebook, notebook computer", "oc": 7}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:bar:lever:key:space bar", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:bar:lever:key:space bar", "oc": 27}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:bar:lever:key:space bar", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:keyboard:typewriter keyboard", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:heater-warmer:space heater", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:hermit crab", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:heater-warmer:space heater", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Boston bull, Boston terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:heater-warmer:space heater", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :pinscher:miniature pinscher", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:heater-warmer:space heater", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:domestic cat-ho:tabby, tabby cat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:heater-warmer:space heater", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:keyboard instru:accordion, piano accordion, squeeze box", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:heater-warmer:space heater", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:telephone-phone:radiotelephone-:cellular telephone, cellular phone, cellphone, cell, mobile phone", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:heater-warmer:space heater", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:clock:digital clock", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:heater-warmer:space heater", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:fan:electric fan, blower", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:heater-warmer:space heater", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:bedroom furnitu:bed:four-poster", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:heater-warmer:space heater", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electrical devi:transducer:electro-acousti:loudspeaker, speaker, speaker unit, loudspeaker system, speaker system", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:heater-warmer:space heater", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:microwave, microwave oven", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:heater-warmer:space heater", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:modem", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:heater-warmer:space heater", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:nightwear-sleep:pajama, pyjama, pj's, jammies", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:heater-warmer:space heater", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:photographic eq:camera-photogra:Polaroid camera, Polaroid Land camera", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:heater-warmer:space heater", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:projector", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:heater-warmer:space heater", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:radiator", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:heater-warmer:space heater", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:white goods:refrigerator, icebox", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:heater-warmer:space heater", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:shoe:running shoe", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:heater-warmer:space heater", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:strongbox-deedb:safe", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:heater-warmer:space heater", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:heater-warmer:space heater", "oc": 28}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:heater-warmer:space heater", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:heater-warmer:stove", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:heater-warmer:space heater", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:vacuum, vacuum cleaner", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:heater-warmer:space heater", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:clock:wall clock", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:spacecraft-ball:space shuttle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:aircraft:heavier-than-ai:airplane-aeropl:airliner", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:spacecraft-ball:space shuttle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:aircraft:lighter-than-ai:airship, dirigible", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:spacecraft-ball:space shuttle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:gear-parapherna:rig:drill rig-drill:drilling platform, offshore rig", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:spacecraft-ball:space shuttle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:rocket-projecti:missile", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:spacecraft-ball:space shuttle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:spacecraft-ball:space shuttle", "oc": 44}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:spacecraft-ball:space shuttle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:aircraft:heavier-than-ai:warplane, military plane", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:turner-food tur:spatula", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:malacostracan c:isopod", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:turner-food tur:spatula", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:robe:abaya", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:turner-food tur:spatula", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:bakery, bakeshop, bakehouse", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:turner-food tur:spatula", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:knife:cleaver, meat cleaver, chopper", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:turner-food tur:spatula", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:white goods:dishwasher, dish washer, dishwashing machine", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:turner-food tur:spatula", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pan-cooking pan:frying pan, frypan, skillet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:turner-food tur:spatula", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:gong, tam-tam", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:turner-food tur:spatula", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:basket-handbask:hamper", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:turner-food tur:spatula", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:audio system-so:reproducer:stereo-stereoph:iPod", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:turner-food tur:spatula", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:ladle", "oc": 5}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:turner-food tur:spatula", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:knife:letter opener, paper knife, paperknife", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:turner-food tur:spatula", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:lighter, light, igniter, ignitor", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:turner-food tur:spatula", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:lotion", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:turner-food tur:spatula", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:maraca", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:turner-food tur:spatula", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:matchstick", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:turner-food tur:spatula", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:nightwear-sleep:pajama, pyjama, pj's, jammies", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:turner-food tur:spatula", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:plunger, plumber's helper", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:turner-food tur:spatula", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:shoe:sandal", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:turner-food tur:spatula", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:screwdriver", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:turner-food tur:spatula", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:turner-food tur:spatula", "oc": 10}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:turner-food tur:spatula", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:medical instrum:stethoscope", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:turner-food tur:spatula", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:swing", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:turner-food tur:spatula", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:toilet seat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:turner-food tur:spatula", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:receptacle:tray", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:turner-food tur:spatula", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:wardrobe, closet, press", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:turner-food tur:spatula", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pan-cooking pan:wok", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:turner-food tur:spatula", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:article:ware:tableware:cutlery-eating :spoon:wooden spoon", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:turner-food tur:spatula", "at": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :ingredient-fixi:flavorer-flavou:condiment:dip:guacamole", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:turner-food tur:spatula", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:dessert-sweet-a:frozen dessert:ice cream, icecream", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:turner-food tur:spatula", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:snack food:sandwich:hotdog, hot dog, red hot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:turner-food tur:spatula", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:banana", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:turner-food tur:spatula", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:custard apple", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:turner-food tur:spatula", "at": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :ingredient-fixi:flavorer-flavou:condiment:sauce:chocolate sauce, chocolate syrup", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:boat:motorboat-power:speedboat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:boat:sea boat:lifeboat", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:boat:motorboat-power:speedboat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:boat:motorboat-power:speedboat", "oc": 44}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:boat:motorboat-power:speedboat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:warship-war ves:submersible-sub:submarine, pigboat, sub, U-boat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:boat:motorboat-power:speedboat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:sailing vessel-:sailboat-sailin:trimaran", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:boat:motorboat-power:speedboat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:airfoil-aerofoi:wing", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:boat:motorboat-power:speedboat", "at": "root:entity:physical entity:object-physical:geological form:natural elevati:promontory, headland, head, foreland", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:trap:web-entanglemen:spider web, spider's web", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:crocodilian rep:alligator-gator:American alligator, Alligator mississipiensis", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:trap:web-entanglemen:spider web, spider's web", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:spider:black and gold garden spider, Argiope aurantia", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:trap:web-entanglemen:spider web, spider's web", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:spider:barn spider, Araneus cavaticus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:trap:web-entanglemen:spider web, spider's web", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:spider:garden spider, Aranea diademata", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:trap:web-entanglemen:spider web, spider's web", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:spider:wolf spider, hunting spider", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:trap:web-entanglemen:spider web, spider's web", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:echinoderm:sea cucumber, holothurian", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:trap:web-entanglemen:spider web, spider's web", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:greenhouse, nursery, glasshouse", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:trap:web-entanglemen:spider web, spider's web", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:shaker:saltshaker, salt shaker", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:trap:web-entanglemen:spider web, spider's web", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:trap:web-entanglemen:spider web, spider's web", "oc": 35}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:trap:web-entanglemen:spider web, spider's web", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:bridge-span:suspension bridge", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:trap:web-entanglemen:spider web, spider's web", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:screen:window screen", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:trap:web-entanglemen:spider web, spider's web", "at": "root:entity:physical entity:object-physical:geological form:natural depress:valley, vale", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:spindle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:gong, tam-tam", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:spindle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:hammer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:spindle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:maraca", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:spindle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:mortar", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:spindle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:nail", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:spindle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:spindle", "oc": 37}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:spindle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:canopy:umbrella", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:spindle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:article:ware:tableware:cutlery-eating :spoon:wooden spoon", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:spindle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:fabric-cloth-ma:wool, woolen, woollen", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:sports car, sport car", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:ambulance", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:sports car, sport car", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:beach wagon, station wagon, wagon, estate car, beach waggon, station waggon, waggon", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:sports car, sport car", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:convertible", "oc": 7}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:sports car, sport car", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:go-kart", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:sports car, sport car", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:van:passenger van:minivan", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:sports car, sport car", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:Model T", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:sports car, sport car", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:racer, race car, racing car", "oc": 11}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:sports car, sport car", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:sports car, sport car", "oc": 26}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:spotlight, spot", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:worm:nematode, nematode worm, roundworm", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:spotlight, spot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:cab, hack, taxi, taxicab", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:spotlight, spot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:candle, taper, wax light", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:spotlight, spot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:reflector:mirror:car mirror", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:spotlight, spot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:crate", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:spotlight, spot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:watch-ticker:digital watch", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:spotlight, spot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:guitar:electric guitar", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:spotlight, spot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:glass-drinking :goblet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:spotlight, spot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:piano-pianofort:grand piano, grand", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:spotlight, spot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:memory device-s:magnetic disk-m:hard disc, hard disk, fixed disk", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:spotlight, spot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shade:lampshade, lamp shade", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:spotlight, spot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electronic devi:mouse, computer mouse", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:spotlight, spot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:filter:oil filter", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:spotlight, spot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:plastic bag", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:spotlight, spot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:scientific inst:magnifier:telescope-scope:astronomical te:radio telescope, radio reflector", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:spotlight, spot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:strongbox-deedb:safe", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:spotlight, spot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:screw", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:spotlight, spot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:safety belt-lif:seat belt, seatbelt", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:spotlight, spot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:reflector:solar dish, solar collector, solar furnace", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:spotlight, spot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:heater-warmer:space heater", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:spotlight, spot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:spotlight, spot", "oc": 12}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:spotlight, spot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:surface:horizontal surf:platform:stage", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:spotlight, spot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:lamp:table lamp", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:spotlight, spot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:movable barrier:gate:turnstile", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:spotlight, spot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:keyboard:typewriter keyboard", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:spotlight, spot", "at": "root:entity:abstraction-abs:communication:signal-signalin:visual signal:light:traffic light, traffic signal, stoplight", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:spotlight, spot", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:cruciferous veg:broccoli", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:spotlight, spot", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:pomegranate", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:spotlight, spot", "at": "root:entity:abstraction-abs:attribute:shape-form:round shape:sphere:ball-globe-orb:globule:bubble", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:spotlight, spot", "at": "root:entity:physical entity:object-physical:geological form:natural elevati:mountain-mount:volcano", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:spotlight, spot", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:person-individu:peer-equal-matc:associate:participant:groom, bridegroom", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:surface:horizontal surf:platform:stage", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:gymnastic appar:balance beam, beam", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:surface:horizontal surf:platform:stage", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:ride:carousel, carrousel, merry-go-round, roundabout, whirligig", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:surface:horizontal surf:platform:stage", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:staff:crutch", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:surface:horizontal surf:platform:stage", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:drumstick", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:surface:horizontal surf:platform:stage", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:blower:hand blower, blow dryer, blow drier, hair dryer, hair drier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:surface:horizontal surf:platform:stage", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:theater-theatre:home theater, home theatre", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:surface:horizontal surf:platform:stage", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:pirate, pirate ship", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:surface:horizontal surf:platform:stage", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:projector", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:surface:horizontal surf:platform:stage", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:spotlight, spot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:surface:horizontal surf:platform:stage", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:surface:horizontal surf:platform:stage", "oc": 34}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:surface:horizontal surf:platform:stage", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:bridge-span:suspension bridge", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:surface:horizontal surf:platform:stage", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :armored vehicle:tank, army tank, armored combat vehicle, armoured combat vehicle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:surface:horizontal surf:platform:stage", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:blind-screen:curtain-drape-d:theater curtain, theatre curtain", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:surface:horizontal surf:platform:stage", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:unicycle, monocycle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:surface:horizontal surf:platform:stage", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:roof:vault", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :locomotive-engi:steam locomotive", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :locomotive-engi:steam locomotive", "oc": 48}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :locomotive-engi:steam locomotive", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:trailer truck, tractor trailer, trucking rig, rig, articulated lorry, semi", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :locomotive-engi:steam locomotive", "at": "root:entity:physical entity:object-physical:geological form:spring-fountain:geyser", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:bridge-span:steel arch bridge", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:fountain", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:bridge-span:steel arch bridge", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:greenhouse, nursery, glasshouse", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:bridge-span:steel arch bridge", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:bridge-span:steel arch bridge", "oc": 46}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:bridge-span:steel arch bridge", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:sailing vessel-:sailboat-sailin:trimaran", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:bridge-span:steel arch bridge", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:blind-screen:window blind:window shade", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:steel drum", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:barrel, cask", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:steel drum", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:guitar:electric guitar", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:steel drum", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:coat:lab coat, laboratory coat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:steel drum", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:footwear:hosiery-hose:tights-leotards:maillot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:steel drum", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:marimba, xylophone", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:steel drum", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:shoe shop, shoe-shop, shoe store", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:steel drum", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:steel drum", "oc": 40}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:steel drum", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:warship-war ves:submersible-sub:submarine, pigboat, sub, U-boat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:steel drum", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cream-ointment-:sunscreen, sunblock, sun blocker", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:steel drum", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:article:ware:tableware:cutlery-eating :spoon:wooden spoon", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:steel drum", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:seed:grain-caryopsis:kernel:corn", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:medical instrum:stethoscope", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:Maltese dog, Maltese terrier, Maltese", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:medical instrum:stethoscope", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:clock:analog clock", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:medical instrum:stethoscope", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:cap:bathing cap, swimming cap", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:medical instrum:stethoscope", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:carton", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:medical instrum:stethoscope", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:diaper, nappy, napkin", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:medical instrum:stethoscope", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:hair spray", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:medical instrum:stethoscope", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:hook, claw", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:medical instrum:stethoscope", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:shirt:jersey, T-shirt, tee shirt", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:medical instrum:stethoscope", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:robe:kimono", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:medical instrum:stethoscope", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:coat:lab coat, laboratory coat", "oc": 7}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:medical instrum:stethoscope", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:mailbag, postbag", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:medical instrum:stethoscope", "at": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:towel:paper towel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:medical instrum:stethoscope", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:apparatus-setup:duplicator-copi:photocopier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:medical instrum:stethoscope", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:rocking chair, rocker", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:medical instrum:stethoscope", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:pin:safety pin", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:medical instrum:stethoscope", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:sleeping bag", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:medical instrum:stethoscope", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dish:bowl:soup bowl", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:medical instrum:stethoscope", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:medical instrum:stethoscope", "oc": 24}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:medical instrum:stethoscope", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:litter:stretcher", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:medical instrum:stethoscope", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:neckwear:necktie-tie:Windsor tie", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:medical instrum:stethoscope", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:person-individu:peer-equal-matc:associate:participant:groom, bridegroom", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:scarf:stole", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:bearskin, busby, shako", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:scarf:stole", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:bonnet, poke bonnet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:scarf:stole", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:sweater-jumper:cardigan", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:scarf:stole", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:armor-armour:body armor-body:chain mail, ring mail, mail, chain armor, chain armour, ring armor, ring armour", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:scarf:stole", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:footwear:hosiery-hose:stocking:Christmas stocking", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:scarf:stole", "at": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:dishrag, dishcloth", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:scarf:stole", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:scarf:feather boa, boa", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:scarf:stole", "at": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:handkerchief, hankie, hanky, hankey", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:scarf:stole", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:handwear-hand w:glove:mitten", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:scarf:stole", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:cloak:poncho", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:scarf:stole", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:floor cover-flo:rug-carpet-carp:prayer rug, prayer mat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:scarf:stole", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:blind-screen:curtain-drape-d:shower curtain", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:scarf:stole", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:spindle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:scarf:stole", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:scarf:stole", "oc": 24}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:scarf:stole", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:suit, suit of clothes", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:scarf:stole", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:fabric-cloth-ma:velvet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:scarf:stole", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:screen:window screen", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:scarf:stole", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:fabric-cloth-ma:wool, woolen, woollen", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:scarf:stole", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:ear, spike, capitulum", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:stone wall", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:bell cote, bell cot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:stone wall", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:defensive struc:fortification-m:castle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:stone wall", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:theater-theatre:cinema, movie theater, movie theatre, movie house, picture palace", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:stone wall", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:housing-lodging:dwelling-home-d:cliff dwelling", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:stone wall", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:crate", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:stone wall", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:mailbox, letter box", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:stone wall", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:institution:penal instituti:correctional in:prison, prison house", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:stone wall", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:stone wall", "oc": 39}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:stone wall", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:roof:thatch, thatched roof", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:stone wall", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:artichoke, globe artichoke", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:stone wall", "at": "root:entity:physical entity:object-physical:geological form:cliff, drop, drop-off", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:stone wall", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:fungus:bolete", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:timer:stopwatch, stop watch", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:clock:analog clock", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:timer:stopwatch, stop watch", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:clock:digital clock", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:timer:stopwatch, stop watch", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:watch-ticker:digital watch", "oc": 9}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:timer:stopwatch, stop watch", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:scarf:feather boa, boa", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:timer:stopwatch, stop watch", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:writing impleme:pen:fountain pen", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:timer:stopwatch, stop watch", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:audio system-so:reproducer:stereo-stereoph:iPod", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:timer:stopwatch, stop watch", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:navigational in:compass:magnetic compass", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:timer:stopwatch, stop watch", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:measure:measuring cup", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:timer:stopwatch, stop watch", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electronic devi:mouse, computer mouse", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:timer:stopwatch, stop watch", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:decoration-orna:adornment:jewelry-jewelle:necklace", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:timer:stopwatch, stop watch", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:meter:odometer, hodometer, mileometer, milometer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:timer:stopwatch, stop watch", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:scale, weighing machine", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:timer:stopwatch, stop watch", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:timer:stopwatch, stop watch", "oc": 26}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:timer:stopwatch, stop watch", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:clock:wall clock", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:timer:stopwatch, stop watch", "at": "root:entity:abstraction-abs:attribute:shape-form:round shape:sphere:ball-globe-orb:globule:bubble", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:heater-warmer:stove", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:barber chair", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:heater-warmer:stove", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:barbershop", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:heater-warmer:stove", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pot:caldron, cauldron", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:heater-warmer:stove", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:cash machine, cash dispenser, automated teller machine, automatic teller machine, automated teller, automatic teller, ATM", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:heater-warmer:stove", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:cassette", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:heater-warmer:stove", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pot:coffeepot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:heater-warmer:stove", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:white goods:dishwasher, dish washer, dishwashing machine", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:heater-warmer:stove", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:oven:Dutch oven", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:heater-warmer:stove", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:fan:electric fan, blower", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:heater-warmer:stove", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:lantern:jack-o'-lantern", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:heater-warmer:stove", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:lighter, light, igniter, ignitor", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:heater-warmer:stove", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:microwave, microwave oven", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:heater-warmer:stove", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:can-tin-tin can:milk can", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:heater-warmer:stove", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:strongbox-deedb:safe", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:heater-warmer:stove", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:scale, weighing machine", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:heater-warmer:stove", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:slot machine-co:slot, one-armed bandit", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:heater-warmer:stove", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:heater-warmer:stove", "oc": 23}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:heater-warmer:stove", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:control-control:switch, electric switch, electrical switch", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:heater-warmer:stove", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:light-light sou:torch", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:heater-warmer:stove", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:white goods:washer, automatic washer, washing machine", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:heater-warmer:stove", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:article:ware:tableware:cutlery-eating :spoon:wooden spoon", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:heater-warmer:stove", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:stew:hot pot, hotpot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:heater-warmer:stove", "at": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:wine-vino:red wine", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:heater-warmer:stove", "at": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:mixed drink:punch:cup", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:heater-warmer:stove", "at": "root:entity:physical entity:object-physical:geological form:natural elevati:ridge:reef:coral reef", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:filter:strainer", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:trilobite", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:filter:strainer", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:worm:flatworm, platyhelminth", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:filter:strainer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:bonnet, poke bonnet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:filter:strainer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pot:caldron, cauldron", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:filter:strainer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:shaker:cocktail shaker", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:filter:strainer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:opener:bottle opener:corkscrew, bottle screw", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:filter:strainer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:supporting stru:framework:honeycomb", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:filter:strainer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:ladle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:filter:strainer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:scientific inst:magnifier:microscope:light microscop:hand glass-simp:loupe, jeweler's loupe", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:filter:strainer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:top-cover:manhole cover", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:filter:strainer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electrical devi:transducer:electro-acousti:microphone, mike", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:filter:strainer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dish:bowl:mixing bowl", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:filter:strainer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:restaurant, eating house, eating place, eatery", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:filter:strainer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:reflector:solar dish, solar collector, solar furnace", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:filter:strainer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:filter:strainer", "oc": 28}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:filter:strainer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pot:teapot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:filter:strainer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:cap:thimble", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:filter:strainer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:receptacle:tray", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:filter:strainer", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:screen:window screen", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:filter:strainer", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:cucumber, cuke", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:filter:strainer", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:custard apple", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:filter:strainer", "at": "root:entity:physical entity:matter:substance:food-nutrient:beverage-drink-:coffee-java:espresso", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:filter:strainer", "at": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:mixed drink:punch:cup", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :streetcar, tram, tramcar, trolley, trolley car", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:bicycle-bike-wh:bicycle-built-for-two, tandem bicycle, tandem", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :streetcar, tram, tramcar, trolley, trolley car", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:power tool:power saw-saw-s:chain saw, chainsaw", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :streetcar, tram, tramcar, trolley, trolley car", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:lifting device:crane", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :streetcar, tram, tramcar, trolley, trolley car", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :locomotive-engi:electric locomotive", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :streetcar, tram, tramcar, trolley, trolley car", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:garbage truck, dustcart", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :streetcar, tram, tramcar, trolley, trolley car", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :streetcar, tram, tramcar, trolley, trolley car", "oc": 41}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :streetcar, tram, tramcar, trolley, trolley car", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:public transpor:bus-autobus-coa:trolleybus, trolley coach, trackless trolley", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :streetcar, tram, tramcar, trolley, trolley car", "at": "root:entity:abstraction-abs:communication:signal-signalin:visual signal:light:traffic light, traffic signal, stoplight", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:litter:stretcher", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:ape:anthropoid ape:great ape-pongi:chimpanzee, chimp, Pan troglodytes", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:litter:stretcher", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:outbuilding:shed:apiary, bee house", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:litter:stretcher", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:handcart-pushca:barrow, garden cart, lawn cart, wheelbarrow", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:litter:stretcher", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:bicycle-bike-wh:bicycle-built-for-two, tandem bicycle, tandem", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:litter:stretcher", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:cleaning implem:broom", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:litter:stretcher", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:power tool:power saw-saw-s:chain saw, chainsaw", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:litter:stretcher", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:croquet ball", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:litter:stretcher", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:sled-sledge-sle:dogsled, dog sled, dog sleigh", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:litter:stretcher", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:ax-axe:hatchet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:litter:stretcher", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:wagon-waggon:cart:horse cart, horse-cart", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:litter:stretcher", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:wagon-waggon:cart:jinrikisha, ricksha, rickshaw", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:litter:stretcher", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:boat:sea boat:lifeboat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:litter:stretcher", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:support:structural memb:upright-vertica:post:maypole", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:litter:stretcher", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:uniform:military uniform", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:litter:stretcher", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:plane, carpenter's plane, woodworking plane", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:litter:stretcher", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:rugby ball", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:litter:stretcher", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:shoe shop, shoe-shop, shoe store", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:litter:stretcher", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :tracked vehicle:snowmobile", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:litter:stretcher", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:soccer ball", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:litter:stretcher", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:surface:horizontal surf:platform:stage", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:litter:stretcher", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:litter:stretcher", "oc": 27}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:litter:stretcher", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:web site, website, internet site, site", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:litter:stretcher", "at": "root:entity:abstraction-abs:attribute:shape-form:round shape:sphere:ball-globe-orb:globule:bubble", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:litter:stretcher", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:person-individu:contestant:player-particip:ballplayer, baseball player", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:sofa-couch-loun:convertible-sof:studio couch, day bed", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:bookcase", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:sofa-couch-loun:convertible-sof:studio couch, day bed", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:bedroom furnitu:bed:four-poster", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:sofa-couch-loun:convertible-sof:studio couch, day bed", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:theater-theatre:home theater, home theatre", "oc": 5}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:sofa-couch-loun:convertible-sof:studio couch, day bed", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:padding-cushion:cushion:pillow", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:sofa-couch-loun:convertible-sof:studio couch, day bed", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloth covering:bedclothes-bed :quilt, comforter, comfort, puff", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:sofa-couch-loun:convertible-sof:studio couch, day bed", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:sleeping bag", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:sofa-couch-loun:convertible-sof:studio couch, day bed", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:sofa-couch-loun:convertible-sof:studio couch, day bed", "oc": 37}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:place of worshi:shrine:stupa, tope", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:altar", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:place of worshi:shrine:stupa, tope", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:bell cote, bell cot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:place of worshi:shrine:stupa, tope", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:defensive struc:fortification-m:castle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:place of worshi:shrine:stupa, tope", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:house:residence:religious resid:monastery", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:place of worshi:shrine:stupa, tope", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:place of worshi:shrine:stupa, tope", "oc": 43}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:place of worshi:shrine:stupa, tope", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:column-pillar:totem pole", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:place of worshi:shrine:stupa, tope", "at": "root:entity:physical entity:object-physical:geological form:natural elevati:mountain-mount:alp", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:place of worshi:shrine:stupa, tope", "at": "root:entity:physical entity:object-physical:geological form:natural elevati:mountain-mount:volcano", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:warship-war ves:submersible-sub:submarine, pigboat, sub, U-boat", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:cartilaginous f:elasmobranch-se:shark:mackerel shark:great white shark, white shark, man-eater, man-eating shark, Carcharodon carcharias", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:warship-war ves:submersible-sub:submarine, pigboat, sub, U-boat", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:aquatic mammal:cetacean-cetace:whale:baleen whale-wh:grey whale, gray whale, devilfish, Eschrichtius gibbosus, Eschrichtius robustus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:warship-war ves:submersible-sub:submarine, pigboat, sub, U-boat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:warship-war ves:aircraft carrier, carrier, flattop, attack aircraft carrier", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:warship-war ves:submersible-sub:submarine, pigboat, sub, U-boat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:amphibian, amphibious vehicle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:warship-war ves:submersible-sub:submarine, pigboat, sub, U-boat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:landing-landing:dock, dockage, docking facility", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:warship-war ves:submersible-sub:submarine, pigboat, sub, U-boat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:boat:fireboat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:warship-war ves:submersible-sub:submarine, pigboat, sub, U-boat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:free-reed instr:harmonica, mouth organ, harp, mouth harp", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:warship-war ves:submersible-sub:submarine, pigboat, sub, U-boat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:boat:motorboat-power:speedboat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:warship-war ves:submersible-sub:submarine, pigboat, sub, U-boat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:warship-war ves:submersible-sub:submarine, pigboat, sub, U-boat", "oc": 34}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:warship-war ves:submersible-sub:submarine, pigboat, sub, U-boat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :armored vehicle:tank, army tank, armored combat vehicle, armoured combat vehicle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:warship-war ves:submersible-sub:submarine, pigboat, sub, U-boat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:aircraft:heavier-than-ai:warplane, military plane", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:warship-war ves:submersible-sub:submarine, pigboat, sub, U-boat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:wreck", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:suit, suit of clothes", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:soft-finned fis:salmonid:salmon:coho, cohoe, coho salmon, blue jack, silver salmon, Oncorhynchus kisutch", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:suit, suit of clothes", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:robe:abaya", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:suit, suit of clothes", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:bicycle-bike-wh:bicycle-built-for-two, tandem bicycle, tandem", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:suit, suit of clothes", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:binoculars, field glasses, opera glasses", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:suit, suit of clothes", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:sweater-jumper:cardigan", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:suit, suit of clothes", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:staff:crutch", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:suit, suit of clothes", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:office furnitur:file, file cabinet, filing cabinet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:suit, suit of clothes", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:coat:lab coat, laboratory coat", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:suit, suit of clothes", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:mailbox, letter box", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:suit, suit of clothes", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:uniform:military uniform", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:suit, suit of clothes", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:miniskirt, mini", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:suit, suit of clothes", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:institution:penal instituti:correctional in:prison, prison house", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:suit, suit of clothes", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:suit, suit of clothes", "oc": 25}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:suit, suit of clothes", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:swing", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:suit, suit of clothes", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:system:communication s:telecommunicati:television, television system", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:suit, suit of clothes", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:coat:raincoat-waterp:trench coat", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:suit, suit of clothes", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:tricycle, trike, velocipede", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:suit, suit of clothes", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:vacuum, vacuum cleaner", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:suit, suit of clothes", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:attire-garb-dre:hairpiece-false:wig", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:suit, suit of clothes", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:neckwear:necktie-tie:Windsor tie", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:suit, suit of clothes", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:person-individu:peer-equal-matc:associate:participant:groom, bridegroom", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:sundial", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:harvestman, daddy longlegs, Phalangium opilio", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:sundial", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:aircraft:lighter-than-ai:airship, dirigible", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:sundial", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:clock:analog clock", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:sundial", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:bell cote, bell cot", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:sundial", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:power tool:power saw-saw-s:chain saw, chainsaw", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:sundial", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:roof:dome", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:sundial", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:top-cover:manhole cover", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:sundial", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:support:structural memb:upright-vertica:post:maypole", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:sundial", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:system:maze, labyrinth", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:sundial", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:house:residence:religious resid:monastery", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:sundial", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:column-pillar:obelisk", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:sundial", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:organ, pipe organ", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:sundial", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:plow, plough", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:sundial", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:stone wall", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:sundial", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:place of worshi:shrine:stupa, tope", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:sundial", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:sundial", "oc": 27}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:sundial", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:roof:tile roof", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:sundial", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:clock:wall clock", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:sundial", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:airfoil-aerofoi:wing", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:sundial", "at": "root:entity:physical entity:object-physical:geological form:natural depress:valley, vale", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:optical device:lens-lense-lens:converging lens:sunglass", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:schnauzer:miniature schnauzer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:optical device:lens-lense-lens:converging lens:sunglass", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:cocker spaniel, English cocker spaniel, cocker", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:optical device:lens-lense-lens:converging lens:sunglass", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:llama", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:optical device:lens-lense-lens:converging lens:sunglass", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:barbershop", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:optical device:lens-lense-lens:converging lens:sunglass", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:cap:bathing cap, swimming cap", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:optical device:lens-lense-lens:converging lens:sunglass", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:bearskin, busby, shako", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:optical device:lens-lense-lens:converging lens:sunglass", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:bell cote, bell cot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:optical device:lens-lense-lens:converging lens:sunglass", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:bow", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:optical device:lens-lense-lens:converging lens:sunglass", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:neckwear:necktie-tie:bow tie, bow-tie, bowtie", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:optical device:lens-lense-lens:converging lens:sunglass", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:buckle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:optical device:lens-lense-lens:converging lens:sunglass", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:reflector:mirror:car mirror", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:optical device:lens-lense-lens:converging lens:sunglass", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:gear-parapherna:kit-outfit:carpenter's kit, tool kit", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:optical device:lens-lense-lens:converging lens:sunglass", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:CD player", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:optical device:lens-lense-lens:converging lens:sunglass", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:telephone-phone:radiotelephone-:cellular telephone, cellular phone, cellphone, cell, mobile phone", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:optical device:lens-lense-lens:converging lens:sunglass", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:helmet:crash helmet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:optical device:lens-lense-lens:converging lens:sunglass", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:hair spray", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:optical device:lens-lense-lens:converging lens:sunglass", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:coat:lab coat, laboratory coat", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:optical device:lens-lense-lens:converging lens:sunglass", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shade:lampshade, lamp shade", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:optical device:lens-lense-lens:converging lens:sunglass", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:cap:lens cap, lens cover", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:optical device:lens-lense-lens:converging lens:sunglass", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cosmetic:makeup-make-up-:lipstick, lip rouge", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:optical device:lens-lense-lens:converging lens:sunglass", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:scientific inst:magnifier:microscope:light microscop:hand glass-simp:loupe, jeweler's loupe", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:optical device:lens-lense-lens:converging lens:sunglass", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:miniskirt, mini", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:optical device:lens-lense-lens:converging lens:sunglass", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:safety belt-lif:seat belt, seatbelt", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:optical device:lens-lense-lens:converging lens:sunglass", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:optical device:lens-lense-lens:converging lens:sunglass", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:optical device:lens-lense-lens:converging lens:sunglass", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:spectacles-spec:sunglasses, dark glasses, shades", "oc": 11}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:optical device:lens-lense-lens:converging lens:sunglass", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cream-ointment-:sunscreen, sunblock, sun blocker", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:optical device:lens-lense-lens:converging lens:sunglass", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:system:communication s:telecommunicati:television, television system", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:optical device:lens-lense-lens:converging lens:sunglass", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:tub, vat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:optical device:lens-lense-lens:converging lens:sunglass", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:article:ware:tableware:cutlery-eating :spoon:wooden spoon", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:optical device:lens-lense-lens:converging lens:sunglass", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:game:puzzle:crossword puzzle, crossword", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:optical device:lens-lense-lens:converging lens:sunglass", "at": "root:entity:abstraction-abs:attribute:shape-form:round shape:sphere:ball-globe-orb:globule:bubble", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:optical device:lens-lense-lens:converging lens:sunglass", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:person-individu:peer-equal-matc:associate:participant:groom, bridegroom", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:spectacles-spec:sunglasses, dark glasses, shades", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:soft-finned fis:salmonid:salmon:coho, cohoe, coho salmon, blue jack, silver salmon, Oncorhynchus kisutch", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:spectacles-spec:sunglasses, dark glasses, shades", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:aircraft:lighter-than-ai:balloon", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:spectacles-spec:sunglasses, dark glasses, shades", "at": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:bib", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:spectacles-spec:sunglasses, dark glasses, shades", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:binoculars, field glasses, opera glasses", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:spectacles-spec:sunglasses, dark glasses, shades", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:telephone-phone:radiotelephone-:cellular telephone, cellular phone, cellphone, cell, mobile phone", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:spectacles-spec:sunglasses, dark glasses, shades", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:cowboy hat, ten-gallon hat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:spectacles-spec:sunglasses, dark glasses, shades", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:staff:crutch", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:spectacles-spec:sunglasses, dark glasses, shades", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:coat:fur coat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:spectacles-spec:sunglasses, dark glasses, shades", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:golfcart, golf cart", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:spectacles-spec:sunglasses, dark glasses, shades", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:apparel-wearing:workwear:jean, blue jean, denim", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:spectacles-spec:sunglasses, dark glasses, shades", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:wagon-waggon:cart:jinrikisha, ricksha, rickshaw", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:spectacles-spec:sunglasses, dark glasses, shades", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:scientific inst:magnifier:microscope:light microscop:hand glass-simp:loupe, jeweler's loupe", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:spectacles-spec:sunglasses, dark glasses, shades", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:decoration-orna:adornment:jewelry-jewelle:necklace", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:spectacles-spec:sunglasses, dark glasses, shades", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:ocarina, sweet potato", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:spectacles-spec:sunglasses, dark glasses, shades", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:gymnastic appar:parallel bars, bars", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:spectacles-spec:sunglasses, dark glasses, shades", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:bench:park bench", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:spectacles-spec:sunglasses, dark glasses, shades", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:pencil box, pencil case", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:spectacles-spec:sunglasses, dark glasses, shades", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:safety belt-lif:seat belt, seatbelt", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:spectacles-spec:sunglasses, dark glasses, shades", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:filter:strainer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:spectacles-spec:sunglasses, dark glasses, shades", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:optical device:lens-lense-lens:converging lens:sunglass", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:spectacles-spec:sunglasses, dark glasses, shades", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:spectacles-spec:sunglasses, dark glasses, shades", "oc": 18}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:spectacles-spec:sunglasses, dark glasses, shades", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cream-ointment-:sunscreen, sunblock, sun blocker", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:spectacles-spec:sunglasses, dark glasses, shades", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:tobacco shop, tobacconist shop, tobacconist", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:spectacles-spec:sunglasses, dark glasses, shades", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:tricycle, trike, velocipede", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:spectacles-spec:sunglasses, dark glasses, shades", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:unicycle, monocycle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:spectacles-spec:sunglasses, dark glasses, shades", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:water bottle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:spectacles-spec:sunglasses, dark glasses, shades", "at": "root:entity:physical entity:object-physical:geological form:natural elevati:mountain-mount:alp", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:spectacles-spec:sunglasses, dark glasses, shades", "at": "root:entity:physical entity:object-physical:geological form:natural elevati:ridge:bar:sandbar, sand bar", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:spectacles-spec:sunglasses, dark glasses, shades", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:person-individu:contestant:player-particip:ballplayer, baseball player", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cream-ointment-:sunscreen, sunblock, sun blocker", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:Weimaraner", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cream-ointment-:sunscreen, sunblock, sun blocker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:glass-drinking :beer glass", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cream-ointment-:sunscreen, sunblock, sun blocker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:swimsuit-swimwe:bikini, two-piece", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cream-ointment-:sunscreen, sunblock, sun blocker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:sweater-jumper:cardigan", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cream-ointment-:sunscreen, sunblock, sun blocker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:carton", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cream-ointment-:sunscreen, sunblock, sun blocker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:cowboy hat, ten-gallon hat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cream-ointment-:sunscreen, sunblock, sun blocker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:hair spray", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cream-ointment-:sunscreen, sunblock, sun blocker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:free-reed instr:harmonica, mouth organ, harp, mouth harp", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cream-ointment-:sunscreen, sunblock, sun blocker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:shirt:jersey, T-shirt, tee shirt", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cream-ointment-:sunscreen, sunblock, sun blocker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:lotion", "oc": 8}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cream-ointment-:sunscreen, sunblock, sun blocker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:maraca", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cream-ointment-:sunscreen, sunblock, sun blocker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:cabinet:medicine chest, medicine cabinet", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cream-ointment-:sunscreen, sunblock, sun blocker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:package-parcel:packet", "oc": 5}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cream-ointment-:sunscreen, sunblock, sun blocker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:house:residence:palace", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cream-ointment-:sunscreen, sunblock, sun blocker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:drill:power drill", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cream-ointment-:sunscreen, sunblock, sun blocker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cream-ointment-:sunscreen, sunblock, sun blocker", "oc": 13}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cream-ointment-:sunscreen, sunblock, sun blocker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:swimsuit-swimwe:swimming trunks, bathing trunks", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cream-ointment-:sunscreen, sunblock, sun blocker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:swing", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cream-ointment-:sunscreen, sunblock, sun blocker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:tub, vat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cream-ointment-:sunscreen, sunblock, sun blocker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:water bottle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cream-ointment-:sunscreen, sunblock, sun blocker", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:dessert-sweet-a:frozen dessert:ice cream, icecream", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cream-ointment-:sunscreen, sunblock, sun blocker", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:dessert-sweet-a:frozen dessert:ice lolly, lolly, lollipop, popsicle", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:bridge-span:suspension bridge", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:aircraft:lighter-than-ai:balloon", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:bridge-span:suspension bridge", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:dam, dike, dyke", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:bridge-span:suspension bridge", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:landing-landing:dock, dockage, docking facility", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:bridge-span:suspension bridge", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:machine-simple :wheel:paddlewheel, paddle wheel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:bridge-span:suspension bridge", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:picket fence, paling", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:bridge-span:suspension bridge", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:support:pier", "oc": 13}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:bridge-span:suspension bridge", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:bridge-span:suspension bridge", "oc": 31}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:bridge-span:suspension bridge", "at": "root:entity:physical entity:object-physical:geological form:natural elevati:promontory, headland, head, foreland", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:cleaning implem:swab, swob, mop", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:komondor", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:cleaning implem:swab, swob, mop", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:bonnet, poke bonnet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:cleaning implem:swab, swob, mop", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:cleaning implem:broom", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:cleaning implem:swab, swob, mop", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:floor cover-flo:mat:doormat, welcome mat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:cleaning implem:swab, swob, mop", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:instrument of e:guillotine", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:cleaning implem:swab, swob, mop", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:wagon-waggon:cart:oxcart", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:cleaning implem:swab, swob, mop", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:table:pool table, billiard table, snooker table", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:cleaning implem:swab, swob, mop", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:excavation:pool:cistern:rain barrel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:cleaning implem:swab, swob, mop", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:cleaning implem:swab, swob, mop", "oc": 39}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:cleaning implem:swab, swob, mop", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:acoustic device:whistle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:cleaning implem:swab, swob, mop", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:seed:grain-caryopsis:kernel:corn", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:sweater-jumper:pullover-slipov:sweatshirt", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:protective garm:apron", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:sweater-jumper:pullover-slipov:sweatshirt", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:backpack, back pack, knapsack, packsack, rucksack, haversack", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:sweater-jumper:pullover-slipov:sweatshirt", "at": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:towel:bath towel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:sweater-jumper:pullover-slipov:sweatshirt", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:sweater-jumper:cardigan", "oc": 5}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:sweater-jumper:pullover-slipov:sweatshirt", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloak", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:sweater-jumper:pullover-slipov:sweatshirt", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:apparel-wearing:workwear:jean, blue jean, denim", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:sweater-jumper:pullover-slipov:sweatshirt", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:shirt:jersey, T-shirt, tee shirt", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:sweater-jumper:pullover-slipov:sweatshirt", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:robe:kimono", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:sweater-jumper:pullover-slipov:sweatshirt", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:coat:lab coat, laboratory coat", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:sweater-jumper:pullover-slipov:sweatshirt", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:nightwear-sleep:pajama, pyjama, pj's, jammies", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:sweater-jumper:pullover-slipov:sweatshirt", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:apparatus-setup:duplicator-copi:photocopier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:sweater-jumper:pullover-slipov:sweatshirt", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:cloak:poncho", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:sweater-jumper:pullover-slipov:sweatshirt", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:scarf:stole", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:sweater-jumper:pullover-slipov:sweatshirt", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :streetcar, tram, tramcar, trolley, trolley car", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:sweater-jumper:pullover-slipov:sweatshirt", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:suit, suit of clothes", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:sweater-jumper:pullover-slipov:sweatshirt", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:sweater-jumper:pullover-slipov:sweatshirt", "oc": 17}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:sweater-jumper:pullover-slipov:sweatshirt", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:coat:raincoat-waterp:trench coat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:sweater-jumper:pullover-slipov:sweatshirt", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:attire-garb-dre:hairpiece-false:wig", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:sweater-jumper:pullover-slipov:sweatshirt", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:creation:product-product:work-piece of w:publication:magazine-mag:comic book", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:sweater-jumper:pullover-slipov:sweatshirt", "at": "root:entity:physical entity:object-physical:geological form:cliff, drop, drop-off", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:swimsuit-swimwe:swimming trunks, bathing trunks", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:cartilaginous f:elasmobranch-se:ray:stingray", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:swimsuit-swimwe:swimming trunks, bathing trunks", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:rodent-gnawer:cavy:guinea pig, Cavia cobaya", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:swimsuit-swimwe:swimming trunks, bathing trunks", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:protective garm:apron", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:swimsuit-swimwe:swimming trunks, bathing trunks", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:gymnastic appar:balance beam, beam", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:swimsuit-swimwe:swimming trunks, bathing trunks", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:cap:bathing cap, swimming cap", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:swimsuit-swimwe:swimming trunks, bathing trunks", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:swimsuit-swimwe:bikini, two-piece", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:swimsuit-swimwe:swimming trunks, bathing trunks", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:binoculars, field glasses, opera glasses", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:swimsuit-swimwe:swimming trunks, bathing trunks", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:fountain", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:swimsuit-swimwe:swimming trunks, bathing trunks", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:bicycle-bike-wh:mountain bike, all-terrain bike, off-roader", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:swimsuit-swimwe:swimming trunks, bathing trunks", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:machine-simple :wheel:paddlewheel, paddle wheel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:swimsuit-swimwe:swimming trunks, bathing trunks", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:rod:pole", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:swimsuit-swimwe:swimming trunks, bathing trunks", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:sports implemen:racket, racquet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:swimsuit-swimwe:swimming trunks, bathing trunks", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:handcart-pushca:shopping cart", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:swimsuit-swimwe:swimming trunks, bathing trunks", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:breathing devic:snorkel", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:swimsuit-swimwe:swimming trunks, bathing trunks", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:swimsuit-swimwe:swimming trunks, bathing trunks", "oc": 27}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:swimsuit-swimwe:swimming trunks, bathing trunks", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:tub, vat", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:swimsuit-swimwe:swimming trunks, bathing trunks", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:volleyball", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:swing", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:birdhouse", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:swing", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:butcher shop, meat market", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:swing", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:chainlink fence", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:swing", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:support:structural memb:upright-vertica:post:maypole", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:swing", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:rod:pole", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:swing", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:surface:horizontal surf:platform:stage", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:swing", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:swing", "oc": 39}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:swing", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:tricycle, trike, velocipede", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:swing", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:support:rack-stand:tripod", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:swing", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:wreck", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:swing", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:person-individu:contestant:player-particip:ballplayer, baseball player", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:control-control:switch, electric switch, electrical switch", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:clock:analog clock", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:control-control:switch, electric switch, electrical switch", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:barometer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:control-control:switch, electric switch, electrical switch", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:cash machine, cash dispenser, automated teller machine, automatic teller machine, automated teller, automatic teller, ATM", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:control-control:switch, electric switch, electrical switch", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:defensive struc:fortification-m:castle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:control-control:switch, electric switch, electrical switch", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:CD player", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:control-control:switch, electric switch, electrical switch", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:lock:combination lock", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:control-control:switch, electric switch, electrical switch", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:staff:crutch", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:control-control:switch, electric switch, electrical switch", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:telephone-phone:dial telephone, dial phone", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:control-control:switch, electric switch, electrical switch", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:pump:gas pump, gasoline pump, petrol pump, island dispenser", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:control-control:switch, electric switch, electrical switch", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:control-control:joystick", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:control-control:switch, electric switch, electrical switch", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:oscilloscope, scope, cathode-ray oscilloscope, CRO", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:control-control:switch, electric switch, electrical switch", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:timer:parking meter", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:control-control:switch, electric switch, electrical switch", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:telephone-phone:pay-phone, pay-station", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:control-control:switch, electric switch, electrical switch", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:projector", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:control-control:switch, electric switch, electrical switch", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:radiator", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:control-control:switch, electric switch, electrical switch", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:strongbox-deedb:safe", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:control-control:switch, electric switch, electrical switch", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:shaker:saltshaker, salt shaker", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:control-control:switch, electric switch, electrical switch", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:control-control:switch, electric switch, electrical switch", "oc": 30}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:control-control:switch, electric switch, electrical switch", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:lamp:table lamp", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:control-control:switch, electric switch, electrical switch", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:tape player", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:control-control:switch, electric switch, electrical switch", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:toaster", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:medical instrum:syringe", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:poodle-poodle d:toy poodle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:medical instrum:syringe", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:bakery, bakeshop, bakehouse", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:medical instrum:syringe", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:knife:cleaver, meat cleaver, chopper", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:medical instrum:syringe", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:table:desk", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:medical instrum:syringe", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:diaper, nappy, napkin", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:medical instrum:syringe", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:gymnastic appar:horizontal bar, high bar", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:medical instrum:syringe", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:cap:mortarboard", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:medical instrum:syringe", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:top-cover:cap:nipple", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:medical instrum:syringe", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:perfume, essence", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:medical instrum:syringe", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:table:pool table, billiard table, snooker table", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:medical instrum:syringe", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:firearm-piece-s:pistol-handgun-:revolver, six-gun, six-shooter", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:medical instrum:syringe", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:measuring stick:rule, ruler", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:medical instrum:syringe", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:screwdriver", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:medical instrum:syringe", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:medical instrum:stethoscope", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:medical instrum:syringe", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:filter:strainer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:medical instrum:syringe", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:medical instrum:syringe", "oc": 28}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:medical instrum:syringe", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:toaster", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:medical instrum:syringe", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:tow truck, tow car, wrecker", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:medical instrum:syringe", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:acoustic device:whistle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:medical instrum:syringe", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:dessert-sweet-a:frozen dessert:ice lolly, lolly, lollipop, popsicle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:medical instrum:syringe", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:person-individu:explorer-advent:diver-frogman-u:scuba diver", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:lamp:table lamp", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:candle, taper, wax light", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:lamp:table lamp", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:table:dining table, board", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:lamp:table lamp", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:glass-drinking :goblet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:lamp:table lamp", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:instrument of e:guillotine", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:lamp:table lamp", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shade:lampshade, lamp shade", "oc": 10}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:lamp:table lamp", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electronic devi:mouse, computer mouse", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:lamp:table lamp", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:screen-cover-co:shoji", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:lamp:table lamp", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:snowplow, snowplough", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:lamp:table lamp", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:scarf:stole", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:lamp:table lamp", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:medical instrum:syringe", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:lamp:table lamp", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:lamp:table lamp", "oc": 28}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:lamp:table lamp", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:jar:vase", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :armored vehicle:tank, army tank, armored combat vehicle, armoured combat vehicle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:amphibian, amphibious vehicle", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :armored vehicle:tank, army tank, armored combat vehicle, armoured combat vehicle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:cannon", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :armored vehicle:tank, army tank, armored combat vehicle, armoured combat vehicle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:military vehicl:half track", "oc": 6}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :armored vehicle:tank, army tank, armored combat vehicle, armoured combat vehicle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:jeep, landrover", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :armored vehicle:tank, army tank, armored combat vehicle, armoured combat vehicle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:boat:sea boat:lifeboat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :armored vehicle:tank, army tank, armored combat vehicle, armoured combat vehicle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :armored vehicle:tank, army tank, armored combat vehicle, armoured combat vehicle", "oc": 38}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:tape player", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:cash machine, cash dispenser, automated teller machine, automatic teller machine, automated teller, automatic teller, ATM", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:tape player", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:cassette", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:tape player", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:cassette player", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:tape player", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:CD player", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:tape player", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:telephone-phone:radiotelephone-:cellular telephone, cellular phone, cellphone, cell, mobile phone", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:tape player", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:telephone-phone:dial telephone, dial phone", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:tape player", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:pump:gas pump, gasoline pump, petrol pump, island dispenser", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:tape player", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:memory device-s:magnetic disk-m:hard disc, hard disk, fixed disk", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:tape player", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:apparel-wearing:workwear:jean, blue jean, denim", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:tape player", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:portable comput:laptop, laptop computer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:tape player", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:lighter, light, igniter, ignitor", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:tape player", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electrical devi:transducer:electro-acousti:loudspeaker, speaker, speaker unit, loudspeaker system, speaker system", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:tape player", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:microwave, microwave oven", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:tape player", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:modem", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:tape player", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:printer-printin:printer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:tape player", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:projector", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:tape player", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:system:communication s:radio, wireless", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:tape player", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:photographic eq:camera-photogra:reflex camera", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:tape player", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:scale, weighing machine", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:tape player", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:slot machine-co:slot, one-armed bandit", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:tape player", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:heater-warmer:stove", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:tape player", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:tape player", "oc": 19}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:tape player", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:receptacle:tray", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pot:teapot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pot:caldron, cauldron", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pot:teapot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pot:coffeepot", "oc": 6}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pot:teapot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:pitcher, ewer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pot:teapot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pot:teapot", "oc": 40}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pot:teapot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:jar:vase", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:plaything-toy:teddy, teddy bear", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Yorkshire terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:plaything-toy:teddy, teddy bear", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:poodle-poodle d:toy poodle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:plaything-toy:teddy, teddy bear", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:poodle-poodle d:miniature poodle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:plaything-toy:teddy, teddy bear", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:undergarment-un:brassiere, bra, bandeau", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:plaything-toy:teddy, teddy bear", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:candle, taper, wax light", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:plaything-toy:teddy, teddy bear", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:carton", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:plaything-toy:teddy, teddy bear", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:baby bed-babys :cradle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:plaything-toy:teddy, teddy bear", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:photographic eq:camera-photogra:Polaroid camera, Polaroid Land camera", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:plaything-toy:teddy, teddy bear", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:sheath:scabbard", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:plaything-toy:teddy, teddy bear", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:plaything-toy:teddy, teddy bear", "oc": 38}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:plaything-toy:teddy, teddy bear", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:toyshop", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:plaything-toy:teddy, teddy bear", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:dessert-sweet-a:frozen dessert:ice cream, icecream", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:system:communication s:telecommunicati:television, television system", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:telephone-phone:radiotelephone-:cellular telephone, cellular phone, cellphone, cell, mobile phone", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:system:communication s:telecommunicati:television, television system", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:wall unit:entertainment center", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:system:communication s:telecommunicati:television, television system", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:theater-theatre:home theater, home theatre", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:system:communication s:telecommunicati:television, television system", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:microwave, microwave oven", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:system:communication s:telecommunicati:television, television system", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:monitor", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:system:communication s:telecommunicati:television, television system", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:sharpener:pencil sharpener", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:system:communication s:telecommunicati:television, television system", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:system:communication s:radio, wireless", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:system:communication s:telecommunicati:television, television system", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:spotlight, spot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:system:communication s:telecommunicati:television, television system", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:heater-warmer:stove", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:system:communication s:telecommunicati:television, television system", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:system:communication s:telecommunicati:television, television system", "oc": 29}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:system:communication s:telecommunicati:television, television system", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:vacuum, vacuum cleaner", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:system:communication s:telecommunicati:television, television system", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:web site, website, internet site, site", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:system:communication s:telecommunicati:television, television system", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:game:puzzle:crossword puzzle, crossword", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:system:communication s:telecommunicati:television, television system", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:person-individu:contestant:player-particip:ballplayer, baseball player", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:tennis ball", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:Japanese spaniel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:tennis ball", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:West Highland white terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:tennis ball", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:springer spanie:English springer, English springer spaniel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:tennis ball", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Border collie", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:tennis ball", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:chainlink fence", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:tennis ball", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:croquet ball", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:tennis ball", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:ocarina, sweet potato", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:tennis ball", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:rod:pole", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:tennis ball", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:sports implemen:racket, racquet", "oc": 5}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:tennis ball", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:soccer ball", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:tennis ball", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:tennis ball", "oc": 36}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:roof:thatch, thatched roof", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:farm building:barn", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:roof:thatch, thatched roof", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:birdhouse", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:roof:thatch, thatched roof", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:wagon-waggon:cart:oxcart", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:roof:thatch, thatched roof", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:roof:thatch, thatched roof", "oc": 43}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:roof:thatch, thatched roof", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:roof:tile roof", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:roof:thatch, thatched roof", "at": "root:entity:physical entity:matter:substance:food-nutrient:feed-provender:fodder:hay", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:roof:thatch, thatched roof", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:seed:oilseed-oil-ric:rapeseed", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:roof:thatch, thatched roof", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:ear, spike, capitulum", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:blind-screen:curtain-drape-d:theater curtain, theatre curtain", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:theater-theatre:cinema, movie theater, movie theatre, movie house, picture palace", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:blind-screen:curtain-drape-d:theater curtain, theatre curtain", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:table:desk", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:blind-screen:curtain-drape-d:theater curtain, theatre curtain", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:fountain", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:blind-screen:curtain-drape-d:theater curtain, theatre curtain", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:robe:kimono", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:blind-screen:curtain-drape-d:theater curtain, theatre curtain", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:strengthener-re:brace:neck brace", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:blind-screen:curtain-drape-d:theater curtain, theatre curtain", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:blind-screen:curtain-drape-d:shower curtain", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:blind-screen:curtain-drape-d:theater curtain, theatre curtain", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:blind-screen:curtain-drape-d:theater curtain, theatre curtain", "oc": 39}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:blind-screen:curtain-drape-d:theater curtain, theatre curtain", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:light-light sou:torch", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:blind-screen:curtain-drape-d:theater curtain, theatre curtain", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:piano-pianofort:upright, upright piano", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:blind-screen:curtain-drape-d:theater curtain, theatre curtain", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:roof:vault", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:blind-screen:curtain-drape-d:theater curtain, theatre curtain", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:blind-screen:window blind:window shade", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:blind-screen:curtain-drape-d:theater curtain, theatre curtain", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:housing-lodging:dwelling-home-d:yurt", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:cap:thimble", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloth covering:dressing-medica:bandage-patch:adhesive bandag:Band Aid", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:cap:thimble", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:jar:beaker", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:cap:thimble", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:buckle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:cap:thimble", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:drinking vessel:mug:coffee mug", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:cap:thimble", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:fountain", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:cap:thimble", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:clip:hair slide", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:cap:thimble", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:hair spray", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:cap:thimble", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electrical devi:transducer:electro-acousti:microphone, mike", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:cap:thimble", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:pill bottle", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:cap:thimble", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:pot, flowerpot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:cap:thimble", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:shaker:saltshaker, salt shaker", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:cap:thimble", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dispenser:soap dispenser", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:cap:thimble", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:sombrero", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:cap:thimble", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:plaything-toy:teddy, teddy bear", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:cap:thimble", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:cap:thimble", "oc": 31}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:cap:thimble", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:jar:vase", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:cap:thimble", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:fabric-cloth-ma:velvet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:cap:thimble", "at": "root:entity:physical entity:matter:substance:food-nutrient:beverage-drink-:coffee-java:espresso", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:farm machine:thresher, thrasher, threshing machine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:car-railcar-rai:freight car", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:farm machine:thresher, thrasher, threshing machine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:farm machine:harvester, reaper", "oc": 8}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:farm machine:thresher, thrasher, threshing machine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:garden tool-law:lawn mower, mower", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:farm machine:thresher, thrasher, threshing machine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building comple:plant-works-ind:factory-mill-ma:lumbermill, sawmill", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:farm machine:thresher, thrasher, threshing machine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:Model T", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:farm machine:thresher, thrasher, threshing machine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:plow, plough", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:farm machine:thresher, thrasher, threshing machine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:drill:power drill", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:farm machine:thresher, thrasher, threshing machine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:excavation:pool:cistern:rain barrel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:farm machine:thresher, thrasher, threshing machine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:litter:stretcher", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:farm machine:thresher, thrasher, threshing machine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :armored vehicle:tank, army tank, armored combat vehicle, armoured combat vehicle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:farm machine:thresher, thrasher, threshing machine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:farm machine:thresher, thrasher, threshing machine", "oc": 27}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:farm machine:thresher, thrasher, threshing machine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :tractor", "oc": 5}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:chair of state:throne", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:altar", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:chair of state:throne", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:barber chair", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:chair of state:throne", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:ride:carousel, carrousel, merry-go-round, roundabout, whirligig", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:chair of state:throne", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:place of worshi:church, church building", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:chair of state:throne", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:boot:cowboy boot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:chair of state:throne", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:bedroom furnitu:bed:four-poster", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:chair of state:throne", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:instrument of e:guillotine", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:chair of state:throne", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:chordophone:harp", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:chair of state:throne", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:game:puzzle:jigsaw puzzle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:chair of state:throne", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:overskirt", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:chair of state:throne", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:house:residence:palace", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:chair of state:throne", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:rocking chair, rocker", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:chair of state:throne", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:place of worshi:shrine:stupa, tope", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:chair of state:throne", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:chair of state:throne", "oc": 30}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:chair of state:throne", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:fabric-cloth-ma:velvet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:chair of state:throne", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:outerwear-overc:gown-robe:vestment", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:chair of state:throne", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:creation:product-product:work-piece of w:publication:magazine-mag:comic book", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:roof:tile roof", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:bird of prey-ra:vulture", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:roof:tile roof", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:parrot:cockatoo:sulphur-crested cockatoo, Kakatoe galerita, Cacatua galerita", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:roof:tile roof", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:bell cote, bell cot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:roof:tile roof", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:carton", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:roof:tile roof", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:defensive struc:fortification-m:castle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:roof:tile roof", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:place of worshi:church, church building", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:roof:tile roof", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:roof:dome", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:roof:tile roof", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:house:residence:religious resid:monastery", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:roof:tile roof", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:house:residence:palace", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:roof:tile roof", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:area:patio, terrace", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:roof:tile roof", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:screen-cover-co:shoji", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:roof:tile roof", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:handcart-pushca:shopping cart", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:roof:tile roof", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:roof:thatch, thatched roof", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:roof:tile roof", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:roof:tile roof", "oc": 35}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:roof:tile roof", "at": "root:entity:abstraction-abs:communication:signal-signalin:visual signal:light:traffic light, traffic signal, stoplight", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:toaster", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:cassette player", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:toaster", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:table:desk", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:toaster", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:audio system-so:reproducer:stereo-stereoph:iPod", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:toaster", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:portable comput:laptop, laptop computer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:toaster", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cosmetic:makeup-make-up-:lipstick, lip rouge", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:toaster", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electrical devi:transducer:electro-acousti:loudspeaker, speaker, speaker unit, loudspeaker system, speaker system", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:toaster", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:trap:mousetrap", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:toaster", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:portable comput:notebook, notebook computer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:toaster", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:sharpener:pencil sharpener", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:toaster", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:projector", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:toaster", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:winder:reel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:toaster", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:textile machine:sewing machine", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:toaster", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:movable barrier:door:sliding door", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:toaster", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:toaster", "oc": 33}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:toaster", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:waffle iron", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:toaster", "at": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:bun-roll:bagel, beigel", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:tobacco shop, tobacconist shop, tobacconist", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:ambulance", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:tobacco shop, tobacconist shop, tobacconist", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:clock:analog clock", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:tobacco shop, tobacconist shop, tobacconist", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:bakery, bakeshop, bakehouse", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:tobacco shop, tobacconist shop, tobacconist", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:barbershop", "oc": 6}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:tobacco shop, tobacconist shop, tobacconist", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:bookcase", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:tobacco shop, tobacconist shop, tobacconist", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:bookshop, bookstore, bookstall", "oc": 5}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:tobacco shop, tobacconist shop, tobacconist", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:memorial-monume:brass, memorial tablet, plaque", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:tobacco shop, tobacconist shop, tobacconist", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:theater-theatre:cinema, movie theater, movie theatre, movie house, picture palace", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:tobacco shop, tobacconist shop, tobacconist", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:table:desk", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:tobacco shop, tobacconist shop, tobacconist", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shade:lampshade, lamp shade", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:tobacco shop, tobacconist shop, tobacconist", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:mailbox, letter box", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:tobacco shop, tobacconist shop, tobacconist", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:top-cover:manhole cover", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:tobacco shop, tobacconist shop, tobacconist", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:motorcycle-bike:minibike-motorb:moped", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:tobacco shop, tobacconist shop, tobacconist", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:restaurant, eating house, eating place, eatery", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:tobacco shop, tobacconist shop, tobacconist", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:signboard-sign:scoreboard", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:tobacco shop, tobacconist shop, tobacconist", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:tobacco shop, tobacconist shop, tobacconist", "oc": 21}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:tobacco shop, tobacconist shop, tobacconist", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:toyshop", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:tobacco shop, tobacconist shop, tobacconist", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:clock:wall clock", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:tobacco shop, tobacconist shop, tobacconist", "at": "root:entity:abstraction-abs:communication:sign:street sign", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:toilet seat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:altar", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:toilet seat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:handcart-pushca:barrow, garden cart, lawn cart, wheelbarrow", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:toilet seat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:neckwear:necktie-tie:bolo tie, bolo, bola tie, bola", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:toilet seat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bucket, pail", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:toilet seat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:cannon", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:toilet seat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:floor cover-flo:mat:doormat, welcome mat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:toilet seat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:greenhouse, nursery, glasshouse", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:toilet seat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:hook, claw", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:toilet seat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:cabinet:medicine chest, medicine cabinet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:toilet seat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dish:bowl:mixing bowl", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:toilet seat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:area:patio, terrace", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:toilet seat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:supporting stru:support:pedestal, plinth, footstall", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:toilet seat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:supporting stru:framework:rack:plate rack", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:toilet seat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:armor-armour:shield, buckler", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:toilet seat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:spindle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:toilet seat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:spotlight, spot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:toilet seat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:toilet seat", "oc": 27}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:toilet seat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:basin:washbasin, handbasin, washbowl, lavabo, wash-hand basin", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:toilet seat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:jug:water jug", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:toilet seat", "at": "root:entity:physical entity:matter:substance:material-stuff:paper:tissue-tissue p:toilet tissue, toilet paper, bathroom tissue", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:light-light sou:torch", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:basketball equi:basketball", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:light-light sou:torch", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:fire engine, fire truck", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:light-light sou:torch", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:matchstick", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:light-light sou:torch", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:support:structural memb:upright-vertica:post:maypole", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:light-light sou:torch", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electrical devi:transducer:electro-acousti:microphone, mike", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:light-light sou:torch", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:plunger, plumber's helper", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:light-light sou:torch", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:sports implemen:racket, racquet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:light-light sou:torch", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:spacecraft-ball:space shuttle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:light-light sou:torch", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:surface:horizontal surf:platform:stage", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:light-light sou:torch", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:chair of state:throne", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:light-light sou:torch", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:light-light sou:torch", "oc": 36}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:light-light sou:torch", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:unicycle, monocycle", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:column-pillar:totem pole", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:mask", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:column-pillar:totem pole", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:projectile, missile", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:column-pillar:totem pole", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:column-pillar:totem pole", "oc": 48}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:tow truck, tow car, wrecker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:cab, hack, taxi, taxicab", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:tow truck, tow car, wrecker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:cargo ship-carg:container ship, containership, container vessel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:tow truck, tow car, wrecker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:convertible", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:tow truck, tow car, wrecker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:fire engine, fire truck", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:tow truck, tow car, wrecker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:garbage truck, dustcart", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:tow truck, tow car, wrecker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:farm machine:harvester, reaper", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:tow truck, tow car, wrecker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:jeep, landrover", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:tow truck, tow car, wrecker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:limousine, limo", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:tow truck, tow car, wrecker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:public transpor:bus-autobus-coa:minibus", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:tow truck, tow car, wrecker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :recreational vehicle, RV, R.V.", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:tow truck, tow car, wrecker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:snowplow, snowplough", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:tow truck, tow car, wrecker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:tow truck, tow car, wrecker", "oc": 25}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:tow truck, tow car, wrecker", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:trailer truck, tractor trailer, trucking rig, rig, articulated lorry, semi", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:toyshop", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:altar", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:toyshop", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:bookshop, bookstore, bookstall", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:toyshop", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:confectionery, confectionary, candy store", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:toyshop", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:table:desk", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:toyshop", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:blower:hand blower, blow dryer, blow drier, hair dryer, hair drier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:toyshop", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:wagon-waggon:cart:jinrikisha, ricksha, rickshaw", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:toyshop", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:garden tool-law:lawn mower, mower", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:toyshop", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:mask", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:toyshop", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:uniform:military uniform", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:toyshop", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:wagon-waggon:cart:oxcart", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:toyshop", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:machine-simple :wheel:pinwheel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:toyshop", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:white goods:refrigerator, icebox", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:toyshop", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:shaker:saltshaker, salt shaker", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:toyshop", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:shoe shop, shoe-shop, shoe store", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:toyshop", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:basket-handbask:shopping basket", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:toyshop", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:plaything-toy:teddy, teddy bear", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:toyshop", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:tobacco shop, tobacconist shop, tobacconist", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:toyshop", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:toyshop", "oc": 30}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :tractor", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:fire engine, fire truck", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :tractor", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:go-kart", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :tractor", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:farm machine:harvester, reaper", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :tractor", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:garden tool-law:lawn mower, mower", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :tractor", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building comple:plant-works-ind:factory-mill-ma:lumbermill, sawmill", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :tractor", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:Model T", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :tractor", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:plow, plough", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :tractor", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:reflector:solar dish, solar collector, solar furnace", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :tractor", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :armored vehicle:tank, army tank, armored combat vehicle, armoured combat vehicle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :tractor", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:farm machine:thresher, thrasher, threshing machine", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :tractor", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :tractor", "oc": 35}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :tractor", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:trailer truck, tractor trailer, trucking rig, rig, articulated lorry, semi", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :tractor", "at": "root:entity:physical entity:matter:substance:food-nutrient:feed-provender:fodder:hay", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:trailer truck, tractor trailer, trucking rig, rig, articulated lorry, semi", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:breakwater, groin, groyne, mole, bulwark, seawall, jetty", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:trailer truck, tractor trailer, trucking rig, rig, articulated lorry, semi", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:defensive struc:fortification-m:castle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:trailer truck, tractor trailer, trucking rig, rig, articulated lorry, semi", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:fire engine, fire truck", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:trailer truck, tractor trailer, trucking rig, rig, articulated lorry, semi", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:garbage truck, dustcart", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:trailer truck, tractor trailer, trucking rig, rig, articulated lorry, semi", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :recreational vehicle, RV, R.V.", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:trailer truck, tractor trailer, trucking rig, rig, articulated lorry, semi", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:bridge-span:suspension bridge", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:trailer truck, tractor trailer, trucking rig, rig, articulated lorry, semi", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:tow truck, tow car, wrecker", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:trailer truck, tractor trailer, trucking rig, rig, articulated lorry, semi", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:trailer truck, tractor trailer, trucking rig, rig, articulated lorry, semi", "oc": 37}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:trailer truck, tractor trailer, trucking rig, rig, articulated lorry, semi", "at": "root:entity:abstraction-abs:communication:signal-signalin:visual signal:light:traffic light, traffic signal, stoplight", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:trailer truck, tractor trailer, trucking rig, rig, articulated lorry, semi", "at": "root:entity:physical entity:object-physical:geological form:cliff, drop, drop-off", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:receptacle:tray", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:protective garm:apron", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:receptacle:tray", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:bakery, bakeshop, bakehouse", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:receptacle:tray", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:top-cover:cap:bottlecap", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:receptacle:tray", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:cleaning implem:broom", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:receptacle:tray", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:crate", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:receptacle:tray", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:basket-handbask:hamper", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:receptacle:tray", "at": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:handkerchief, hankie, hanky, hankey", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:receptacle:tray", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:bicycle-bike-wh:mountain bike, all-terrain bike, off-roader", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:receptacle:tray", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:pencil box, pencil case", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:receptacle:tray", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:pick, plectrum, plectron", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:receptacle:tray", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:floor cover-flo:rug-carpet-carp:prayer rug, prayer mat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:receptacle:tray", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:rotating mechan:circle-round:disk-disc:puck, hockey puck", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:receptacle:tray", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:armor-armour:shield, buckler", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:receptacle:tray", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:filter:strainer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:receptacle:tray", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:toilet seat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:receptacle:tray", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:receptacle:tray", "oc": 22}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:receptacle:tray", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:jar:vase", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:receptacle:tray", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pan-cooking pan:wok", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:receptacle:tray", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:entree-main cou:plate", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:receptacle:tray", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:squash:summer squash:zucchini, courgette", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:receptacle:tray", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:squash:winter squash:butternut squash", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:receptacle:tray", "at": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :ingredient-fixi:flavorer-flavou:condiment:sauce:chocolate sauce, chocolate syrup", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:receptacle:tray", "at": "root:entity:physical entity:matter:substance:food-nutrient:beverage-drink-:coffee-java:espresso", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:receptacle:tray", "at": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:mixed drink:punch:cup", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:coat:raincoat-waterp:trench coat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:robe:abaya", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:coat:raincoat-waterp:trench coat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:backpack, back pack, knapsack, packsack, rucksack, haversack", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:coat:raincoat-waterp:trench coat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:bannister, banister, balustrade, balusters, handrail", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:coat:raincoat-waterp:trench coat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:public transpor:train-railroad :passenger train:bullet train, bullet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:coat:raincoat-waterp:trench coat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:staff:crutch", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:coat:raincoat-waterp:trench coat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:coat:fur coat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:coat:raincoat-waterp:trench coat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:mask:gasmask, respirator, gas helmet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:coat:raincoat-waterp:trench coat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:apparel-wearing:workwear:jean, blue jean, denim", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:coat:raincoat-waterp:trench coat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:uniform:military uniform", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:coat:raincoat-waterp:trench coat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:strengthener-re:brace:neck brace", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:coat:raincoat-waterp:trench coat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:nightwear-sleep:pajama, pyjama, pj's, jammies", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:coat:raincoat-waterp:trench coat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:sleeping bag", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:coat:raincoat-waterp:trench coat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:suit, suit of clothes", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:coat:raincoat-waterp:trench coat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:spectacles-spec:sunglasses, dark glasses, shades", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:coat:raincoat-waterp:trench coat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:swing", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:coat:raincoat-waterp:trench coat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:coat:raincoat-waterp:trench coat", "oc": 27}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:coat:raincoat-waterp:trench coat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:canopy:umbrella", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:coat:raincoat-waterp:trench coat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:unicycle, monocycle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:coat:raincoat-waterp:trench coat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:housing-lodging:dwelling-home-d:yurt", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:tricycle, trike, velocipede", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:protective garm:apron", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:tricycle, trike, velocipede", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:bicycle-bike-wh:bicycle-built-for-two, tandem bicycle, tandem", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:tricycle, trike, velocipede", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:wagon-waggon:cart:jinrikisha, ricksha, rickshaw", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:tricycle, trike, velocipede", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:maraca", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:tricycle, trike, velocipede", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:Model T", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:tricycle, trike, velocipede", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:motorcycle-bike:minibike-motorb:moped", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:tricycle, trike, velocipede", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:bicycle-bike-wh:mountain bike, all-terrain bike, off-roader", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:tricycle, trike, velocipede", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:bench:park bench", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:tricycle, trike, velocipede", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:breathing devic:snorkel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:tricycle, trike, velocipede", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:tricycle, trike, velocipede", "oc": 39}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:tricycle, trike, velocipede", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:canopy:umbrella", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:sailing vessel-:sailboat-sailin:trimaran", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:aircraft:heavier-than-ai:airplane-aeropl:airliner", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:sailing vessel-:sailboat-sailin:trimaran", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:sailing vessel-:sailboat-sailin:catamaran", "oc": 8}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:sailing vessel-:sailboat-sailin:trimaran", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:sailing vessel-:schooner", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:sailing vessel-:sailboat-sailin:trimaran", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:spacecraft-ball:space shuttle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:sailing vessel-:sailboat-sailin:trimaran", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:sailing vessel-:sailboat-sailin:trimaran", "oc": 38}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:sailing vessel-:sailboat-sailin:trimaran", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:aircraft:heavier-than-ai:warplane, military plane", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:support:rack-stand:tripod", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:domestic cat-ho:tiger cat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:support:rack-stand:tripod", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:bell cote, bell cot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:support:rack-stand:tripod", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bucket, pail", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:support:rack-stand:tripod", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:gear-parapherna:kit-outfit:carpenter's kit, tool kit", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:support:rack-stand:tripod", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:chainlink fence", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:support:rack-stand:tripod", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:hammer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:support:rack-stand:tripod", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:library", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:support:rack-stand:tripod", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electrical devi:transducer:electro-acousti:microphone, mike", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:support:rack-stand:tripod", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:motorcycle-bike:minibike-motorb:moped", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:support:rack-stand:tripod", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electronic devi:mouse, computer mouse", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:support:rack-stand:tripod", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:nail", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:support:rack-stand:tripod", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:photographic eq:camera-photogra:reflex camera", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:support:rack-stand:tripod", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:cleaning implem:swab, swob, mop", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:support:rack-stand:tripod", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:swing", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:support:rack-stand:tripod", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:support:rack-stand:tripod", "oc": 34}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:support:rack-stand:tripod", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:brass-brass ins:trombone", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:arch:triumphal arch", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:memorial-monume:megalith, megalithic structure", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:arch:triumphal arch", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:house:residence:palace", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:arch:triumphal arch", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:heater-warmer:stove", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:arch:triumphal arch", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:arch:triumphal arch", "oc": 46}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:public transpor:bus-autobus-coa:trolleybus, trolley coach, trackless trolley", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:public transpor:bus-autobus-coa:school bus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:public transpor:bus-autobus-coa:trolleybus, trolley coach, trackless trolley", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:public transpor:bus-autobus-coa:trolleybus, trolley coach, trackless trolley", "oc": 49}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:brass-brass ins:trombone", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:firearm-piece-s:autoloader-self:automatic firea:automatic rifle:assault rifle, assault gun", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:brass-brass ins:trombone", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:brass-brass ins:cornet, horn, trumpet, trump", "oc": 6}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:brass-brass ins:trombone", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:drum, membranophone, tympan", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:brass-brass ins:trombone", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:motor scooter, scooter", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:brass-brass ins:trombone", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:nail", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:brass-brass ins:trombone", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:beating-reed in:single-reed ins:sax, saxophone", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:brass-brass ins:trombone", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:surface:horizontal surf:platform:stage", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:brass-brass ins:trombone", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:brass-brass ins:trombone", "oc": 35}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:brass-brass ins:trombone", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:bowed stringed :violin, fiddle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:brass-brass ins:trombone", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:volleyball", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:tub, vat", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:swine:hog, pig, grunter, squealer, Sus scrofa", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:tub, vat", "at": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:towel:bath towel", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:tub, vat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bathtub, bathing tub, bath, tub", "oc": 19}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:tub, vat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:swimsuit-swimwe:bikini, two-piece", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:tub, vat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bucket, pail", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:tub, vat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:brass-brass ins:cornet, horn, trumpet, trump", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:tub, vat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:diaper, nappy, napkin", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:tub, vat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:brake:brake system-br:hydraulic brake:disk brake, disc brake", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:tub, vat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:greenhouse, nursery, glasshouse", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:tub, vat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:apparel-wearing:workwear:jean, blue jean, denim", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:tub, vat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:lighter, light, igniter, ignitor", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:tub, vat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:cabinet:medicine chest, medicine cabinet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:tub, vat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:overskirt", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:tub, vat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:area:patio, terrace", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:tub, vat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:sundial", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:tub, vat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:receptacle:tray", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:tub, vat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:tub, vat", "oc": 12}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:tub, vat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:basin:washbasin, handbasin, washbowl, lavabo, wash-hand basin", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:tub, vat", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pan-cooking pan:wok", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:tub, vat", "at": "root:entity:physical entity:matter:substance:material-stuff:paper:tissue-tissue p:toilet tissue, toilet paper, bathroom tissue", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:movable barrier:gate:turnstile", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:outerwear-overc:gown-robe:academic gown, academic robe, judge's robe", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:movable barrier:gate:turnstile", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:croquet ball", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:movable barrier:gate:turnstile", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:table:dining table, board", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:movable barrier:gate:turnstile", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building comple:plant-works-ind:factory-mill-ma:lumbermill, sawmill", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:movable barrier:gate:turnstile", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:institution:penal instituti:correctional in:prison, prison house", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:movable barrier:gate:turnstile", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:rocking chair, rocker", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:movable barrier:gate:turnstile", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:movable barrier:door:sliding door", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:movable barrier:gate:turnstile", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:control-control:switch, electric switch, electrical switch", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:movable barrier:gate:turnstile", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:roof:thatch, thatched roof", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:movable barrier:gate:turnstile", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:movable barrier:gate:turnstile", "oc": 37}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:movable barrier:gate:turnstile", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:slot machine-co:vending machine", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:movable barrier:gate:turnstile", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:rail fence:worm fence, snake fence, snake-rail fence, Virginia fence", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:movable barrier:gate:turnstile", "at": "root:entity:abstraction-abs:communication:signal-signalin:visual signal:light:traffic light, traffic signal, stoplight", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:keyboard:typewriter keyboard", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:calculator-calc:abacus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:keyboard:typewriter keyboard", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:keyboard:computer keyboard, keypad", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:keyboard:typewriter keyboard", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:shoe shop, shoe-shop, shoe store", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:keyboard:typewriter keyboard", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:bar:lever:key:space bar", "oc": 20}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:keyboard:typewriter keyboard", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:keyboard:typewriter keyboard", "oc": 26}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:canopy:umbrella", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:crocodilian rep:alligator-gator:American alligator, Alligator mississipiensis", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:canopy:umbrella", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:parrot:macaw", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:canopy:umbrella", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bin:ashcan, trash can, garbage can, wastebin, ash bin, ash-bin, ashbin, dustbin, trash barrel, trash bin", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:canopy:umbrella", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:aircraft:lighter-than-ai:balloon", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:canopy:umbrella", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:bearskin, busby, shako", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:canopy:umbrella", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:cowboy hat, ten-gallon hat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:canopy:umbrella", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:fountain", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:canopy:umbrella", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:apparel-wearing:workwear:jean, blue jean, denim", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:canopy:umbrella", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:support:structural memb:upright-vertica:post:maypole", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:canopy:umbrella", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:motorcycle-bike:minibike-motorb:moped", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:canopy:umbrella", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:cap:mortarboard", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:canopy:umbrella", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:rescue equipmen:parachute, chute", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:canopy:umbrella", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:plastic bag", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:canopy:umbrella", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:pop bottle, soda bottle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:canopy:umbrella", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:institution:penal instituti:correctional in:prison, prison house", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:canopy:umbrella", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:scientific inst:magnifier:telescope-scope:astronomical te:radio telescope, radio reflector", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:canopy:umbrella", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:beating-reed in:single-reed ins:sax, saxophone", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:canopy:umbrella", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:handcart-pushca:shopping cart", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:canopy:umbrella", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:reflector:solar dish, solar collector, solar furnace", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:canopy:umbrella", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:surface:horizontal surf:platform:stage", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:canopy:umbrella", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:sweater-jumper:pullover-slipov:sweatshirt", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:canopy:umbrella", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:toyshop", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:canopy:umbrella", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:canopy:umbrella", "oc": 24}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:canopy:umbrella", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:housing-lodging:dwelling-home-d:yurt", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:canopy:umbrella", "at": "root:entity:abstraction-abs:attribute:shape-form:round shape:sphere:ball-globe-orb:globule:bubble", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:unicycle, monocycle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:gymnastic appar:balance beam, beam", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:unicycle, monocycle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:bicycle-bike-wh:bicycle-built-for-two, tandem bicycle, tandem", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:unicycle, monocycle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:croquet ball", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:unicycle, monocycle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:support:structural memb:upright-vertica:post:maypole", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:unicycle, monocycle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:bicycle-bike-wh:mountain bike, all-terrain bike, off-roader", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:unicycle, monocycle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:rescue equipmen:parachute, chute", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:unicycle, monocycle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:institution:penal instituti:correctional in:prison, prison house", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:unicycle, monocycle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:cleaning implem:swab, swob, mop", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:unicycle, monocycle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:tricycle, trike, velocipede", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:unicycle, monocycle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:canopy:umbrella", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:unicycle, monocycle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:unicycle, monocycle", "oc": 39}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:unicycle, monocycle", "at": "root:entity:physical entity:object-physical:geological form:cliff, drop, drop-off", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:piano-pianofort:upright, upright piano", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:keyboard instru:accordion, piano accordion, squeeze box", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:piano-pianofort:upright, upright piano", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:warship-war ves:aircraft carrier, carrier, flattop, attack aircraft carrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:piano-pianofort:upright, upright piano", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bin:ashcan, trash can, garbage can, wastebin, ash bin, ash-bin, ashbin, dustbin, trash barrel, trash bin", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:piano-pianofort:upright, upright piano", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:bannister, banister, balustrade, balusters, handrail", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:piano-pianofort:upright, upright piano", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:beating-reed in:double-reed ins:bassoon", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:piano-pianofort:upright, upright piano", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:piano-pianofort:grand piano, grand", "oc": 5}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:piano-pianofort:upright, upright piano", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:marimba, xylophone", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:piano-pianofort:upright, upright piano", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:radiator", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:piano-pianofort:upright, upright piano", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:piano-pianofort:upright, upright piano", "oc": 38}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:vacuum, vacuum cleaner", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma:black-footed ferret, ferret, Mustela nigripes", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:vacuum, vacuum cleaner", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:bannister, banister, balustrade, balusters, handrail", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:vacuum, vacuum cleaner", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:candle, taper, wax light", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:vacuum, vacuum cleaner", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:staff:crutch", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:vacuum, vacuum cleaner", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:table:desk", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:vacuum, vacuum cleaner", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :forklift", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:vacuum, vacuum cleaner", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:golfcart, golf cart", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:vacuum, vacuum cleaner", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:microwave, microwave oven", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:vacuum, vacuum cleaner", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:miniskirt, mini", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:vacuum, vacuum cleaner", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:table:pool table, billiard table, snooker table", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:vacuum, vacuum cleaner", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:shovel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:vacuum, vacuum cleaner", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:heater-warmer:space heater", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:vacuum, vacuum cleaner", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:cleaning implem:swab, swob, mop", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:vacuum, vacuum cleaner", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:vacuum, vacuum cleaner", "oc": 36}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:jar:vase", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bucket, pail", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:jar:vase", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:buckle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:jar:vase", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pot:coffeepot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:jar:vase", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:table:dining table, board", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:jar:vase", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:glass-drinking :goblet", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:jar:vase", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shade:lampshade, lamp shade", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:jar:vase", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:mask", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:jar:vase", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:handwear-hand w:glove:mitten", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:jar:vase", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:area:patio, terrace", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:jar:vase", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:picket fence, paling", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:jar:vase", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:pitcher, ewer", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:jar:vase", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:pot, flowerpot", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:jar:vase", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:machine-simple :wheel:potter's wheel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:jar:vase", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:excavation:pool:cistern:rain barrel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:jar:vase", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:restaurant, eating house, eating place, eatery", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:jar:vase", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:shaker:saltshaker, salt shaker", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:jar:vase", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:place of worshi:shrine:stupa, tope", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:jar:vase", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pot:teapot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:jar:vase", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:cap:thimble", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:jar:vase", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:jar:vase", "oc": 24}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:jar:vase", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:jug:water jug", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:jar:vase", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:jug:whiskey jug", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:jar:vase", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:cruciferous veg:broccoli", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:jar:vase", "at": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:mixed drink:punch:cup", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:roof:vault", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:altar", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:roof:vault", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:defensive struc:fortification-m:castle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:roof:vault", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:housing-lodging:dwelling-home-d:cliff dwelling", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:roof:vault", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:greenhouse, nursery, glasshouse", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:roof:vault", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:house:residence:palace", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:roof:vault", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:planetarium", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:roof:vault", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:institution:penal instituti:correctional in:prison, prison house", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:roof:vault", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:spotlight, spot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:roof:vault", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:arch:triumphal arch", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:roof:vault", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:roof:vault", "oc": 38}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:fabric-cloth-ma:velvet", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:bird of prey-ra:eagle-bird of J:bald eagle, American eagle, Haliaeetus leucocephalus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:fabric-cloth-ma:velvet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:protective garm:apron", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:fabric-cloth-ma:velvet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:banjo", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:fabric-cloth-ma:velvet", "at": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:towel:bath towel", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:fabric-cloth-ma:velvet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:undergarment-un:brassiere, bra, bandeau", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:fabric-cloth-ma:velvet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:buckle", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:fabric-cloth-ma:velvet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:sweater-jumper:cardigan", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:fabric-cloth-ma:velvet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:staff:crutch", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:fabric-cloth-ma:velvet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:floor cover-flo:mat:doormat, welcome mat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:fabric-cloth-ma:velvet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:guitar:electric guitar", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:fabric-cloth-ma:velvet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:clip:hair slide", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:fabric-cloth-ma:velvet", "at": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:handkerchief, hankie, hanky, hankey", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:fabric-cloth-ma:velvet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:game:puzzle:jigsaw puzzle", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:fabric-cloth-ma:velvet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:knot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:fabric-cloth-ma:velvet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:cap:lens cap, lens cover", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:fabric-cloth-ma:velvet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:mailbag, postbag", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:fabric-cloth-ma:velvet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:footwear:hosiery-hose:tights-leotards:maillot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:fabric-cloth-ma:velvet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:mask", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:fabric-cloth-ma:velvet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:overskirt", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:fabric-cloth-ma:velvet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:nightwear-sleep:pajama, pyjama, pj's, jammies", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:fabric-cloth-ma:velvet", "at": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:towel:paper towel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:fabric-cloth-ma:velvet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:pencil box, pencil case", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:fabric-cloth-ma:velvet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:padding-cushion:cushion:pillow", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:fabric-cloth-ma:velvet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:writing impleme:pen:quill, quill pen", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:fabric-cloth-ma:velvet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:shoe:running shoe", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:fabric-cloth-ma:velvet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:shoe:sandal", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:fabric-cloth-ma:velvet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:safety belt-lif:seat belt, seatbelt", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:fabric-cloth-ma:velvet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:footwear:hosiery-hose:sock", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:fabric-cloth-ma:velvet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:scarf:stole", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:fabric-cloth-ma:velvet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:sofa-couch-loun:convertible-sof:studio couch, day bed", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:fabric-cloth-ma:velvet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:sweater-jumper:pullover-slipov:sweatshirt", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:fabric-cloth-ma:velvet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:blind-screen:curtain-drape-d:theater curtain, theatre curtain", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:fabric-cloth-ma:velvet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:receptacle:tray", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:fabric-cloth-ma:velvet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:fabric-cloth-ma:velvet", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:fabric-cloth-ma:velvet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:case:wallet, billfold, notecase, pocketbook", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:fabric-cloth-ma:velvet", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:fabric-cloth-ma:wool, woolen, woollen", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:slot machine-co:vending machine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:bookshop, bookstore, bookstall", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:slot machine-co:vending machine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:confectionery, confectionary, candy store", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:slot machine-co:vending machine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:package-parcel:packet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:slot machine-co:vending machine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:pop bottle, soda bottle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:slot machine-co:vending machine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:slot machine-co:vending machine", "oc": 46}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:outerwear-overc:gown-robe:vestment", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:altar", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:outerwear-overc:gown-robe:vestment", "at": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:bib", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:outerwear-overc:gown-robe:vestment", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloak", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:outerwear-overc:gown-robe:vestment", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:hoopskirt, crinoline", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:outerwear-overc:gown-robe:vestment", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:robe:kimono", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:outerwear-overc:gown-robe:vestment", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:library", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:outerwear-overc:gown-robe:vestment", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:uniform:military uniform", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:outerwear-overc:gown-robe:vestment", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:overskirt", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:outerwear-overc:gown-robe:vestment", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:pencil box, pencil case", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:outerwear-overc:gown-robe:vestment", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:padding-cushion:cushion:pillow", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:outerwear-overc:gown-robe:vestment", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:floor cover-flo:rug-carpet-carp:prayer rug, prayer mat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:outerwear-overc:gown-robe:vestment", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:shoe shop, shoe-shop, shoe store", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:outerwear-overc:gown-robe:vestment", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:outerwear-overc:gown-robe:vestment", "oc": 30}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:bridge-span:viaduct", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:farm building:barn", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:bridge-span:viaduct", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:outbuilding:shed:boathouse", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:bridge-span:viaduct", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:place of worshi:church, church building", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:bridge-span:viaduct", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:lifting device:crane", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:bridge-span:viaduct", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:support:pier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:bridge-span:viaduct", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:bridge-span:steel arch bridge", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:bridge-span:viaduct", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:roof:vault", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:bridge-span:viaduct", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:bridge-span:viaduct", "oc": 39}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:bridge-span:viaduct", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:wreck", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:bridge-span:viaduct", "at": "root:entity:physical entity:object-physical:geological form:natural elevati:mountain-mount:alp", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:bridge-span:viaduct", "at": "root:entity:physical entity:object-physical:geological form:natural elevati:mountain-mount:volcano", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:bowed stringed :violin, fiddle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:banjo", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:bowed stringed :violin, fiddle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:beating-reed in:double-reed ins:bassoon", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:bowed stringed :violin, fiddle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:bookshop, bookstore, bookstall", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:bowed stringed :violin, fiddle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:bowed stringed :cello, violoncello", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:bowed stringed :violin, fiddle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:drum, membranophone, tympan", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:bowed stringed :violin, fiddle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:guitar:electric guitar", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:bowed stringed :violin, fiddle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:free-reed instr:harmonica, mouth organ, harp, mouth harp", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:bowed stringed :violin, fiddle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:marimba, xylophone", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:bowed stringed :violin, fiddle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:beating-reed in:double-reed ins:oboe, hautboy, hautbois", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:bowed stringed :violin, fiddle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:area:patio, terrace", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:bowed stringed :violin, fiddle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:plunger, plumber's helper", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:bowed stringed :violin, fiddle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:snowplow, snowplough", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:bowed stringed :violin, fiddle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:system:communication s:telecommunicati:television, television system", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:bowed stringed :violin, fiddle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:piano-pianofort:upright, upright piano", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:bowed stringed :violin, fiddle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:bowed stringed :violin, fiddle", "oc": 33}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:volleyball", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:swimsuit-swimwe:bikini, two-piece", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:volleyball", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:tennis ball", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:volleyball", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:volleyball", "oc": 48}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:waffle iron", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:barbershop", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:waffle iron", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:chest", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:waffle iron", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:helmet:crash helmet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:waffle iron", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:table:desk", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:waffle iron", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:weight-free wei:dumbbell", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:waffle iron", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:oven:Dutch oven", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:waffle iron", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shade:lampshade, lamp shade", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:waffle iron", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:bicycle-bike-wh:mountain bike, all-terrain bike, off-roader", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:waffle iron", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:trap:mousetrap", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:waffle iron", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:photographic eq:camera-photogra:Polaroid camera, Polaroid Land camera", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:waffle iron", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:rotating mechan:circle-round:disk-disc:puck, hockey puck", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:waffle iron", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:basket-handbask:shopping basket", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:waffle iron", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:turner-food tur:spatula", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:waffle iron", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:heater-warmer:stove", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:waffle iron", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:vacuum, vacuum cleaner", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:waffle iron", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:waffle iron", "oc": 34}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:clock:wall clock", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:clock:analog clock", "oc": 6}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:clock:wall clock", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:bell cote, bell cot", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:clock:wall clock", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:birdhouse", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:clock:wall clock", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:top-cover:cap:bottlecap", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:clock:wall clock", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:chest", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:clock:wall clock", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:chime, bell, gong", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:clock:wall clock", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:navigational in:compass:magnetic compass", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:clock:wall clock", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:top-cover:manhole cover", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:clock:wall clock", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:supporting stru:framework:rack:plate rack", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:clock:wall clock", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloth covering:bedclothes-bed :quilt, comforter, comfort, puff", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:clock:wall clock", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:restaurant, eating house, eating place, eatery", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:clock:wall clock", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:armor-armour:shield, buckler", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:clock:wall clock", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:sundial", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:clock:wall clock", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:clock:wall clock", "oc": 28}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:clock:wall clock", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:wardrobe, closet, press", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:case:wallet, billfold, notecase, pocketbook", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:backpack, back pack, knapsack, packsack, rucksack, haversack", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:case:wallet, billfold, notecase, pocketbook", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:barbershop", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:case:wallet, billfold, notecase, pocketbook", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:binder, ring-binder", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:case:wallet, billfold, notecase, pocketbook", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:clip:hair slide", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:case:wallet, billfold, notecase, pocketbook", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:lighter, light, igniter, ignitor", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:case:wallet, billfold, notecase, pocketbook", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:mailbox, letter box", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:case:wallet, billfold, notecase, pocketbook", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:pencil box, pencil case", "oc": 7}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:case:wallet, billfold, notecase, pocketbook", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:plastic bag", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:case:wallet, billfold, notecase, pocketbook", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:purse", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:case:wallet, billfold, notecase, pocketbook", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:measuring stick:rule, ruler", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:case:wallet, billfold, notecase, pocketbook", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:case:wallet, billfold, notecase, pocketbook", "oc": 27}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:case:wallet, billfold, notecase, pocketbook", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:creation:product-product:work-piece of w:publication:magazine-mag:comic book", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:case:wallet, billfold, notecase, pocketbook", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:wrapping-wrap-w:jacket:book jacket, dust cover, dust jacket, dust wrapper", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:wardrobe, closet, press", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:bookcase", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:wardrobe, closet, press", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shade:lampshade, lamp shade", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:wardrobe, closet, press", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:mailbox, letter box", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:wardrobe, closet, press", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:white goods:refrigerator, icebox", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:wardrobe, closet, press", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:screen-cover-co:shoji", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:wardrobe, closet, press", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:movable barrier:door:sliding door", "oc": 5}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:wardrobe, closet, press", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:slot machine-co:slot, one-armed bandit", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:wardrobe, closet, press", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:sofa-couch-loun:convertible-sof:studio couch, day bed", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:wardrobe, closet, press", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:chair of state:throne", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:wardrobe, closet, press", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:wardrobe, closet, press", "oc": 35}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:wardrobe, closet, press", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:blind-screen:window blind:window shade", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:aircraft:heavier-than-ai:warplane, military plane", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:warship-war ves:aircraft carrier, carrier, flattop, attack aircraft carrier", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:aircraft:heavier-than-ai:warplane, military plane", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:public transpor:train-railroad :passenger train:bullet train, bullet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:aircraft:heavier-than-ai:warplane, military plane", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:rocket-projecti:missile", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:aircraft:heavier-than-ai:warplane, military plane", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:reflector:solar dish, solar collector, solar furnace", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:aircraft:heavier-than-ai:warplane, military plane", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:warship-war ves:submersible-sub:submarine, pigboat, sub, U-boat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:aircraft:heavier-than-ai:warplane, military plane", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:aircraft:heavier-than-ai:warplane, military plane", "oc": 41}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:aircraft:heavier-than-ai:warplane, military plane", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:airfoil-aerofoi:wing", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:basin:washbasin, handbasin, washbowl, lavabo, wash-hand basin", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bathtub, bathing tub, bath, tub", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:basin:washbasin, handbasin, washbowl, lavabo, wash-hand basin", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:cabinet:medicine chest, medicine cabinet", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:basin:washbasin, handbasin, washbowl, lavabo, wash-hand basin", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dish:bowl:mixing bowl", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:basin:washbasin, handbasin, washbowl, lavabo, wash-hand basin", "at": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:towel:paper towel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:basin:washbasin, handbasin, washbowl, lavabo, wash-hand basin", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:spotlight, spot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:basin:washbasin, handbasin, washbowl, lavabo, wash-hand basin", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:basin:washbasin, handbasin, washbowl, lavabo, wash-hand basin", "oc": 42}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:white goods:washer, automatic washer, washing machine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:cassette", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:white goods:washer, automatic washer, washing machine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:CD player", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:white goods:washer, automatic washer, washing machine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:white goods:dishwasher, dish washer, dishwashing machine", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:white goods:washer, automatic washer, washing machine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:cabinet:medicine chest, medicine cabinet", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:white goods:washer, automatic washer, washing machine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:apparatus-setup:duplicator-copi:photocopier", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:white goods:washer, automatic washer, washing machine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:printer-printin:printer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:white goods:washer, automatic washer, washing machine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:heater-warmer:space heater", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:white goods:washer, automatic washer, washing machine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:wardrobe, closet, press", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:white goods:washer, automatic washer, washing machine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:white goods:washer, automatic washer, washing machine", "oc": 39}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:white goods:washer, automatic washer, washing machine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:blind-screen:window blind:window shade", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:water bottle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:sea turtle-mari:leatherback turtle, leatherback, leathery turtle, Dermochelys coriacea", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:water bottle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Boston bull, Boston terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:water bottle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:boat:small boat:canoe", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:water bottle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:cash machine, cash dispenser, automated teller machine, automatic teller machine, automated teller, automatic teller, ATM", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:water bottle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:shaker:cocktail shaker", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:water bottle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:gong, tam-tam", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:water bottle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:hair spray", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:water bottle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:hammer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:water bottle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:bicycle-bike-wh:mountain bike, all-terrain bike, off-roader", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:water bottle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:shelter:tent-collapsibl:mountain tent", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:water bottle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:top-cover:cap:nipple", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:water bottle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:pill bottle", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:water bottle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:padding-cushion:cushion:pillow", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:water bottle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:pitcher, ewer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:water bottle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:pop bottle, soda bottle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:water bottle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:spotlight, spot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:water bottle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:optical device:lens-lense-lens:converging lens:sunglass", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:water bottle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cream-ointment-:sunscreen, sunblock, sun blocker", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:water bottle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:toilet seat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:water bottle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:light-light sou:torch", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:water bottle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:water bottle", "oc": 23}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:water bottle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:jug:water jug", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:water bottle", "at": "root:entity:physical entity:object-physical:geological form:natural elevati:mountain-mount:alp", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:water bottle", "at": "root:entity:abstraction-abs:attribute:shape-form:round shape:sphere:ball-globe-orb:globule:bubble", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:water bottle", "at": "root:entity:physical entity:object-physical:geological form:natural elevati:mountain-mount:volcano", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:jug:water jug", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bin:ashcan, trash can, garbage can, wastebin, ash bin, ash-bin, ashbin, dustbin, trash barrel, trash bin", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:jug:water jug", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:jar:beaker", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:jug:water jug", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:glass-drinking :beer glass", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:jug:water jug", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:shaker:cocktail shaker", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:jug:water jug", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:drinking vessel:mug:coffee mug", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:jug:water jug", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pot:coffeepot", "oc": 5}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:jug:water jug", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:table:dining table, board", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:jug:water jug", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:coffee maker:espresso maker", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:jug:water jug", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:iron, smoothing iron", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:jug:water jug", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:can-tin-tin can:milk can", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:jug:water jug", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:breathing devic:oxygen mask", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:jug:water jug", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:pitcher, ewer", "oc": 12}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:jug:water jug", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:pot, flowerpot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:jug:water jug", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:excavation:pool:cistern:rain barrel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:jug:water jug", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:shaker:saltshaker, salt shaker", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:jug:water jug", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:cap:shower cap", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:jug:water jug", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:heater-warmer:space heater", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:jug:water jug", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pot:teapot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:jug:water jug", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:jar:vase", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:jug:water jug", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:water bottle", "oc": 5}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:jug:water jug", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:jug:water jug", "oc": 8}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:tank-storage ta:reservoir:water tower", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:outbuilding:shed:boathouse", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:tank-storage ta:reservoir:water tower", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:roof:dome", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:tank-storage ta:reservoir:water tower", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:scientific inst:magnifier:telescope-scope:astronomical te:radio telescope, radio reflector", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:tank-storage ta:reservoir:water tower", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:tank-storage ta:reservoir:water tower", "oc": 46}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:tank-storage ta:reservoir:water tower", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:wreck", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:jug:whiskey jug", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:barrel, cask", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:jug:whiskey jug", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:beer bottle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:jug:whiskey jug", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:glass-drinking :beer glass", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:jug:whiskey jug", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:cabinet:china cabinet, china closet", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:jug:whiskey jug", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:drinking vessel:mug:coffee mug", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:jug:whiskey jug", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:writing impleme:pen:fountain pen", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:jug:whiskey jug", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:measure:measuring cup", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:jug:whiskey jug", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:can-tin-tin can:milk can", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:jug:whiskey jug", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:pitcher, ewer", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:jug:whiskey jug", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:drill:power drill", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:jug:whiskey jug", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:restaurant, eating house, eating place, eatery", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:jug:whiskey jug", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:jar:vase", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:jug:whiskey jug", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:water bottle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:jug:whiskey jug", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:jug:whiskey jug", "oc": 34}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:acoustic device:whistle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:coelenterate-cn:jellyfish", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:acoustic device:whistle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:gastropod-univa:conch", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:acoustic device:whistle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:writing impleme:pen:ballpoint, ballpoint pen, ballpen, Biro", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:acoustic device:whistle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:neckwear:necktie-tie:bolo tie, bolo, bola tie, bola", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:acoustic device:whistle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:cleaning implem:broom", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:acoustic device:whistle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:CD player", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:acoustic device:whistle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:connection-conn:attachment-bond:ligament:chain", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:acoustic device:whistle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:drumstick", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:acoustic device:whistle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:muzzle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:acoustic device:whistle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:pipe:panpipe, pandean pipe, syrinx", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:acoustic device:whistle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:sharpener:pencil sharpener", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:acoustic device:whistle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:ping-pong ball", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:acoustic device:whistle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:screwdriver", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:acoustic device:whistle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:toilet seat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:acoustic device:whistle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:basin:washbasin, handbasin, washbowl, lavabo, wash-hand basin", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:acoustic device:whistle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:acoustic device:whistle", "oc": 33}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:attire-garb-dre:hairpiece-false:wig", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:setter:Irish setter, red setter", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:attire-garb-dre:hairpiece-false:wig", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:water spaniel:Irish water spaniel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:attire-garb-dre:hairpiece-false:wig", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:poodle-poodle d:toy poodle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:attire-garb-dre:hairpiece-false:wig", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:brass-brass ins:French horn, horn", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:attire-garb-dre:hairpiece-false:wig", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:womans clothing:dress-frock:gown", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:attire-garb-dre:hairpiece-false:wig", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cosmetic:makeup-make-up-:lipstick, lip rouge", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:attire-garb-dre:hairpiece-false:wig", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:footwear:hosiery-hose:tights-leotards:maillot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:attire-garb-dre:hairpiece-false:wig", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:maraca", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:attire-garb-dre:hairpiece-false:wig", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:miniskirt, mini", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:attire-garb-dre:hairpiece-false:wig", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:plunger, plumber's helper", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:attire-garb-dre:hairpiece-false:wig", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:scarf:stole", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:attire-garb-dre:hairpiece-false:wig", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:swimsuit-swimwe:swimming trunks, bathing trunks", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:attire-garb-dre:hairpiece-false:wig", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:attire-garb-dre:hairpiece-false:wig", "oc": 38}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:screen:window screen", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:domestic cat-ho:tabby, tabby cat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:screen:window screen", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:dipterous insec:fly", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:screen:window screen", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:orthopterous in:cricket", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:screen:window screen", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:theater-theatre:cinema, movie theater, movie theatre, movie house, picture palace", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:screen:window screen", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:table:desk", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:screen:window screen", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:fire engine, fire truck", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:screen:window screen", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:fountain", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:screen:window screen", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:gymnastic appar:horizontal bar, high bar", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:screen:window screen", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:monitor", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:screen:window screen", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:area:patio, terrace", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:screen:window screen", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:pencil box, pencil case", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:screen:window screen", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:movable barrier:door:sliding door", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:screen:window screen", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:trap:web-entanglemen:spider web, spider's web", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:screen:window screen", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:filter:strainer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:screen:window screen", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:screen:window screen", "oc": 33}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:screen:window screen", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:blind-screen:window blind:window shade", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:screen:window screen", "at": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:mixed drink:punch:eggnog", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:blind-screen:window blind:window shade", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Scotch terrier, Scottish terrier, Scottie", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:blind-screen:window blind:window shade", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:lagomorph-gnawi:leporid-leporid:rabbit-coney-co:Angora, Angora rabbit", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:blind-screen:window blind:window shade", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bathtub, bathing tub, bath, tub", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:blind-screen:window blind:window shade", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:coil, spiral, volute, whorl, helix", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:blind-screen:window blind:window shade", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:fan:electric fan, blower", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:blind-screen:window blind:window shade", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:envelope", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:blind-screen:window blind:window shade", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:bedroom furnitu:bed:four-poster", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:blind-screen:window blind:window shade", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pan-cooking pan:frying pan, frypan, skillet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:blind-screen:window blind:window shade", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:matchstick", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:blind-screen:window blind:window shade", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:cabinet:medicine chest, medicine cabinet", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:blind-screen:window blind:window shade", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:screen:mosquito net", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:blind-screen:window blind:window shade", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:strengthener-re:brace:neck brace", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:blind-screen:window blind:window shade", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:institution:penal instituti:correctional in:prison, prison house", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:blind-screen:window blind:window shade", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloth covering:bedclothes-bed :quilt, comforter, comfort, puff", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:blind-screen:window blind:window shade", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:radiator", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:blind-screen:window blind:window shade", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:screen-cover-co:shoji", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:blind-screen:window blind:window shade", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:movable barrier:door:sliding door", "oc": 5}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:blind-screen:window blind:window shade", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:heater-warmer:space heater", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:blind-screen:window blind:window shade", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:screen:window screen", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:blind-screen:window blind:window shade", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:blind-screen:window blind:window shade", "oc": 25}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:neckwear:necktie-tie:Windsor tie", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:elapid-elapid s:mamba:black mamba-Den:green mamba", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:neckwear:necktie-tie:Windsor tie", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:keyboard instru:accordion, piano accordion, squeeze box", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:neckwear:necktie-tie:Windsor tie", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:bicycle-bike-wh:bicycle-built-for-two, tandem bicycle, tandem", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:neckwear:necktie-tie:Windsor tie", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:neckwear:necktie-tie:bow tie, bow-tie, bowtie", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:neckwear:necktie-tie:Windsor tie", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:hair spray", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:neckwear:necktie-tie:Windsor tie", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:protective garm:knee pad", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:neckwear:necktie-tie:Windsor tie", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:knot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:neckwear:necktie-tie:Windsor tie", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:coat:lab coat, laboratory coat", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:neckwear:necktie-tie:Windsor tie", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:knife:letter opener, paper knife, paperknife", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:neckwear:necktie-tie:Windsor tie", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:miniskirt, mini", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:neckwear:necktie-tie:Windsor tie", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:breathing devic:oxygen mask", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:neckwear:necktie-tie:Windsor tie", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:institution:penal instituti:correctional in:prison, prison house", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:neckwear:necktie-tie:Windsor tie", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:purse", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:neckwear:necktie-tie:Windsor tie", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:white goods:refrigerator, icebox", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:neckwear:necktie-tie:Windsor tie", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:sheath:scabbard", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:neckwear:necktie-tie:Windsor tie", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:safety belt-lif:seat belt, seatbelt", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:neckwear:necktie-tie:Windsor tie", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:suit, suit of clothes", "oc": 17}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:neckwear:necktie-tie:Windsor tie", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:blind-screen:window blind:window shade", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:neckwear:necktie-tie:Windsor tie", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:neckwear:necktie-tie:Windsor tie", "oc": 14}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:wine bottle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:beer bottle", "oc": 5}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:wine bottle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:carton", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:wine bottle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:armor-armour:body armor-body:chain mail, ring mail, mail, chain armor, chain armour, ring armor, ring armour", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:wine bottle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:chest", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:wine bottle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:opener:bottle opener:corkscrew, bottle screw", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:wine bottle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:fountain", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:wine bottle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:writing impleme:pen:fountain pen", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:wine bottle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:piano-pianofort:grand piano, grand", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:wine bottle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:perfume, essence", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:wine bottle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:pop bottle, soda bottle", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:wine bottle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:photographic eq:camera-photogra:reflex camera", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:wine bottle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:safety belt-lif:seat belt, seatbelt", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:wine bottle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:breathing devic:snorkel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:wine bottle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:spotlight, spot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:wine bottle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:medical instrum:syringe", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:wine bottle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:toaster", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:wine bottle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:tobacco shop, tobacconist shop, tobacconist", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:wine bottle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:light-light sou:torch", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:wine bottle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:water bottle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:wine bottle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:wine bottle", "oc": 17}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:wine bottle", "at": "root:entity:abstraction-abs:communication:signal-signalin:visual signal:light:traffic light, traffic signal, stoplight", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:wine bottle", "at": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:wine-vino:red wine", "oc": 7}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:airfoil-aerofoi:wing", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:warship-war ves:aircraft carrier, carrier, flattop, attack aircraft carrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:airfoil-aerofoi:wing", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:aircraft:heavier-than-ai:airplane-aeropl:airliner", "oc": 9}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:airfoil-aerofoi:wing", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:eraser:rubber eraser, rubber, pencil eraser", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:airfoil-aerofoi:wing", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:aircraft:heavier-than-ai:warplane, military plane", "oc": 12}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:airfoil-aerofoi:wing", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:airfoil-aerofoi:wing", "oc": 27}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pan-cooking pan:wok", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crab:king crab, Alaska crab, Alaskan king crab, Alaska king crab, Paralithodes camtschatica", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pan-cooking pan:wok", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pot:caldron, cauldron", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pan-cooking pan:wok", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:crate", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pan-cooking pan:wok", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:oven:Dutch oven", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pan-cooking pan:wok", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:coffee maker:espresso maker", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pan-cooking pan:wok", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pan-cooking pan:frying pan, frypan, skillet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pan-cooking pan:wok", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:gong, tam-tam", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pan-cooking pan:wok", "at": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:towel:paper towel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pan-cooking pan:wok", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:sharpener:pencil sharpener", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pan-cooking pan:wok", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:machine-simple :wheel:potter's wheel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pan-cooking pan:wok", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:spindle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pan-cooking pan:wok", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:steel drum", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pan-cooking pan:wok", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:waffle iron", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pan-cooking pan:wok", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pan-cooking pan:wok", "oc": 22}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pan-cooking pan:wok", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:stew:hot pot, hotpot", "oc": 12}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pan-cooking pan:wok", "at": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :ingredient-fixi:flavorer-flavou:condiment:sauce:spaghetti sauce:carbonara", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:article:ware:tableware:cutlery-eating :spoon:wooden spoon", "at": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:towel:bath towel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:article:ware:tableware:cutlery-eating :spoon:wooden spoon", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:birdhouse", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:article:ware:tableware:cutlery-eating :spoon:wooden spoon", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:cleaning implem:broom", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:article:ware:tableware:cutlery-eating :spoon:wooden spoon", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:cowboy hat, ten-gallon hat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:article:ware:tableware:cutlery-eating :spoon:wooden spoon", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:folding chair", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:article:ware:tableware:cutlery-eating :spoon:wooden spoon", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:marketplace-mar:grocery store, grocery, food market, market", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:article:ware:tableware:cutlery-eating :spoon:wooden spoon", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:sheath:holster", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:article:ware:tableware:cutlery-eating :spoon:wooden spoon", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:sandglass:hourglass", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:article:ware:tableware:cutlery-eating :spoon:wooden spoon", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:ladle", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:article:ware:tableware:cutlery-eating :spoon:wooden spoon", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:knife:letter opener, paper knife, paperknife", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:article:ware:tableware:cutlery-eating :spoon:wooden spoon", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:maraca", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:article:ware:tableware:cutlery-eating :spoon:wooden spoon", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:matchstick", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:article:ware:tableware:cutlery-eating :spoon:wooden spoon", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:mortar", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:article:ware:tableware:cutlery-eating :spoon:wooden spoon", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:lock:padlock", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:article:ware:tableware:cutlery-eating :spoon:wooden spoon", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:applicator-appl:paintbrush", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:article:ware:tableware:cutlery-eating :spoon:wooden spoon", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:filter:strainer", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:article:ware:tableware:cutlery-eating :spoon:wooden spoon", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pan-cooking pan:wok", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:article:ware:tableware:cutlery-eating :spoon:wooden spoon", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:article:ware:tableware:cutlery-eating :spoon:wooden spoon", "oc": 24}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:article:ware:tableware:cutlery-eating :spoon:wooden spoon", "at": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :ingredient-fixi:flavorer-flavou:condiment:dip:guacamole", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:article:ware:tableware:cutlery-eating :spoon:wooden spoon", "at": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:loaf of bread-l:meat loaf, meatloaf", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:article:ware:tableware:cutlery-eating :spoon:wooden spoon", "at": "root:entity:physical entity:matter:substance:food-nutrient:beverage-drink-:coffee-java:espresso", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:fabric-cloth-ma:wool, woolen, woollen", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:odd-toed ungula:equine-equid:zebra", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:fabric-cloth-ma:wool, woolen, woollen", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:bonnet, poke bonnet", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:fabric-cloth-ma:wool, woolen, woollen", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:neckwear:necktie-tie:bow tie, bow-tie, bowtie", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:fabric-cloth-ma:wool, woolen, woollen", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:sweater-jumper:cardigan", "oc": 5}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:fabric-cloth-ma:wool, woolen, woollen", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:confectionery, confectionary, candy store", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:fabric-cloth-ma:wool, woolen, woollen", "at": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:dishrag, dishcloth", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:fabric-cloth-ma:wool, woolen, woollen", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:coat:fur coat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:fabric-cloth-ma:wool, woolen, woollen", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:knot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:fabric-cloth-ma:wool, woolen, woollen", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:handwear-hand w:glove:mitten", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:fabric-cloth-ma:wool, woolen, woollen", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:nail", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:fabric-cloth-ma:wool, woolen, woollen", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloth covering:bedclothes-bed :quilt, comforter, comfort, puff", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:fabric-cloth-ma:wool, woolen, woollen", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:mask:face mask:ski mask", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:fabric-cloth-ma:wool, woolen, woollen", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:footwear:hosiery-hose:sock", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:fabric-cloth-ma:wool, woolen, woollen", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:spindle", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:fabric-cloth-ma:wool, woolen, woollen", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:scarf:stole", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:fabric-cloth-ma:wool, woolen, woollen", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:plaything-toy:teddy, teddy bear", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:fabric-cloth-ma:wool, woolen, woollen", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:fabric-cloth-ma:wool, woolen, woollen", "oc": 15}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:fabric-cloth-ma:wool, woolen, woollen", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:mushroom", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:fabric-cloth-ma:wool, woolen, woollen", "at": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:mixed drink:punch:cup", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:rail fence:worm fence, snake fence, snake-rail fence, Virginia fence", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:gallinaceous bi:game bird:phasianid:partridge", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:rail fence:worm fence, snake fence, snake-rail fence, Virginia fence", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:Boston bull, Boston terrier", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:rail fence:worm fence, snake fence, snake-rail fence, Virginia fence", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:wildcat:lynx, catamount", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:rail fence:worm fence, snake fence, snake-rail fence, Virginia fence", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:viverrine-viver:mongoose", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:rail fence:worm fence, snake fence, snake-rail fence, Virginia fence", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:sheep:ram, tup", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:rail fence:worm fence, snake fence, snake-rail fence, Virginia fence", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:farm building:barn", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:rail fence:worm fence, snake fence, snake-rail fence, Virginia fence", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:chainlink fence", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:rail fence:worm fence, snake fence, snake-rail fence, Virginia fence", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:bench:park bench", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:rail fence:worm fence, snake fence, snake-rail fence, Virginia fence", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:picket fence, paling", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:rail fence:worm fence, snake fence, snake-rail fence, Virginia fence", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:snowplow, snowplough", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:rail fence:worm fence, snake fence, snake-rail fence, Virginia fence", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:rail fence:worm fence, snake fence, snake-rail fence, Virginia fence", "oc": 38}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:wreck", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:breakwater, groin, groyne, mole, bulwark, seawall, jetty", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:wreck", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:boat:sea boat:lifeboat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:wreck", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:sarong", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:wreck", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:sailing vessel-:schooner", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:wreck", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:tank-storage ta:reservoir:water tower", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:wreck", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:wreck", "oc": 44}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:wreck", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:person-individu:explorer-advent:diver-frogman-u:scuba diver", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:boat:small boat:yawl", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:amphibian, amphibious vehicle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:boat:small boat:yawl", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:sailing vessel-:sailboat-sailin:catamaran", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:boat:small boat:yawl", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:landing-landing:dock, dockage, docking facility", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:boat:small boat:yawl", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:boat:sea boat:lifeboat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:boat:small boat:yawl", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:rescue equipmen:parachute, chute", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:boat:small boat:yawl", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:sailing vessel-:schooner", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:boat:small boat:yawl", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:sailing vessel-:sailboat-sailin:trimaran", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:boat:small boat:yawl", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:boat:small boat:yawl", "oc": 38}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:boat:small boat:yawl", "at": "root:entity:physical entity:object-physical:geological form:shore:lakeside, lakeshore", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:housing-lodging:dwelling-home-d:yurt", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:farm building:barn", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:housing-lodging:dwelling-home-d:yurt", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:roof:dome", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:housing-lodging:dwelling-home-d:yurt", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:support:structural memb:upright-vertica:post:maypole", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:housing-lodging:dwelling-home-d:yurt", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:housing-lodging:dwelling-home-d:yurt", "oc": 46}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:web site, website, internet site, site", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:web site, website, internet site, site", "oc": 50}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:creation:product-product:work-piece of w:publication:magazine-mag:comic book", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:rodent-gnawer:squirrel:tree squirrel:fox squirrel, eastern fox squirrel, Sciurus niger", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:creation:product-product:work-piece of w:publication:magazine-mag:comic book", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:bookshop, bookstore, bookstall", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:creation:product-product:work-piece of w:publication:magazine-mag:comic book", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:confectionery, confectionary, candy store", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:creation:product-product:work-piece of w:publication:magazine-mag:comic book", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:supporting stru:framework:honeycomb", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:creation:product-product:work-piece of w:publication:magazine-mag:comic book", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:game:puzzle:jigsaw puzzle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:creation:product-product:work-piece of w:publication:magazine-mag:comic book", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:library", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:creation:product-product:work-piece of w:publication:magazine-mag:comic book", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:package-parcel:packet", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:creation:product-product:work-piece of w:publication:magazine-mag:comic book", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:firearm-piece-s:rifle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:creation:product-product:work-piece of w:publication:magazine-mag:comic book", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:eraser:rubber eraser, rubber, pencil eraser", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:creation:product-product:work-piece of w:publication:magazine-mag:comic book", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:slot machine-co:slot, one-armed bandit", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:creation:product-product:work-piece of w:publication:magazine-mag:comic book", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:toyshop", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:creation:product-product:work-piece of w:publication:magazine-mag:comic book", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:wine bottle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:creation:product-product:work-piece of w:publication:magazine-mag:comic book", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:creation:product-product:work-piece of w:publication:magazine-mag:comic book", "oc": 32}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:creation:product-product:work-piece of w:publication:magazine-mag:comic book", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:wrapping-wrap-w:jacket:book jacket, dust cover, dust jacket, dust wrapper", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:game:puzzle:crossword puzzle, crossword", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:buckle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:game:puzzle:crossword puzzle, crossword", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:measure:measuring cup", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:game:puzzle:crossword puzzle, crossword", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:breathing devic:oxygen mask", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:game:puzzle:crossword puzzle, crossword", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:remote control, remote", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:game:puzzle:crossword puzzle, crossword", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:shoe shop, shoe-shop, shoe store", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:game:puzzle:crossword puzzle, crossword", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:game:puzzle:crossword puzzle, crossword", "oc": 42}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:game:puzzle:crossword puzzle, crossword", "at": "root:entity:physical entity:matter:substance:food-nutrient:fare:menu", "oc": 2}, {"rt": "root:entity:abstraction-abs:communication:sign:street sign", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:barbershop", "oc": 2}, {"rt": "root:entity:abstraction-abs:communication:sign:street sign", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:memorial-monume:brass, memorial tablet, plaque", "oc": 1}, {"rt": "root:entity:abstraction-abs:communication:sign:street sign", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:chainlink fence", "oc": 1}, {"rt": "root:entity:abstraction-abs:communication:sign:street sign", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:theater-theatre:cinema, movie theater, movie theatre, movie house, picture palace", "oc": 1}, {"rt": "root:entity:abstraction-abs:communication:sign:street sign", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:lifting device:crane", "oc": 1}, {"rt": "root:entity:abstraction-abs:communication:sign:street sign", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo:jeep, landrover", "oc": 1}, {"rt": "root:entity:abstraction-abs:communication:sign:street sign", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:mailbox, letter box", "oc": 1}, {"rt": "root:entity:abstraction-abs:communication:sign:street sign", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:timer:parking meter", "oc": 1}, {"rt": "root:entity:abstraction-abs:communication:sign:street sign", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:machine-simple :wheel:pinwheel", "oc": 1}, {"rt": "root:entity:abstraction-abs:communication:sign:street sign", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:institution:penal instituti:correctional in:prison, prison house", "oc": 1}, {"rt": "root:entity:abstraction-abs:communication:sign:street sign", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:shoe:running shoe", "oc": 1}, {"rt": "root:entity:abstraction-abs:communication:sign:street sign", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:signboard-sign:scoreboard", "oc": 1}, {"rt": "root:entity:abstraction-abs:communication:sign:street sign", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:handcart-pushca:shopping cart", "oc": 1}, {"rt": "root:entity:abstraction-abs:communication:sign:street sign", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:canopy:umbrella", "oc": 1}, {"rt": "root:entity:abstraction-abs:communication:sign:street sign", "at": "root:entity:abstraction-abs:communication:sign:street sign", "oc": 34}, {"rt": "root:entity:abstraction-abs:communication:sign:street sign", "at": "root:entity:abstraction-abs:communication:signal-signalin:visual signal:light:traffic light, traffic signal, stoplight", "oc": 1}, {"rt": "root:entity:abstraction-abs:communication:signal-signalin:visual signal:light:traffic light, traffic signal, stoplight", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:piciform bird:toucan", "oc": 1}, {"rt": "root:entity:abstraction-abs:communication:signal-signalin:visual signal:light:traffic light, traffic signal, stoplight", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:clock:digital clock", "oc": 1}, {"rt": "root:entity:abstraction-abs:communication:signal-signalin:visual signal:light:traffic light, traffic signal, stoplight", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:grate-grating:grille, radiator grille", "oc": 1}, {"rt": "root:entity:abstraction-abs:communication:signal-signalin:visual signal:light:traffic light, traffic signal, stoplight", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:house:residence:palace", "oc": 1}, {"rt": "root:entity:abstraction-abs:communication:signal-signalin:visual signal:light:traffic light, traffic signal, stoplight", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:institution:penal instituti:correctional in:prison, prison house", "oc": 1}, {"rt": "root:entity:abstraction-abs:communication:signal-signalin:visual signal:light:traffic light, traffic signal, stoplight", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:public transpor:bus-autobus-coa:school bus", "oc": 1}, {"rt": "root:entity:abstraction-abs:communication:signal-signalin:visual signal:light:traffic light, traffic signal, stoplight", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:footwear:hosiery-hose:sock", "oc": 1}, {"rt": "root:entity:abstraction-abs:communication:signal-signalin:visual signal:light:traffic light, traffic signal, stoplight", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:arch:triumphal arch", "oc": 1}, {"rt": "root:entity:abstraction-abs:communication:signal-signalin:visual signal:light:traffic light, traffic signal, stoplight", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:canopy:umbrella", "oc": 1}, {"rt": "root:entity:abstraction-abs:communication:signal-signalin:visual signal:light:traffic light, traffic signal, stoplight", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:unicycle, monocycle", "oc": 2}, {"rt": "root:entity:abstraction-abs:communication:signal-signalin:visual signal:light:traffic light, traffic signal, stoplight", "at": "root:entity:abstraction-abs:communication:sign:street sign", "oc": 1}, {"rt": "root:entity:abstraction-abs:communication:signal-signalin:visual signal:light:traffic light, traffic signal, stoplight", "at": "root:entity:abstraction-abs:communication:signal-signalin:visual signal:light:traffic light, traffic signal, stoplight", "oc": 38}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:wrapping-wrap-w:jacket:book jacket, dust cover, dust jacket, dust wrapper", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crab:fiddler crab", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:wrapping-wrap-w:jacket:book jacket, dust cover, dust jacket, dust wrapper", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloth covering:dressing-medica:bandage-patch:adhesive bandag:Band Aid", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:wrapping-wrap-w:jacket:book jacket, dust cover, dust jacket, dust wrapper", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:barbershop", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:wrapping-wrap-w:jacket:book jacket, dust cover, dust jacket, dust wrapper", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:bookshop, bookstore, bookstall", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:wrapping-wrap-w:jacket:book jacket, dust cover, dust jacket, dust wrapper", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:carton", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:wrapping-wrap-w:jacket:book jacket, dust cover, dust jacket, dust wrapper", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:envelope", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:wrapping-wrap-w:jacket:book jacket, dust cover, dust jacket, dust wrapper", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:system:maze, labyrinth", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:wrapping-wrap-w:jacket:book jacket, dust cover, dust jacket, dust wrapper", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:firearm-piece-s:rifle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:wrapping-wrap-w:jacket:book jacket, dust cover, dust jacket, dust wrapper", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :tractor", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:wrapping-wrap-w:jacket:book jacket, dust cover, dust jacket, dust wrapper", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:creation:product-product:work-piece of w:publication:magazine-mag:comic book", "oc": 10}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:wrapping-wrap-w:jacket:book jacket, dust cover, dust jacket, dust wrapper", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:wrapping-wrap-w:jacket:book jacket, dust cover, dust jacket, dust wrapper", "oc": 28}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:wrapping-wrap-w:jacket:book jacket, dust cover, dust jacket, dust wrapper", "at": "root:entity:physical entity:matter:substance:food-nutrient:fare:menu", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:wrapping-wrap-w:jacket:book jacket, dust cover, dust jacket, dust wrapper", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:entree-main cou:plate", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:fare:menu", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bin:ashcan, trash can, garbage can, wastebin, ash bin, ash-bin, ashbin, dustbin, trash barrel, trash bin", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:fare:menu", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:memorial-monume:brass, memorial tablet, plaque", "oc": 2}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:fare:menu", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:envelope", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:fare:menu", "at": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:handkerchief, hankie, hanky, hankey", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:fare:menu", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:signboard-sign:scoreboard", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:fare:menu", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:slot machine-co:vending machine", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:fare:menu", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:web site, website, internet site, site", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:fare:menu", "at": "root:entity:physical entity:matter:substance:food-nutrient:fare:menu", "oc": 42}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:entree-main cou:plate", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:table:dining table, board", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:entree-main cou:plate", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:ping-pong ball", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:entree-main cou:plate", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dish:bowl:soup bowl", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:entree-main cou:plate", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pan-cooking pan:wok", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:entree-main cou:plate", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:entree-main cou:plate", "oc": 21}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:entree-main cou:plate", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:soup:consomme", "oc": 3}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:entree-main cou:plate", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:stew:hot pot, hotpot", "oc": 2}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:entree-main cou:plate", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:dessert-sweet-a:frozen dessert:ice cream, icecream", "oc": 5}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:entree-main cou:plate", "at": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:cracker:pretzel", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:entree-main cou:plate", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:snack food:sandwich:hamburger-beefb:cheeseburger", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:entree-main cou:plate", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:snack food:sandwich:hotdog, hot dog, red hot", "oc": 5}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:entree-main cou:plate", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:root vegetable:potato-white po:mashed potato", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:entree-main cou:plate", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:fig", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:entree-main cou:plate", "at": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :ingredient-fixi:flavorer-flavou:condiment:sauce:spaghetti sauce:carbonara", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:entree-main cou:plate", "at": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:loaf of bread-l:meat loaf, meatloaf", "oc": 2}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:entree-main cou:plate", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:potpie", "oc": 2}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:entree-main cou:plate", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:burrito", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :ingredient-fixi:flavorer-flavou:condiment:dip:guacamole", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:pot, flowerpot", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :ingredient-fixi:flavorer-flavou:condiment:dip:guacamole", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dish:bowl:soup bowl", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :ingredient-fixi:flavorer-flavou:condiment:dip:guacamole", "at": "root:entity:physical entity:matter:substance:food-nutrient:fare:menu", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :ingredient-fixi:flavorer-flavou:condiment:dip:guacamole", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:entree-main cou:plate", "oc": 2}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :ingredient-fixi:flavorer-flavou:condiment:dip:guacamole", "at": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :ingredient-fixi:flavorer-flavou:condiment:dip:guacamole", "oc": 39}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :ingredient-fixi:flavorer-flavou:condiment:dip:guacamole", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:stew:hot pot, hotpot", "oc": 2}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :ingredient-fixi:flavorer-flavou:condiment:dip:guacamole", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:dessert-sweet-a:frozen dessert:ice cream, icecream", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :ingredient-fixi:flavorer-flavou:condiment:dip:guacamole", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:squash:winter squash:acorn squash", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :ingredient-fixi:flavorer-flavou:condiment:dip:guacamole", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:pizza, pizza pie", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :ingredient-fixi:flavorer-flavou:condiment:dip:guacamole", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:burrito", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:soup:consomme", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:echinoderm:sea cucumber, holothurian", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:soup:consomme", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:cooker:Crock Pot", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:soup:consomme", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:glass-drinking :goblet", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:soup:consomme", "at": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:handkerchief, hankie, hanky, hankey", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:soup:consomme", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:pick, plectrum, plectron", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:soup:consomme", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dish:bowl:soup bowl", "oc": 8}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:soup:consomme", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:entree-main cou:plate", "oc": 2}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:soup:consomme", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:soup:consomme", "oc": 29}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:soup:consomme", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:stew:hot pot, hotpot", "oc": 2}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:soup:consomme", "at": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :ingredient-fixi:flavorer-flavou:condiment:sauce:spaghetti sauce:carbonara", "oc": 3}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:soup:consomme", "at": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :ingredient-fixi:flavorer-flavou:condiment:sauce:chocolate sauce, chocolate syrup", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:stew:hot pot, hotpot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:oven:Dutch oven", "oc": 2}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:stew:hot pot, hotpot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pan-cooking pan:wok", "oc": 3}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:stew:hot pot, hotpot", "at": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :ingredient-fixi:flavorer-flavou:condiment:dip:guacamole", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:stew:hot pot, hotpot", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:stew:hot pot, hotpot", "oc": 41}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:stew:hot pot, hotpot", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:root vegetable:potato-white po:mashed potato", "oc": 2}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:stew:hot pot, hotpot", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:fig", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:dessert-sweet-a:pudding-pud:trifle", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:dessert-sweet-a:pudding-pud:trifle", "oc": 46}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:dessert-sweet-a:pudding-pud:trifle", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:dessert-sweet-a:frozen dessert:ice cream, icecream", "oc": 2}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:dessert-sweet-a:pudding-pud:trifle", "at": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:mixed drink:punch:eggnog", "oc": 2}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:dessert-sweet-a:frozen dessert:ice cream, icecream", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:big cat-cat:lion, king of beasts, Panthera leo", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:dessert-sweet-a:frozen dessert:ice cream, icecream", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:candle, taper, wax light", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:dessert-sweet-a:frozen dessert:ice cream, icecream", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:oven:Dutch oven", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:dessert-sweet-a:frozen dessert:ice cream, icecream", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:clip:hair slide", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:dessert-sweet-a:frozen dessert:ice cream, icecream", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dish:bowl:mixing bowl", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:dessert-sweet-a:frozen dessert:ice cream, icecream", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:savings bank-co:piggy bank, penny bank", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:dessert-sweet-a:frozen dessert:ice cream, icecream", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:toaster", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:dessert-sweet-a:frozen dessert:ice cream, icecream", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:entree-main cou:plate", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:dessert-sweet-a:frozen dessert:ice cream, icecream", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:dessert-sweet-a:pudding-pud:trifle", "oc": 4}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:dessert-sweet-a:frozen dessert:ice cream, icecream", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:dessert-sweet-a:frozen dessert:ice cream, icecream", "oc": 28}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:dessert-sweet-a:frozen dessert:ice cream, icecream", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:root vegetable:potato-white po:mashed potato", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:dessert-sweet-a:frozen dessert:ice cream, icecream", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:berry:strawberry", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:dessert-sweet-a:frozen dessert:ice cream, icecream", "at": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :ingredient-fixi:flavorer-flavou:condiment:sauce:chocolate sauce, chocolate syrup", "oc": 6}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:dessert-sweet-a:frozen dessert:ice cream, icecream", "at": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:mixed drink:punch:cup", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:dessert-sweet-a:frozen dessert:ice cream, icecream", "at": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:mixed drink:punch:eggnog", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:dessert-sweet-a:frozen dessert:ice lolly, lolly, lollipop, popsicle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:elapid-elapid s:cobra:Indian cobra, Naja naja", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:dessert-sweet-a:frozen dessert:ice lolly, lolly, lollipop, popsicle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:coraciiform bir:hornbill", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:dessert-sweet-a:frozen dessert:ice lolly, lolly, lollipop, popsicle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:setter:English setter", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:dessert-sweet-a:frozen dessert:ice lolly, lolly, lollipop, popsicle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :schipperke", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:dessert-sweet-a:frozen dessert:ice lolly, lolly, lollipop, popsicle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:rodent-gnawer:cavy:guinea pig, Cavia cobaya", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:dessert-sweet-a:frozen dessert:ice lolly, lolly, lollipop, popsicle", "at": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:bib", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:dessert-sweet-a:frozen dessert:ice lolly, lolly, lollipop, popsicle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:candle, taper, wax light", "oc": 2}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:dessert-sweet-a:frozen dessert:ice lolly, lolly, lollipop, popsicle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:flute, transverse flute", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:dessert-sweet-a:frozen dessert:ice lolly, lolly, lollipop, popsicle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:hair spray", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:dessert-sweet-a:frozen dessert:ice lolly, lolly, lollipop, popsicle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electronic devi:mouse, computer mouse", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:dessert-sweet-a:frozen dessert:ice lolly, lolly, lollipop, popsicle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:machine-simple :wheel:pinwheel", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:dessert-sweet-a:frozen dessert:ice lolly, lolly, lollipop, popsicle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:shaker:saltshaker, salt shaker", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:dessert-sweet-a:frozen dessert:ice lolly, lolly, lollipop, popsicle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:shovel", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:dessert-sweet-a:frozen dessert:ice lolly, lolly, lollipop, popsicle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:unicycle, monocycle", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:dessert-sweet-a:frozen dessert:ice lolly, lolly, lollipop, popsicle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:attire-garb-dre:hairpiece-false:wig", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:dessert-sweet-a:frozen dessert:ice lolly, lolly, lollipop, popsicle", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:creation:product-product:work-piece of w:publication:magazine-mag:comic book", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:dessert-sweet-a:frozen dessert:ice lolly, lolly, lollipop, popsicle", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:dessert-sweet-a:frozen dessert:ice lolly, lolly, lollipop, popsicle", "oc": 29}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:dessert-sweet-a:frozen dessert:ice lolly, lolly, lollipop, popsicle", "at": "root:entity:abstraction-abs:attribute:shape-form:round shape:sphere:ball-globe-orb:globule:bubble", "oc": 2}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:dessert-sweet-a:frozen dessert:ice lolly, lolly, lollipop, popsicle", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:fungus:basidiomycete-b:agaric", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:dessert-sweet-a:frozen dessert:ice lolly, lolly, lollipop, popsicle", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:ear, spike, capitulum", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:loaf of bread-l:French loaf", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:domestic cat-ho:tabby, tabby cat", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:loaf of bread-l:French loaf", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:hippopotamus, hippo, river horse, Hippopotamus amphibius", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:loaf of bread-l:French loaf", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:bakery, bakeshop, bakehouse", "oc": 2}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:loaf of bread-l:French loaf", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:basket-handbask:hamper", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:loaf of bread-l:French loaf", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building comple:plant-works-ind:factory-mill-ma:lumbermill, sawmill", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:loaf of bread-l:French loaf", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:entree-main cou:plate", "oc": 2}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:loaf of bread-l:French loaf", "at": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :ingredient-fixi:flavorer-flavou:condiment:dip:guacamole", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:loaf of bread-l:French loaf", "at": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:loaf of bread-l:French loaf", "oc": 28}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:loaf of bread-l:French loaf", "at": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:bun-roll:bagel, beigel", "oc": 3}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:loaf of bread-l:French loaf", "at": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:cracker:pretzel", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:loaf of bread-l:French loaf", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:snack food:sandwich:hotdog, hot dog, red hot", "oc": 3}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:loaf of bread-l:French loaf", "at": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :concoction-mixt:dough", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:loaf of bread-l:French loaf", "at": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:loaf of bread-l:meat loaf, meatloaf", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:loaf of bread-l:French loaf", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:pizza, pizza pie", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:loaf of bread-l:French loaf", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:burrito", "oc": 2}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:loaf of bread-l:French loaf", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:fungus:bolete", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:bun-roll:bagel, beigel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:womans clothing:dress-frock:gown", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:bun-roll:bagel, beigel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:waffle iron", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:bun-roll:bagel, beigel", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:entree-main cou:plate", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:bun-roll:bagel, beigel", "at": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:loaf of bread-l:French loaf", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:bun-roll:bagel, beigel", "at": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:bun-roll:bagel, beigel", "oc": 35}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:bun-roll:bagel, beigel", "at": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:cracker:pretzel", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:bun-roll:bagel, beigel", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:snack food:sandwich:hamburger-beefb:cheeseburger", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:bun-roll:bagel, beigel", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:snack food:sandwich:hotdog, hot dog, red hot", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:bun-roll:bagel, beigel", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:apple:eating apple-de:Granny Smith", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:bun-roll:bagel, beigel", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:pomegranate", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:bun-roll:bagel, beigel", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:pizza, pizza pie", "oc": 3}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:bun-roll:bagel, beigel", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:potpie", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:bun-roll:bagel, beigel", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:burrito", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:bun-roll:bagel, beigel", "at": "root:entity:physical entity:object-physical:geological form:cliff, drop, drop-off", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:cracker:pretzel", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:cartilaginous f:elasmobranch-se:ray:stingray", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:cracker:pretzel", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:echinoderm:sea cucumber, holothurian", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:cracker:pretzel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:bakery, bakeshop, bakehouse", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:cracker:pretzel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:connection-conn:attachment-bond:ligament:chain", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:cracker:pretzel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:marketplace-mar:grocery store, grocery, food market, market", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:cracker:pretzel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:robe:kimono", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:cracker:pretzel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:toyshop", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:cracker:pretzel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:receptacle:tray", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:cracker:pretzel", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:case:wallet, billfold, notecase, pocketbook", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:cracker:pretzel", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:dessert-sweet-a:frozen dessert:ice lolly, lolly, lollipop, popsicle", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:cracker:pretzel", "at": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:loaf of bread-l:French loaf", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:cracker:pretzel", "at": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:bun-roll:bagel, beigel", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:cracker:pretzel", "at": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:cracker:pretzel", "oc": 36}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:cracker:pretzel", "at": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :ingredient-fixi:flavorer-flavou:condiment:sauce:chocolate sauce, chocolate syrup", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:cracker:pretzel", "at": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :concoction-mixt:dough", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:snack food:sandwich:hamburger-beefb:cheeseburger", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:gastropod-univa:sea slug, nudibranch", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:snack food:sandwich:hamburger-beefb:cheeseburger", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:bakery, bakeshop, bakehouse", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:snack food:sandwich:hamburger-beefb:cheeseburger", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:entree-main cou:plate", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:snack food:sandwich:hamburger-beefb:cheeseburger", "at": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:cracker:pretzel", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:snack food:sandwich:hamburger-beefb:cheeseburger", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:snack food:sandwich:hamburger-beefb:cheeseburger", "oc": 44}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:snack food:sandwich:hamburger-beefb:cheeseburger", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:snack food:sandwich:hotdog, hot dog, red hot", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:snack food:sandwich:hamburger-beefb:cheeseburger", "at": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:loaf of bread-l:meat loaf, meatloaf", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:snack food:sandwich:hotdog, hot dog, red hot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:bakery, bakeshop, bakehouse", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:snack food:sandwich:hotdog, hot dog, red hot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloth covering:dressing-medica:bandage-patch:adhesive bandag:Band Aid", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:snack food:sandwich:hotdog, hot dog, red hot", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:clog, geta, patten, sabot", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:snack food:sandwich:hotdog, hot dog, red hot", "at": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:bun-roll:bagel, beigel", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:snack food:sandwich:hotdog, hot dog, red hot", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:snack food:sandwich:hamburger-beefb:cheeseburger", "oc": 4}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:snack food:sandwich:hotdog, hot dog, red hot", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:snack food:sandwich:hotdog, hot dog, red hot", "oc": 41}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:snack food:sandwich:hotdog, hot dog, red hot", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:burrito", "oc": 1}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:root vegetable:potato-white po:mashed potato", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:coelenterate-cn:anthozoan-actin:coral:stony coral-mad:brain coral", "oc": 1}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:root vegetable:potato-white po:mashed potato", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pan-cooking pan:frying pan, frypan, skillet", "oc": 2}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:root vegetable:potato-white po:mashed potato", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:receptacle:tray", "oc": 1}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:root vegetable:potato-white po:mashed potato", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:waffle iron", "oc": 1}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:root vegetable:potato-white po:mashed potato", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:article:ware:tableware:cutlery-eating :spoon:wooden spoon", "oc": 1}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:root vegetable:potato-white po:mashed potato", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:dessert-sweet-a:frozen dessert:ice cream, icecream", "oc": 1}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:root vegetable:potato-white po:mashed potato", "at": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:bun-roll:bagel, beigel", "oc": 1}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:root vegetable:potato-white po:mashed potato", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:root vegetable:potato-white po:mashed potato", "oc": 36}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:root vegetable:potato-white po:mashed potato", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:cruciferous veg:broccoli", "oc": 1}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:root vegetable:potato-white po:mashed potato", "at": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:loaf of bread-l:meat loaf, meatloaf", "oc": 1}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:root vegetable:potato-white po:mashed potato", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:potpie", "oc": 3}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:root vegetable:potato-white po:mashed potato", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:seed:grain-caryopsis:kernel:corn", "oc": 1}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:cruciferous veg:cabbage-chou:head cabbage", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:soft-finned fis:cypriniform fis:cyprinid-cyprin:goldfish, Carassius auratus", "oc": 1}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:cruciferous veg:cabbage-chou:head cabbage", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:marketplace-mar:grocery store, grocery, food market, market", "oc": 1}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:cruciferous veg:cabbage-chou:head cabbage", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:padding-cushion:cushion:pillow", "oc": 1}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:cruciferous veg:cabbage-chou:head cabbage", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:pot, flowerpot", "oc": 1}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:cruciferous veg:cabbage-chou:head cabbage", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:bridge-span:suspension bridge", "oc": 1}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:cruciferous veg:cabbage-chou:head cabbage", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:cruciferous veg:cabbage-chou:head cabbage", "oc": 44}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:cruciferous veg:cabbage-chou:head cabbage", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:custard apple", "oc": 1}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:cruciferous veg:broccoli", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:cruciferous veg:broccoli", "oc": 44}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:cruciferous veg:broccoli", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:cruciferous veg:cauliflower", "oc": 4}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:cruciferous veg:broccoli", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:squash:winter squash:butternut squash", "oc": 1}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:cruciferous veg:broccoli", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:ear, spike, capitulum", "oc": 1}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:cruciferous veg:cauliflower", "at": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :ingredient-fixi:flavorer-flavou:condiment:dip:guacamole", "oc": 1}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:cruciferous veg:cauliflower", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:root vegetable:potato-white po:mashed potato", "oc": 2}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:cruciferous veg:cauliflower", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:cruciferous veg:cabbage-chou:head cabbage", "oc": 1}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:cruciferous veg:cauliflower", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:cruciferous veg:broccoli", "oc": 1}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:cruciferous veg:cauliflower", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:cruciferous veg:cauliflower", "oc": 43}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:cruciferous veg:cauliflower", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:artichoke, globe artichoke", "oc": 1}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:cruciferous veg:cauliflower", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:custard apple", "oc": 1}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:squash:summer squash:zucchini, courgette", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:cruciferous veg:cabbage-chou:head cabbage", "oc": 1}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:squash:summer squash:zucchini, courgette", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:squash:summer squash:zucchini, courgette", "oc": 36}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:squash:summer squash:zucchini, courgette", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:cucumber, cuke", "oc": 12}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:squash:summer squash:zucchini, courgette", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:banana", "oc": 1}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:squash:summer squash:spaghetti squash", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:ladle", "oc": 1}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:squash:summer squash:spaghetti squash", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:squash:summer squash:spaghetti squash", "oc": 36}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:squash:summer squash:spaghetti squash", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:squash:winter squash:acorn squash", "oc": 2}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:squash:summer squash:spaghetti squash", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:squash:winter squash:butternut squash", "oc": 3}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:squash:summer squash:spaghetti squash", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:cucumber, cuke", "oc": 1}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:squash:summer squash:spaghetti squash", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:citrus-citrus f:lemon", "oc": 2}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:squash:summer squash:spaghetti squash", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:potpie", "oc": 1}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:squash:summer squash:spaghetti squash", "at": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:mixed drink:punch:eggnog", "oc": 1}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:squash:summer squash:spaghetti squash", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:acorn", "oc": 1}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:squash:summer squash:spaghetti squash", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:fungus:bolete", "oc": 2}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:squash:winter squash:acorn squash", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:terrapin", "oc": 1}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:squash:winter squash:acorn squash", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:oven:Dutch oven", "oc": 1}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:squash:winter squash:acorn squash", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:squash:summer squash:zucchini, courgette", "oc": 1}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:squash:winter squash:acorn squash", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:squash:winter squash:acorn squash", "oc": 40}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:squash:winter squash:acorn squash", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:squash:winter squash:butternut squash", "oc": 4}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:squash:winter squash:acorn squash", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:cucumber, cuke", "oc": 1}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:squash:winter squash:acorn squash", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:fig", "oc": 1}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:squash:winter squash:acorn squash", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:banana", "oc": 1}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:squash:winter squash:butternut squash", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:clog, geta, patten, sabot", "oc": 1}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:squash:winter squash:butternut squash", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:coffee maker:espresso maker", "oc": 1}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:squash:winter squash:butternut squash", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pan-cooking pan:frying pan, frypan, skillet", "oc": 1}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:squash:winter squash:butternut squash", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:handwear-hand w:glove:mitten", "oc": 1}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:squash:winter squash:butternut squash", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:ping-pong ball", "oc": 1}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:squash:winter squash:butternut squash", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:root vegetable:potato-white po:mashed potato", "oc": 1}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:squash:winter squash:butternut squash", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:cruciferous veg:broccoli", "oc": 1}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:squash:winter squash:butternut squash", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:squash:summer squash:spaghetti squash", "oc": 3}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:squash:winter squash:butternut squash", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:squash:winter squash:acorn squash", "oc": 2}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:squash:winter squash:butternut squash", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:squash:winter squash:butternut squash", "oc": 35}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:squash:winter squash:butternut squash", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:solanaceous veg:pepper:sweet pepper:bell pepper", "oc": 1}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:squash:winter squash:butternut squash", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:citrus-citrus f:orange", "oc": 1}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:squash:winter squash:butternut squash", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:potpie", "oc": 1}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:cucumber, cuke", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:marketplace-mar:grocery store, grocery, food market, market", "oc": 1}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:cucumber, cuke", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:package-parcel:packet", "oc": 1}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:cucumber, cuke", "at": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :ingredient-fixi:flavorer-flavou:condiment:dip:guacamole", "oc": 1}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:cucumber, cuke", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:squash:summer squash:zucchini, courgette", "oc": 10}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:cucumber, cuke", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:squash:winter squash:butternut squash", "oc": 1}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:cucumber, cuke", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:cucumber, cuke", "oc": 32}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:cucumber, cuke", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:solanaceous veg:pepper:sweet pepper:bell pepper", "oc": 1}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:cucumber, cuke", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:apple:eating apple-de:Granny Smith", "oc": 1}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:cucumber, cuke", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:citrus-citrus f:lemon", "oc": 2}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:artichoke, globe artichoke", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:hymenopterous i:ant, emmet, pismire", "oc": 1}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:artichoke, globe artichoke", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:spectacles-spec:sunglasses, dark glasses, shades", "oc": 1}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:artichoke, globe artichoke", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:dessert-sweet-a:frozen dessert:ice cream, icecream", "oc": 1}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:artichoke, globe artichoke", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:squash:winter squash:acorn squash", "oc": 1}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:artichoke, globe artichoke", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:artichoke, globe artichoke", "oc": 39}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:artichoke, globe artichoke", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:cardoon", "oc": 6}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:artichoke, globe artichoke", "at": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:mixed drink:punch:cup", "oc": 1}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:solanaceous veg:pepper:sweet pepper:bell pepper", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:plastic bag", "oc": 2}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:solanaceous veg:pepper:sweet pepper:bell pepper", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:cucumber, cuke", "oc": 1}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:solanaceous veg:pepper:sweet pepper:bell pepper", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:solanaceous veg:pepper:sweet pepper:bell pepper", "oc": 43}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:solanaceous veg:pepper:sweet pepper:bell pepper", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:apple:eating apple-de:Granny Smith", "oc": 1}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:solanaceous veg:pepper:sweet pepper:bell pepper", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:seed:grain-caryopsis:kernel:corn", "oc": 1}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:solanaceous veg:pepper:sweet pepper:bell pepper", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:hip, rose hip, rosehip", "oc": 1}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:solanaceous veg:pepper:sweet pepper:bell pepper", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:seed:buckeye, horse chestnut, conker", "oc": 1}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:cardoon", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:hymenopterous i:bee", "oc": 1}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:cardoon", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:lepidopterous i:butterfly:nymphalid-nymph:admiral", "oc": 1}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:cardoon", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:lepidopterous i:butterfly:pierid-pierid b:cabbage butterfly", "oc": 1}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:cardoon", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:pot, flowerpot", "oc": 1}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:cardoon", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:artichoke, globe artichoke", "oc": 1}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:cardoon", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:cardoon", "oc": 44}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:cardoon", "at": "root:entity:physical entity:object-physical:geological form:natural elevati:ridge:reef:coral reef", "oc": 1}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:mushroom", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:artichoke, globe artichoke", "oc": 1}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:mushroom", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:mushroom", "oc": 20}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:mushroom", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:fungus:coral fungus", "oc": 1}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:mushroom", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:fungus:basidiomycete-b:agaric", "oc": 19}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:mushroom", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:fungus:stinkhorn, carrion fungus", "oc": 2}, {"rt": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:mushroom", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:fungus:bolete", "oc": 7}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:apple:eating apple-de:Granny Smith", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:dictyopterous i:mantis, mantid", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:apple:eating apple-de:Granny Smith", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:neuropteron-neu:lacewing, lacewing fly", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:apple:eating apple-de:Granny Smith", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:shaker:cocktail shaker", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:apple:eating apple-de:Granny Smith", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:glass-drinking :goblet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:apple:eating apple-de:Granny Smith", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:basket-handbask:hamper", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:apple:eating apple-de:Granny Smith", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:entree-main cou:plate", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:apple:eating apple-de:Granny Smith", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:dessert-sweet-a:frozen dessert:ice cream, icecream", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:apple:eating apple-de:Granny Smith", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:root vegetable:potato-white po:mashed potato", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:apple:eating apple-de:Granny Smith", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:apple:eating apple-de:Granny Smith", "oc": 42}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:berry:strawberry", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:coelenterate-cn:anthozoan-actin:sea anemone, anemone", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:berry:strawberry", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:gastropod-univa:sea slug, nudibranch", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:berry:strawberry", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:echinoderm:sea urchin", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:berry:strawberry", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:receptacle:tray", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:berry:strawberry", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:dessert-sweet-a:pudding-pud:trifle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:berry:strawberry", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:berry:strawberry", "oc": 34}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:berry:strawberry", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:pineapple, ananas", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:berry:strawberry", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:banana", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:berry:strawberry", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:pomegranate", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:berry:strawberry", "at": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:loaf of bread-l:meat loaf, meatloaf", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:berry:strawberry", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:burrito", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:berry:strawberry", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:hip, rose hip, rosehip", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:citrus-citrus f:orange", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:calculator-calc:abacus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:citrus-citrus f:orange", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:buckle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:citrus-citrus f:orange", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:croquet ball", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:citrus-citrus f:orange", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:clip:hair slide", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:citrus-citrus f:orange", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:supporting stru:framework:honeycomb", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:citrus-citrus f:orange", "at": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:bun-roll:bagel, beigel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:citrus-citrus f:orange", "at": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:cracker:pretzel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:citrus-citrus f:orange", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:berry:strawberry", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:citrus-citrus f:orange", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:citrus-citrus f:orange", "oc": 34}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:citrus-citrus f:orange", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:citrus-citrus f:lemon", "oc": 7}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:citrus-citrus f:orange", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:seed:grain-caryopsis:kernel:corn", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:citrus-citrus f:lemon", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:parrot:cockatoo:sulphur-crested cockatoo, Kakatoe galerita, Cacatua galerita", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:citrus-citrus f:lemon", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:baby bed-babys :crib, cot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:citrus-citrus f:lemon", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:marketplace-mar:grocery store, grocery, food market, market", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:citrus-citrus f:lemon", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:ping-pong ball", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:citrus-citrus f:lemon", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:pitcher, ewer", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:citrus-citrus f:lemon", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:basket-handbask:shopping basket", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:citrus-citrus f:lemon", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:citrus-citrus f:orange", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:citrus-citrus f:lemon", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:citrus-citrus f:lemon", "oc": 39}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:citrus-citrus f:lemon", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:custard apple", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:fig", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:parrot:lory:lorikeet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:fig", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:decoration-orna:adornment:jewelry-jewelle:necklace", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:fig", "at": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:bun-roll:bagel, beigel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:fig", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:citrus-citrus f:orange", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:fig", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:citrus-citrus f:lemon", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:fig", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:fig", "oc": 41}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:fig", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:banana", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:fig", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:pomegranate", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:fig", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:acorn", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:pineapple, ananas", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:greenhouse, nursery, glasshouse", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:pineapple, ananas", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:bench:park bench", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:pineapple, ananas", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:area:patio, terrace", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:pineapple, ananas", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:berry:strawberry", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:pineapple, ananas", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:pineapple, ananas", "oc": 42}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:pineapple, ananas", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:plant-flora-pla:vascular plant-:spermatophyte-p:angiosperm-flow:flower:daisy", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:pineapple, ananas", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:ear, spike, capitulum", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:banana", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :forklift", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:banana", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:sombrero", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:banana", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:wine bottle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:banana", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:entree-main cou:plate", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:banana", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:apple:eating apple-de:Granny Smith", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:banana", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:citrus-citrus f:orange", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:banana", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:citrus-citrus f:lemon", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:banana", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:pineapple, ananas", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:banana", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:banana", "oc": 39}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:banana", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:custard apple", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:banana", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:fungus:bolete", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:jackfruit, jak, jack", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:agamid-agamid l:frilled lizard, Chlamydosaurus kingi", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:jackfruit, jak, jack", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:root vegetable:potato-white po:mashed potato", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:jackfruit, jak, jack", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:cucumber, cuke", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:jackfruit, jak, jack", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:artichoke, globe artichoke", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:jackfruit, jak, jack", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:jackfruit, jak, jack", "oc": 46}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:custard apple", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:limpkin, Aramus pictus", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:custard apple", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:echinoderm:sea urchin", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:custard apple", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:dessert-sweet-a:frozen dessert:ice cream, icecream", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:custard apple", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:cruciferous veg:cabbage-chou:head cabbage", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:custard apple", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:custard apple", "oc": 45}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:pomegranate", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bucket, pail", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:pomegranate", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:marketplace-mar:grocery store, grocery, food market, market", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:pomegranate", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:pot, flowerpot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:pomegranate", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:fig", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:pomegranate", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:pomegranate", "oc": 43}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:pomegranate", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:burrito", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:pomegranate", "at": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:mixed drink:punch:cup", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:pomegranate", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:hip, rose hip, rosehip", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:feed-provender:fodder:hay", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:odd-toed ungula:equine-equid:horse-Equus cab:sorrel", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:feed-provender:fodder:hay", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:antelope:gazelle", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:feed-provender:fodder:hay", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:farm building:barn", "oc": 2}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:feed-provender:fodder:hay", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:cleaning implem:broom", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:feed-provender:fodder:hay", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:cannon", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:feed-provender:fodder:hay", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:defensive struc:fortification-m:castle", "oc": 2}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:feed-provender:fodder:hay", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:wagon-waggon:cart:horse cart, horse-cart", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:feed-provender:fodder:hay", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:memorial-monume:megalith, megalithic structure", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:feed-provender:fodder:hay", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:fabric-cloth-ma:wool, woolen, woollen", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:feed-provender:fodder:hay", "at": "root:entity:physical entity:matter:substance:food-nutrient:feed-provender:fodder:hay", "oc": 38}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:feed-provender:fodder:hay", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:seed:oilseed-oil-ric:rapeseed", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :ingredient-fixi:flavorer-flavou:condiment:sauce:spaghetti sauce:carbonara", "at": "root:entity:physical entity:matter:substance:food-nutrient:fare:menu", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :ingredient-fixi:flavorer-flavou:condiment:sauce:spaghetti sauce:carbonara", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:entree-main cou:plate", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :ingredient-fixi:flavorer-flavou:condiment:sauce:spaghetti sauce:carbonara", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:squash:summer squash:spaghetti squash", "oc": 2}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :ingredient-fixi:flavorer-flavou:condiment:sauce:spaghetti sauce:carbonara", "at": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :ingredient-fixi:flavorer-flavou:condiment:sauce:spaghetti sauce:carbonara", "oc": 43}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :ingredient-fixi:flavorer-flavou:condiment:sauce:spaghetti sauce:carbonara", "at": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:loaf of bread-l:meat loaf, meatloaf", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :ingredient-fixi:flavorer-flavou:condiment:sauce:spaghetti sauce:carbonara", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:burrito", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :ingredient-fixi:flavorer-flavou:condiment:sauce:spaghetti sauce:carbonara", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:seed:grain-caryopsis:kernel:corn", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :ingredient-fixi:flavorer-flavou:condiment:sauce:chocolate sauce, chocolate syrup", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:cephalopod-ceph:chambered nautilus, pearly nautilus, nautilus", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :ingredient-fixi:flavorer-flavou:condiment:sauce:chocolate sauce, chocolate syrup", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:top-cover:cap:bottlecap", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :ingredient-fixi:flavorer-flavou:condiment:sauce:chocolate sauce, chocolate syrup", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:candle, taper, wax light", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :ingredient-fixi:flavorer-flavou:condiment:sauce:chocolate sauce, chocolate syrup", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:cowboy hat, ten-gallon hat", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :ingredient-fixi:flavorer-flavou:condiment:sauce:chocolate sauce, chocolate syrup", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:glass-drinking :goblet", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :ingredient-fixi:flavorer-flavou:condiment:sauce:chocolate sauce, chocolate syrup", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:package-parcel:packet", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :ingredient-fixi:flavorer-flavou:condiment:sauce:chocolate sauce, chocolate syrup", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:savings bank-co:piggy bank, penny bank", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :ingredient-fixi:flavorer-flavou:condiment:sauce:chocolate sauce, chocolate syrup", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:armor-armour:shield, buckler", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :ingredient-fixi:flavorer-flavou:condiment:sauce:chocolate sauce, chocolate syrup", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:toilet seat", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :ingredient-fixi:flavorer-flavou:condiment:sauce:chocolate sauce, chocolate syrup", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:jar:vase", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :ingredient-fixi:flavorer-flavou:condiment:sauce:chocolate sauce, chocolate syrup", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:waffle iron", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :ingredient-fixi:flavorer-flavou:condiment:sauce:chocolate sauce, chocolate syrup", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:entree-main cou:plate", "oc": 3}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :ingredient-fixi:flavorer-flavou:condiment:sauce:chocolate sauce, chocolate syrup", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:dessert-sweet-a:pudding-pud:trifle", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :ingredient-fixi:flavorer-flavou:condiment:sauce:chocolate sauce, chocolate syrup", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:dessert-sweet-a:frozen dessert:ice cream, icecream", "oc": 4}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :ingredient-fixi:flavorer-flavou:condiment:sauce:chocolate sauce, chocolate syrup", "at": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:cracker:pretzel", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :ingredient-fixi:flavorer-flavou:condiment:sauce:chocolate sauce, chocolate syrup", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:snack food:sandwich:hotdog, hot dog, red hot", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :ingredient-fixi:flavorer-flavou:condiment:sauce:chocolate sauce, chocolate syrup", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:squash:winter squash:acorn squash", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :ingredient-fixi:flavorer-flavou:condiment:sauce:chocolate sauce, chocolate syrup", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:apple:eating apple-de:Granny Smith", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :ingredient-fixi:flavorer-flavou:condiment:sauce:chocolate sauce, chocolate syrup", "at": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :ingredient-fixi:flavorer-flavou:condiment:sauce:chocolate sauce, chocolate syrup", "oc": 25}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :ingredient-fixi:flavorer-flavou:condiment:sauce:chocolate sauce, chocolate syrup", "at": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:loaf of bread-l:meat loaf, meatloaf", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :ingredient-fixi:flavorer-flavou:condiment:sauce:chocolate sauce, chocolate syrup", "at": "root:entity:physical entity:matter:substance:food-nutrient:beverage-drink-:coffee-java:espresso", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :concoction-mixt:dough", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:cartilaginous f:elasmobranch-se:ray:electric ray, crampfish, numbfish, torpedo", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :concoction-mixt:dough", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:cartilaginous f:elasmobranch-se:ray:stingray", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :concoction-mixt:dough", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:trilobite", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :concoction-mixt:dough", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:gastropod-univa:snail", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :concoction-mixt:dough", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:lobster:true lobster:American lobster, Northern lobster, Maine lobster, Homarus americanus", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :concoction-mixt:dough", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:bakery, bakeshop, bakehouse", "oc": 2}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :concoction-mixt:dough", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:bonnet, poke bonnet", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :concoction-mixt:dough", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:oven:Dutch oven", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :concoction-mixt:dough", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:ax-axe:hatchet", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :concoction-mixt:dough", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:game:puzzle:jigsaw puzzle", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :concoction-mixt:dough", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:mailbag, postbag", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :concoction-mixt:dough", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dish:bowl:mixing bowl", "oc": 3}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :concoction-mixt:dough", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:oven:rotisserie", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :concoction-mixt:dough", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:shaker:saltshaker, salt shaker", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :concoction-mixt:dough", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:entree-main cou:plate", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :concoction-mixt:dough", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:dessert-sweet-a:pudding-pud:trifle", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :concoction-mixt:dough", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:dessert-sweet-a:frozen dessert:ice cream, icecream", "oc": 2}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :concoction-mixt:dough", "at": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:loaf of bread-l:French loaf", "oc": 4}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :concoction-mixt:dough", "at": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:bun-roll:bagel, beigel", "oc": 2}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :concoction-mixt:dough", "at": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:cracker:pretzel", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :concoction-mixt:dough", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:snack food:sandwich:hotdog, hot dog, red hot", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :concoction-mixt:dough", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:cruciferous veg:cauliflower", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :concoction-mixt:dough", "at": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :concoction-mixt:dough", "oc": 13}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :concoction-mixt:dough", "at": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:loaf of bread-l:meat loaf, meatloaf", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :concoction-mixt:dough", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:pizza, pizza pie", "oc": 4}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :concoction-mixt:dough", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:potpie", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :concoction-mixt:dough", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:fungus:gyromitra", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:loaf of bread-l:meat loaf, meatloaf", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crayfish, crawfish, crawdad, crawdaddy", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:loaf of bread-l:meat loaf, meatloaf", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:knife:cleaver, meat cleaver, chopper", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:loaf of bread-l:meat loaf, meatloaf", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:confectionery, confectionary, candy store", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:loaf of bread-l:meat loaf, meatloaf", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:table:dining table, board", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:loaf of bread-l:meat loaf, meatloaf", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pan-cooking pan:frying pan, frypan, skillet", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:loaf of bread-l:meat loaf, meatloaf", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:turner-food tur:spatula", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:loaf of bread-l:meat loaf, meatloaf", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:entree-main cou:plate", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:loaf of bread-l:meat loaf, meatloaf", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:dessert-sweet-a:frozen dessert:ice cream, icecream", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:loaf of bread-l:meat loaf, meatloaf", "at": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:bun-roll:bagel, beigel", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:loaf of bread-l:meat loaf, meatloaf", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:snack food:sandwich:hamburger-beefb:cheeseburger", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:loaf of bread-l:meat loaf, meatloaf", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:root vegetable:potato-white po:mashed potato", "oc": 8}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:loaf of bread-l:meat loaf, meatloaf", "at": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :ingredient-fixi:flavorer-flavou:condiment:sauce:spaghetti sauce:carbonara", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:loaf of bread-l:meat loaf, meatloaf", "at": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:loaf of bread-l:meat loaf, meatloaf", "oc": 28}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:loaf of bread-l:meat loaf, meatloaf", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:pizza, pizza pie", "oc": 3}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:pizza, pizza pie", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crab:Dungeness crab, Cancer magister", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:pizza, pizza pie", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:rodent-gnawer:squirrel:tree squirrel:fox squirrel, eastern fox squirrel, Sciurus niger", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:pizza, pizza pie", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:bakery, bakeshop, bakehouse", "oc": 2}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:pizza, pizza pie", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:oven:Dutch oven", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:pizza, pizza pie", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:marketplace-mar:grocery store, grocery, food market, market", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:pizza, pizza pie", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:restaurant, eating house, eating place, eatery", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:pizza, pizza pie", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:dessert-sweet-a:pudding-pud:trifle", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:pizza, pizza pie", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:cucumber, cuke", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:pizza, pizza pie", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:pomegranate", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:pizza, pizza pie", "at": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:loaf of bread-l:meat loaf, meatloaf", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:pizza, pizza pie", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:pizza, pizza pie", "oc": 38}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:pizza, pizza pie", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:burrito", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:potpie", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:top-cover:cap:bottlecap", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:potpie", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:oven:Dutch oven", "oc": 2}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:potpie", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:waffle iron", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:potpie", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:article:ware:tableware:cutlery-eating :spoon:wooden spoon", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:potpie", "at": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :ingredient-fixi:flavorer-flavou:condiment:dip:guacamole", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:potpie", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:dessert-sweet-a:pudding-pud:trifle", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:potpie", "at": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:loaf of bread-l:French loaf", "oc": 3}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:potpie", "at": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:bun-roll:bagel, beigel", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:potpie", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:snack food:sandwich:hamburger-beefb:cheeseburger", "oc": 2}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:potpie", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:root vegetable:potato-white po:mashed potato", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:potpie", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:squash:winter squash:acorn squash", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:potpie", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:jackfruit, jak, jack", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:potpie", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:potpie", "oc": 31}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:potpie", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:burrito", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:potpie", "at": "root:entity:physical entity:matter:substance:food-nutrient:beverage-drink-:coffee-java:espresso", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:potpie", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:seed:buckeye, horse chestnut, conker", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:burrito", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:sea turtle-mari:leatherback turtle, leatherback, leathery turtle, Dermochelys coriacea", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:burrito", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:sombrero", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:burrito", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:entree-main cou:plate", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:burrito", "at": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :ingredient-fixi:flavorer-flavou:condiment:dip:guacamole", "oc": 3}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:burrito", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:snack food:sandwich:hamburger-beefb:cheeseburger", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:burrito", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:cucumber, cuke", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:burrito", "at": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :ingredient-fixi:flavorer-flavou:condiment:sauce:chocolate sauce, chocolate syrup", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:burrito", "at": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :concoction-mixt:dough", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:burrito", "at": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:loaf of bread-l:meat loaf, meatloaf", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:burrito", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:burrito", "oc": 39}, {"rt": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:wine-vino:red wine", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:pointer-Spanish:vizsla, Hungarian pointer", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:wine-vino:red wine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:guitar:acoustic guitar", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:wine-vino:red wine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:candle, taper, wax light", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:wine-vino:red wine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:clog, geta, patten, sabot", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:wine-vino:red wine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:brass-brass ins:French horn, horn", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:wine-vino:red wine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:glass-drinking :goblet", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:wine-vino:red wine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:clip:hair slide", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:wine-vino:red wine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:projector", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:wine-vino:red wine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:eraser:rubber eraser, rubber, pencil eraser", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:wine-vino:red wine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:wine bottle", "oc": 9}, {"rt": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:wine-vino:red wine", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:wrapping-wrap-w:jacket:book jacket, dust cover, dust jacket, dust wrapper", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:wine-vino:red wine", "at": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:wine-vino:red wine", "oc": 28}, {"rt": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:wine-vino:red wine", "at": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:mixed drink:punch:cup", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:wine-vino:red wine", "at": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:mixed drink:punch:eggnog", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:wine-vino:red wine", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:seed:buckeye, horse chestnut, conker", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:beverage-drink-:coffee-java:espresso", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:guitar:acoustic guitar", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:beverage-drink-:coffee-java:espresso", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:glass-drinking :beer glass", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:beverage-drink-:coffee-java:espresso", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:coffee maker:espresso maker", "oc": 2}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:beverage-drink-:coffee-java:espresso", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:mortar", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:beverage-drink-:coffee-java:espresso", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:shoe shop, shoe-shop, shoe store", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:beverage-drink-:coffee-java:espresso", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dish:bowl:soup bowl", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:beverage-drink-:coffee-java:espresso", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:entree-main cou:plate", "oc": 2}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:beverage-drink-:coffee-java:espresso", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:soup:consomme", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:beverage-drink-:coffee-java:espresso", "at": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :ingredient-fixi:flavorer-flavou:condiment:sauce:chocolate sauce, chocolate syrup", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:beverage-drink-:coffee-java:espresso", "at": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:wine-vino:red wine", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:beverage-drink-:coffee-java:espresso", "at": "root:entity:physical entity:matter:substance:food-nutrient:beverage-drink-:coffee-java:espresso", "oc": 35}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:beverage-drink-:coffee-java:espresso", "at": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:mixed drink:punch:cup", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:beverage-drink-:coffee-java:espresso", "at": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:mixed drink:punch:eggnog", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:food-nutrient:beverage-drink-:coffee-java:espresso", "at": "root:entity:physical entity:matter:substance:material-stuff:paper:tissue-tissue p:toilet tissue, toilet paper, bathroom tissue", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:mixed drink:punch:cup", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-:king snake, kingsnake", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:mixed drink:punch:cup", "at": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:bib", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:mixed drink:punch:cup", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bucket, pail", "oc": 2}, {"rt": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:mixed drink:punch:cup", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:drinking vessel:mug:coffee mug", "oc": 6}, {"rt": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:mixed drink:punch:cup", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pot:coffeepot", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:mixed drink:punch:cup", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:confectionery, confectionary, candy store", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:mixed drink:punch:cup", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:drum, membranophone, tympan", "oc": 2}, {"rt": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:mixed drink:punch:cup", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:glass-drinking :goblet", "oc": 2}, {"rt": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:mixed drink:punch:cup", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:mask", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:mixed drink:punch:cup", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dish:bowl:mixing bowl", "oc": 4}, {"rt": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:mixed drink:punch:cup", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:mortar", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:mixed drink:punch:cup", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:rotating mechan:circle-round:disk-disc:puck, hockey puck", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:mixed drink:punch:cup", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:restaurant, eating house, eating place, eatery", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:mixed drink:punch:cup", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:toyshop", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:mixed drink:punch:cup", "at": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:wine-vino:red wine", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:mixed drink:punch:cup", "at": "root:entity:physical entity:matter:substance:food-nutrient:beverage-drink-:coffee-java:espresso", "oc": 3}, {"rt": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:mixed drink:punch:cup", "at": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:mixed drink:punch:cup", "oc": 20}, {"rt": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:mixed drink:punch:cup", "at": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:mixed drink:punch:eggnog", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:mixed drink:punch:eggnog", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloth covering:dressing-medica:bandage-patch:adhesive bandag:Band Aid", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:mixed drink:punch:eggnog", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:glass-drinking :beer glass", "oc": 2}, {"rt": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:mixed drink:punch:eggnog", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:candle, taper, wax light", "oc": 4}, {"rt": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:mixed drink:punch:eggnog", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:drinking vessel:mug:coffee mug", "oc": 2}, {"rt": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:mixed drink:punch:eggnog", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:cooker:Crock Pot", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:mixed drink:punch:eggnog", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:glass-drinking :goblet", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:mixed drink:punch:eggnog", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:measure:measuring cup", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:mixed drink:punch:eggnog", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dish:bowl:mixing bowl", "oc": 2}, {"rt": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:mixed drink:punch:eggnog", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:top-cover:cap:nipple", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:mixed drink:punch:eggnog", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:package-parcel:packet", "oc": 2}, {"rt": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:mixed drink:punch:eggnog", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:nightwear-sleep:pajama, pyjama, pj's, jammies", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:mixed drink:punch:eggnog", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:pitcher, ewer", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:mixed drink:punch:eggnog", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:pop bottle, soda bottle", "oc": 2}, {"rt": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:mixed drink:punch:eggnog", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:machine-simple :wheel:potter's wheel", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:mixed drink:punch:eggnog", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:white goods:refrigerator, icebox", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:mixed drink:punch:eggnog", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dish:bowl:soup bowl", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:mixed drink:punch:eggnog", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:turner-food tur:spatula", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:mixed drink:punch:eggnog", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:slot machine-co:vending machine", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:mixed drink:punch:eggnog", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pan-cooking pan:wok", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:mixed drink:punch:eggnog", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:dessert-sweet-a:pudding-pud:trifle", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:mixed drink:punch:eggnog", "at": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :ingredient-fixi:flavorer-flavou:condiment:sauce:chocolate sauce, chocolate syrup", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:mixed drink:punch:eggnog", "at": "root:entity:physical entity:matter:substance:food-nutrient:beverage-drink-:coffee-java:espresso", "oc": 2}, {"rt": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:mixed drink:punch:eggnog", "at": "root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:mixed drink:punch:eggnog", "oc": 19}, {"rt": "root:entity:physical entity:object-physical:geological form:natural elevati:mountain-mount:alp", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:goat-caprine an:wild goat:ibex, Capra ibex", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:geological form:natural elevati:mountain-mount:alp", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:support:structural memb:upright-vertica:post:maypole", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:geological form:natural elevati:mountain-mount:alp", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:bicycle-bike-wh:mountain bike, all-terrain bike, off-roader", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:geological form:natural elevati:mountain-mount:alp", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:runner:ski", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:geological form:natural elevati:mountain-mount:alp", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :tracked vehicle:snowmobile", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:geological form:natural elevati:mountain-mount:alp", "at": "root:entity:physical entity:object-physical:geological form:natural elevati:mountain-mount:alp", "oc": 28}, {"rt": "root:entity:physical entity:object-physical:geological form:natural elevati:mountain-mount:alp", "at": "root:entity:physical entity:object-physical:geological form:shore:lakeside, lakeshore", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:geological form:natural elevati:mountain-mount:alp", "at": "root:entity:physical entity:object-physical:geological form:natural elevati:promontory, headland, head, foreland", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:geological form:natural elevati:mountain-mount:alp", "at": "root:entity:physical entity:object-physical:geological form:natural depress:valley, vale", "oc": 11}, {"rt": "root:entity:abstraction-abs:attribute:shape-form:round shape:sphere:ball-globe-orb:globule:bubble", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:aircraft:lighter-than-ai:balloon", "oc": 1}, {"rt": "root:entity:abstraction-abs:attribute:shape-form:round shape:sphere:ball-globe-orb:globule:bubble", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:cap:bathing cap, swimming cap", "oc": 1}, {"rt": "root:entity:abstraction-abs:attribute:shape-form:round shape:sphere:ball-globe-orb:globule:bubble", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:staff:crutch", "oc": 1}, {"rt": "root:entity:abstraction-abs:attribute:shape-form:round shape:sphere:ball-globe-orb:globule:bubble", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst:drum, membranophone, tympan", "oc": 1}, {"rt": "root:entity:abstraction-abs:attribute:shape-form:round shape:sphere:ball-globe-orb:globule:bubble", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:ladle", "oc": 1}, {"rt": "root:entity:abstraction-abs:attribute:shape-form:round shape:sphere:ball-globe-orb:globule:bubble", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:rescue equipmen:parachute, chute", "oc": 1}, {"rt": "root:entity:abstraction-abs:attribute:shape-form:round shape:sphere:ball-globe-orb:globule:bubble", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:canopy:umbrella", "oc": 1}, {"rt": "root:entity:abstraction-abs:attribute:shape-form:round shape:sphere:ball-globe-orb:globule:bubble", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:unicycle, monocycle", "oc": 1}, {"rt": "root:entity:abstraction-abs:attribute:shape-form:round shape:sphere:ball-globe-orb:globule:bubble", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:water bottle", "oc": 1}, {"rt": "root:entity:abstraction-abs:attribute:shape-form:round shape:sphere:ball-globe-orb:globule:bubble", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:dessert-sweet-a:frozen dessert:ice lolly, lolly, lollipop, popsicle", "oc": 1}, {"rt": "root:entity:abstraction-abs:attribute:shape-form:round shape:sphere:ball-globe-orb:globule:bubble", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:cruciferous veg:cabbage-chou:head cabbage", "oc": 1}, {"rt": "root:entity:abstraction-abs:attribute:shape-form:round shape:sphere:ball-globe-orb:globule:bubble", "at": "root:entity:abstraction-abs:attribute:shape-form:round shape:sphere:ball-globe-orb:globule:bubble", "oc": 39}, {"rt": "root:entity:physical entity:object-physical:geological form:cliff, drop, drop-off", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:agamid-agamid l:agama", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:geological form:cliff, drop, drop-off", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:breakwater, groin, groyne, mole, bulwark, seawall, jetty", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:geological form:cliff, drop, drop-off", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:housing-lodging:dwelling-home-d:cliff dwelling", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:geological form:cliff, drop, drop-off", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:memorial-monume:megalith, megalithic structure", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:geological form:cliff, drop, drop-off", "at": "root:entity:physical entity:object-physical:geological form:natural elevati:mountain-mount:alp", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:geological form:cliff, drop, drop-off", "at": "root:entity:physical entity:object-physical:geological form:cliff, drop, drop-off", "oc": 31}, {"rt": "root:entity:physical entity:object-physical:geological form:cliff, drop, drop-off", "at": "root:entity:physical entity:object-physical:geological form:natural elevati:promontory, headland, head, foreland", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:geological form:cliff, drop, drop-off", "at": "root:entity:physical entity:object-physical:geological form:natural depress:valley, vale", "oc": 6}, {"rt": "root:entity:physical entity:object-physical:geological form:cliff, drop, drop-off", "at": "root:entity:physical entity:object-physical:geological form:natural elevati:mountain-mount:volcano", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:geological form:natural elevati:ridge:reef:coral reef", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:sea turtle-mari:loggerhead, loggerhead turtle, Caretta caretta", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:geological form:natural elevati:ridge:reef:coral reef", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:coelenterate-cn:anthozoan-actin:sea anemone, anemone", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:geological form:natural elevati:ridge:reef:coral reef", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:coelenterate-cn:anthozoan-actin:coral:stony coral-mad:brain coral", "oc": 5}, {"rt": "root:entity:physical entity:object-physical:geological form:natural elevati:ridge:reef:coral reef", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:gastropod-univa:sea slug, nudibranch", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:geological form:natural elevati:ridge:reef:coral reef", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:echinoderm:sea cucumber, holothurian", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:geological form:natural elevati:ridge:reef:coral reef", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:spiny-finned fi:percoid fish-pe:butterfly fish:rock beauty, Holocanthus tricolor", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:geological form:natural elevati:ridge:reef:coral reef", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:spiny-finned fi:scorpaenoid-sco:scorpaenid-scor:lionfish", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:geological form:natural elevati:ridge:reef:coral reef", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:pot, flowerpot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:geological form:natural elevati:ridge:reef:coral reef", "at": "root:entity:physical entity:object-physical:geological form:natural elevati:ridge:reef:coral reef", "oc": 33}, {"rt": "root:entity:physical entity:object-physical:geological form:natural elevati:ridge:reef:coral reef", "at": "root:entity:physical entity:object-physical:geological form:natural elevati:mountain-mount:volcano", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:geological form:natural elevati:ridge:reef:coral reef", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:person-individu:explorer-advent:diver-frogman-u:scuba diver", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:geological form:natural elevati:ridge:reef:coral reef", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:fungus:coral fungus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:geological form:spring-fountain:geyser", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:trailer truck, tractor trailer, trucking rig, rig, articulated lorry, semi", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:geological form:spring-fountain:geyser", "at": "root:entity:physical entity:object-physical:geological form:spring-fountain:geyser", "oc": 48}, {"rt": "root:entity:physical entity:object-physical:geological form:spring-fountain:geyser", "at": "root:entity:physical entity:object-physical:geological form:natural elevati:mountain-mount:volcano", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:geological form:shore:lakeside, lakeshore", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:terrapin", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:geological form:shore:lakeside, lakeshore", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:waterfowl-water:anseriform bird:duck:drake", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:geological form:shore:lakeside, lakeshore", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:heron:egret:American egret, great white heron, Egretta albus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:geological form:shore:lakeside, lakeshore", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:seabird-sea bir:pelecaniform se:pelican", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:geological form:shore:lakeside, lakeshore", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:Old World buffa:water buffalo, water ox, Asiatic buffalo, Bubalus bubalis", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:geological form:shore:lakeside, lakeshore", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:outbuilding:shed:boathouse", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:geological form:shore:lakeside, lakeshore", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:breakwater, groin, groyne, mole, bulwark, seawall, jetty", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:geological form:shore:lakeside, lakeshore", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:boat:small boat:canoe", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:geological form:shore:lakeside, lakeshore", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:landing-landing:dock, dockage, docking facility", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:geological form:shore:lakeside, lakeshore", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:fountain", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:geological form:shore:lakeside, lakeshore", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:house:residence:palace", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:geological form:shore:lakeside, lakeshore", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:bench:park bench", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:geological form:shore:lakeside, lakeshore", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:blind-screen:window blind:window shade", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:geological form:shore:lakeside, lakeshore", "at": "root:entity:physical entity:object-physical:geological form:shore:lakeside, lakeshore", "oc": 28}, {"rt": "root:entity:physical entity:object-physical:geological form:shore:lakeside, lakeshore", "at": "root:entity:physical entity:object-physical:geological form:natural elevati:promontory, headland, head, foreland", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:geological form:shore:lakeside, lakeshore", "at": "root:entity:physical entity:object-physical:geological form:natural elevati:ridge:bar:sandbar, sand bar", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:geological form:shore:lakeside, lakeshore", "at": "root:entity:physical entity:object-physical:geological form:shore:seashore, coast, seacoast, sea-coast", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:geological form:natural elevati:promontory, headland, head, foreland", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:tower:beacon, lighthouse, beacon light, pharos", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:geological form:natural elevati:promontory, headland, head, foreland", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:breakwater, groin, groyne, mole, bulwark, seawall, jetty", "oc": 5}, {"rt": "root:entity:physical entity:object-physical:geological form:natural elevati:promontory, headland, head, foreland", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:defensive struc:fortification-m:castle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:geological form:natural elevati:promontory, headland, head, foreland", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:dam, dike, dyke", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:geological form:natural elevati:promontory, headland, head, foreland", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:arch:triumphal arch", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:geological form:natural elevati:promontory, headland, head, foreland", "at": "root:entity:physical entity:object-physical:geological form:cliff, drop, drop-off", "oc": 5}, {"rt": "root:entity:physical entity:object-physical:geological form:natural elevati:promontory, headland, head, foreland", "at": "root:entity:physical entity:object-physical:geological form:natural elevati:ridge:reef:coral reef", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:geological form:natural elevati:promontory, headland, head, foreland", "at": "root:entity:physical entity:object-physical:geological form:shore:lakeside, lakeshore", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:geological form:natural elevati:promontory, headland, head, foreland", "at": "root:entity:physical entity:object-physical:geological form:natural elevati:promontory, headland, head, foreland", "oc": 28}, {"rt": "root:entity:physical entity:object-physical:geological form:natural elevati:promontory, headland, head, foreland", "at": "root:entity:physical entity:object-physical:geological form:natural elevati:ridge:bar:sandbar, sand bar", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:geological form:natural elevati:promontory, headland, head, foreland", "at": "root:entity:physical entity:object-physical:geological form:natural depress:valley, vale", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:geological form:natural elevati:ridge:bar:sandbar, sand bar", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:breakwater, groin, groyne, mole, bulwark, seawall, jetty", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:geological form:natural elevati:ridge:bar:sandbar, sand bar", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:oar:paddle, boat paddle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:geological form:natural elevati:ridge:bar:sandbar, sand bar", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:boat:motorboat-power:speedboat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:geological form:natural elevati:ridge:bar:sandbar, sand bar", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:warship-war ves:submersible-sub:submarine, pigboat, sub, U-boat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:geological form:natural elevati:ridge:bar:sandbar, sand bar", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:swimsuit-swimwe:swimming trunks, bathing trunks", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:geological form:natural elevati:ridge:bar:sandbar, sand bar", "at": "root:entity:physical entity:matter:substance:food-nutrient:feed-provender:fodder:hay", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:geological form:natural elevati:ridge:bar:sandbar, sand bar", "at": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :concoction-mixt:dough", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:geological form:natural elevati:ridge:bar:sandbar, sand bar", "at": "root:entity:physical entity:object-physical:geological form:cliff, drop, drop-off", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:geological form:natural elevati:ridge:bar:sandbar, sand bar", "at": "root:entity:physical entity:object-physical:geological form:natural elevati:promontory, headland, head, foreland", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:geological form:natural elevati:ridge:bar:sandbar, sand bar", "at": "root:entity:physical entity:object-physical:geological form:natural elevati:ridge:bar:sandbar, sand bar", "oc": 29}, {"rt": "root:entity:physical entity:object-physical:geological form:natural elevati:ridge:bar:sandbar, sand bar", "at": "root:entity:physical entity:object-physical:geological form:shore:seashore, coast, seacoast, sea-coast", "oc": 9}, {"rt": "root:entity:physical entity:object-physical:geological form:shore:seashore, coast, seacoast, sea-coast", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:sea turtle-mari:loggerhead, loggerhead turtle, Caretta caretta", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:geological form:shore:seashore, coast, seacoast, sea-coast", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:crocodilian rep:crocodile:African crocodile, Nile crocodile, Crocodylus niloticus", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:geological form:shore:seashore, coast, seacoast, sea-coast", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:waterfowl-water:anseriform bird:goose", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:geological form:shore:seashore, coast, seacoast, sea-coast", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:aquatic mammal:pinniped mammal:seal:eared seal:sea lion", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:geological form:shore:seashore, coast, seacoast, sea-coast", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wolf:white wolf, Arctic wolf, Canis lupus tundrarum", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:geological form:shore:seashore, coast, seacoast, sea-coast", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:breakwater, groin, groyne, mole, bulwark, seawall, jetty", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:geological form:shore:seashore, coast, seacoast, sea-coast", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:boat:small boat:canoe", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:geological form:shore:seashore, coast, seacoast, sea-coast", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:lifting device:crane", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:geological form:shore:seashore, coast, seacoast, sea-coast", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:staff:crutch", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:geological form:shore:seashore, coast, seacoast, sea-coast", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:landing-landing:dock, dockage, docking facility", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:geological form:shore:seashore, coast, seacoast, sea-coast", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:folding chair", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:geological form:shore:seashore, coast, seacoast, sea-coast", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:go-kart", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:geological form:shore:seashore, coast, seacoast, sea-coast", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:memorial-monume:megalith, megalithic structure", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:geological form:shore:seashore, coast, seacoast, sea-coast", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:rescue equipmen:parachute, chute", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:geological form:shore:seashore, coast, seacoast, sea-coast", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:boat:motorboat-power:speedboat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:geological form:shore:seashore, coast, seacoast, sea-coast", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:surface:horizontal surf:platform:stage", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:geological form:shore:seashore, coast, seacoast, sea-coast", "at": "root:entity:physical entity:object-physical:geological form:spring-fountain:geyser", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:geological form:shore:seashore, coast, seacoast, sea-coast", "at": "root:entity:physical entity:object-physical:geological form:shore:lakeside, lakeshore", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:geological form:shore:seashore, coast, seacoast, sea-coast", "at": "root:entity:physical entity:object-physical:geological form:natural elevati:promontory, headland, head, foreland", "oc": 5}, {"rt": "root:entity:physical entity:object-physical:geological form:shore:seashore, coast, seacoast, sea-coast", "at": "root:entity:physical entity:object-physical:geological form:natural elevati:ridge:bar:sandbar, sand bar", "oc": 5}, {"rt": "root:entity:physical entity:object-physical:geological form:shore:seashore, coast, seacoast, sea-coast", "at": "root:entity:physical entity:object-physical:geological form:shore:seashore, coast, seacoast, sea-coast", "oc": 19}, {"rt": "root:entity:physical entity:object-physical:geological form:natural depress:valley, vale", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:dam, dike, dyke", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:geological form:natural depress:valley, vale", "at": "root:entity:physical entity:object-physical:geological form:natural elevati:mountain-mount:alp", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:geological form:natural depress:valley, vale", "at": "root:entity:physical entity:object-physical:geological form:cliff, drop, drop-off", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:geological form:natural depress:valley, vale", "at": "root:entity:physical entity:object-physical:geological form:shore:lakeside, lakeshore", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:geological form:natural depress:valley, vale", "at": "root:entity:physical entity:object-physical:geological form:natural elevati:promontory, headland, head, foreland", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:geological form:natural depress:valley, vale", "at": "root:entity:physical entity:object-physical:geological form:natural depress:valley, vale", "oc": 39}, {"rt": "root:entity:physical entity:object-physical:geological form:natural depress:valley, vale", "at": "root:entity:physical entity:object-physical:geological form:natural elevati:mountain-mount:volcano", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:geological form:natural elevati:mountain-mount:volcano", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:Old World buffa:water buffalo, water ox, Asiatic buffalo, Bubalus bubalis", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:geological form:natural elevati:mountain-mount:volcano", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bathtub, bathing tub, bath, tub", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:geological form:natural elevati:mountain-mount:volcano", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:bell cote, bell cot", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:geological form:natural elevati:mountain-mount:volcano", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:landing-landing:dock, dockage, docking facility", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:geological form:natural elevati:mountain-mount:volcano", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:car-railcar-rai:passenger car, coach, carriage", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:geological form:natural elevati:mountain-mount:volcano", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:bridge-span:suspension bridge", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:geological form:natural elevati:mountain-mount:volcano", "at": "root:entity:physical entity:object-physical:geological form:natural elevati:mountain-mount:alp", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:geological form:natural elevati:mountain-mount:volcano", "at": "root:entity:physical entity:object-physical:geological form:shore:lakeside, lakeshore", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:geological form:natural elevati:mountain-mount:volcano", "at": "root:entity:physical entity:object-physical:geological form:natural elevati:promontory, headland, head, foreland", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:geological form:natural elevati:mountain-mount:volcano", "at": "root:entity:physical entity:object-physical:geological form:natural elevati:ridge:bar:sandbar, sand bar", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:geological form:natural elevati:mountain-mount:volcano", "at": "root:entity:physical entity:object-physical:geological form:natural depress:valley, vale", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:geological form:natural elevati:mountain-mount:volcano", "at": "root:entity:physical entity:object-physical:geological form:natural elevati:mountain-mount:volcano", "oc": 38}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:person-individu:contestant:player-particip:ballplayer, baseball player", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:altar", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:person-individu:contestant:player-particip:ballplayer, baseball player", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:baseball equipm:baseball", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:person-individu:contestant:player-particip:ballplayer, baseball player", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:helmet:football helmet", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:person-individu:contestant:player-particip:ballplayer, baseball player", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:uniform:military uniform", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:person-individu:contestant:player-particip:ballplayer, baseball player", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:institution:penal instituti:correctional in:prison, prison house", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:person-individu:contestant:player-particip:ballplayer, baseball player", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:rotating mechan:circle-round:disk-disc:puck, hockey puck", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:person-individu:contestant:player-particip:ballplayer, baseball player", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:sports implemen:racket, racquet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:person-individu:contestant:player-particip:ballplayer, baseball player", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:signboard-sign:scoreboard", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:person-individu:contestant:player-particip:ballplayer, baseball player", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:light-light sou:torch", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:person-individu:contestant:player-particip:ballplayer, baseball player", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball:volleyball", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:person-individu:contestant:player-particip:ballplayer, baseball player", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:person-individu:contestant:player-particip:ballplayer, baseball player", "oc": 37}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:person-individu:peer-equal-matc:associate:participant:groom, bridegroom", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:soft-finned fis:salmonid:salmon:coho, cohoe, coho salmon, blue jack, silver salmon, Oncorhynchus kisutch", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:person-individu:peer-equal-matc:associate:participant:groom, bridegroom", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:outerwear-overc:gown-robe:academic gown, academic robe, judge's robe", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:person-individu:peer-equal-matc:associate:participant:groom, bridegroom", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:neckwear:necktie-tie:bow tie, bow-tie, bowtie", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:person-individu:peer-equal-matc:associate:participant:groom, bridegroom", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:butcher shop, meat market", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:person-individu:peer-equal-matc:associate:participant:groom, bridegroom", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:boat:gondola", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:person-individu:peer-equal-matc:associate:participant:groom, bridegroom", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:hair spray", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:person-individu:peer-equal-matc:associate:participant:groom, bridegroom", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt:hoopskirt, crinoline", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:person-individu:peer-equal-matc:associate:participant:groom, bridegroom", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:wagon-waggon:cart:horse cart, horse-cart", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:person-individu:peer-equal-matc:associate:participant:groom, bridegroom", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:robe:kimono", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:person-individu:peer-equal-matc:associate:participant:groom, bridegroom", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:system:maze, labyrinth", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:person-individu:peer-equal-matc:associate:participant:groom, bridegroom", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:strengthener-re:brace:neck brace", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:person-individu:peer-equal-matc:associate:participant:groom, bridegroom", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:bench:park bench", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:person-individu:peer-equal-matc:associate:participant:groom, bridegroom", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:plastic bag", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:person-individu:peer-equal-matc:associate:participant:groom, bridegroom", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:restaurant, eating house, eating place, eatery", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:person-individu:peer-equal-matc:associate:participant:groom, bridegroom", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:safety belt-lif:seat belt, seatbelt", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:person-individu:peer-equal-matc:associate:participant:groom, bridegroom", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:sleeping bag", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:person-individu:peer-equal-matc:associate:participant:groom, bridegroom", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:toyshop", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:person-individu:peer-equal-matc:associate:participant:groom, bridegroom", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:coat:raincoat-waterp:trench coat", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:person-individu:peer-equal-matc:associate:participant:groom, bridegroom", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:person-individu:peer-equal-matc:associate:participant:groom, bridegroom", "oc": 32}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:person-individu:explorer-advent:diver-frogman-u:scuba diver", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:mask:gasmask, respirator, gas helmet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:person-individu:explorer-advent:diver-frogman-u:scuba diver", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:breathing devic:oxygen mask", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:person-individu:explorer-advent:diver-frogman-u:scuba diver", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:breathing devic:snorkel", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:person-individu:explorer-advent:diver-frogman-u:scuba diver", "at": "root:entity:physical entity:object-physical:geological form:natural elevati:ridge:reef:coral reef", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:person-individu:explorer-advent:diver-frogman-u:scuba diver", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:person-individu:explorer-advent:diver-frogman-u:scuba diver", "oc": 42}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:seed:oilseed-oil-ric:rapeseed", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:dictyopterous i:mantis, mantid", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:seed:oilseed-oil-ric:rapeseed", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:farm building:barn", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:seed:oilseed-oil-ric:rapeseed", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:rail fence:worm fence, snake fence, snake-rail fence, Virginia fence", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:seed:oilseed-oil-ric:rapeseed", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:seed:oilseed-oil-ric:rapeseed", "oc": 47}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:plant-flora-pla:vascular plant-:spermatophyte-p:angiosperm-flow:flower:daisy", "at": "root:entity:physical entity:object-physical:geological form:natural elevati:ridge:reef:coral reef", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:plant-flora-pla:vascular plant-:spermatophyte-p:angiosperm-flow:flower:daisy", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:plant-flora-pla:vascular plant-:spermatophyte-p:angiosperm-flow:flower:daisy", "oc": 49}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:plant-flora-pla:vascular plant-:spermatophyte-p:angiosperm-flow:flower:orchid-orchidac:ladys slipper-l:yellow lady's slipper, yellow lady-slipper, Cypripedium calceolus, Cypripedium parviflorum", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:plant-flora-pla:vascular plant-:spermatophyte-p:angiosperm-flow:flower:orchid-orchidac:ladys slipper-l:yellow lady's slipper, yellow lady-slipper, Cypripedium calceolus, Cypripedium parviflorum", "oc": 50}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:seed:grain-caryopsis:kernel:corn", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:bakery, bakeshop, bakehouse", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:seed:grain-caryopsis:kernel:corn", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:oven:Dutch oven", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:seed:grain-caryopsis:kernel:corn", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:marketplace-mar:grocery store, grocery, food market, market", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:seed:grain-caryopsis:kernel:corn", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:basket-handbask:hamper", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:seed:grain-caryopsis:kernel:corn", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:plastic bag", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:seed:grain-caryopsis:kernel:corn", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dish:bowl:soup bowl", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:seed:grain-caryopsis:kernel:corn", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:roof:thatch, thatched roof", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:seed:grain-caryopsis:kernel:corn", "at": "root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:stew:hot pot, hotpot", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:seed:grain-caryopsis:kernel:corn", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:root vegetable:potato-white po:mashed potato", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:seed:grain-caryopsis:kernel:corn", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:cruciferous veg:cauliflower", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:seed:grain-caryopsis:kernel:corn", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:cucumber, cuke", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:seed:grain-caryopsis:kernel:corn", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:seed:grain-caryopsis:kernel:corn", "oc": 17}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:seed:grain-caryopsis:kernel:corn", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:ear, spike, capitulum", "oc": 20}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:acorn", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:finch:bunting:indigo bunting, indigo finch, indigo bird, Passerina cyanea", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:acorn", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:gastropod-univa:snail", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:acorn", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:lepidopterous i:butterfly:ringlet, ringlet butterfly", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:acorn", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:acorn", "oc": 46}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:hip, rose hip, rosehip", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:hymenopterous i:ant, emmet, pismire", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:hip, rose hip, rosehip", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:citrus-citrus f:orange", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:hip, rose hip, rosehip", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:hip, rose hip, rosehip", "oc": 47}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:hip, rose hip, rosehip", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:seed:buckeye, horse chestnut, conker", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:seed:buckeye, horse chestnut, conker", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:gastropod-univa:snail", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:seed:buckeye, horse chestnut, conker", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:dictyopterous i:cockroach, roach", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:seed:buckeye, horse chestnut, conker", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:seed:buckeye, horse chestnut, conker", "oc": 48}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:fungus:coral fungus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:gastropod-univa:slug", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:fungus:coral fungus", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:acorn", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:fungus:coral fungus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:fungus:coral fungus", "oc": 47}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:fungus:coral fungus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:fungus:hen-of-the-woods, hen of the woods, Polyporus frondosus, Grifola frondosa", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:fungus:basidiomycete-b:agaric", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:flamingo", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:fungus:basidiomycete-b:agaric", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:hymenopterous i:ant, emmet, pismire", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:fungus:basidiomycete-b:agaric", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:spindle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:fungus:basidiomycete-b:agaric", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:mushroom", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:fungus:basidiomycete-b:agaric", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:fungus:basidiomycete-b:agaric", "oc": 43}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:fungus:basidiomycete-b:agaric", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:fungus:bolete", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:fungus:gyromitra", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:fungus:gyromitra", "oc": 49}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:fungus:gyromitra", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:fungus:bolete", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:fungus:stinkhorn, carrion fungus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:gastropod-univa:conch", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:fungus:stinkhorn, carrion fungus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:gastropod-univa:slug", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:fungus:stinkhorn, carrion fungus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:echinoderm:starfish, sea star", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:fungus:stinkhorn, carrion fungus", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:mushroom", "oc": 4}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:fungus:stinkhorn, carrion fungus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:fungus:gyromitra", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:fungus:stinkhorn, carrion fungus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:fungus:stinkhorn, carrion fungus", "oc": 40}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:fungus:stinkhorn, carrion fungus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:fungus:earthstar", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:fungus:stinkhorn, carrion fungus", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:fungus:bolete", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:fungus:earthstar", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:fungus:earthstar", "oc": 50}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:fungus:hen-of-the-woods, hen of the woods, Polyporus frondosus, Grifola frondosa", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:box turtle, box tortoise", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:fungus:hen-of-the-woods, hen of the woods, Polyporus frondosus, Grifola frondosa", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid:bonnet, poke bonnet", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:fungus:hen-of-the-woods, hen of the woods, Polyporus frondosus, Grifola frondosa", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:stone wall", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:fungus:hen-of-the-woods, hen of the woods, Polyporus frondosus, Grifola frondosa", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:medical instrum:syringe", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:fungus:hen-of-the-woods, hen of the woods, Polyporus frondosus, Grifola frondosa", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:attire-garb-dre:hairpiece-false:wig", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:fungus:hen-of-the-woods, hen of the woods, Polyporus frondosus, Grifola frondosa", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:artichoke, globe artichoke", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:fungus:hen-of-the-woods, hen of the woods, Polyporus frondosus, Grifola frondosa", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:mushroom", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:fungus:hen-of-the-woods, hen of the woods, Polyporus frondosus, Grifola frondosa", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:fungus:gyromitra", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:fungus:hen-of-the-woods, hen of the woods, Polyporus frondosus, Grifola frondosa", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:fungus:hen-of-the-woods, hen of the woods, Polyporus frondosus, Grifola frondosa", "oc": 41}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:fungus:bolete", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:lepidopterous i:butterfly:ringlet, ringlet butterfly", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:fungus:bolete", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store:butcher shop, meat market", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:fungus:bolete", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:knife:letter opener, paper knife, paperknife", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:fungus:bolete", "at": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:loaf of bread-l:French loaf", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:fungus:bolete", "at": "root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:mushroom", "oc": 5}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:fungus:bolete", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:fig", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:fungus:bolete", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:custard apple", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:fungus:bolete", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:acorn", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:fungus:bolete", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:seed:buckeye, horse chestnut, conker", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:fungus:bolete", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:fungus:basidiomycete-b:agaric", "oc": 2}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:fungus:bolete", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:fungus:earthstar", "oc": 3}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:fungus:bolete", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:fungus:hen-of-the-woods, hen of the woods, Polyporus frondosus, Grifola frondosa", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:fungus:bolete", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:fungus:bolete", "oc": 30}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:ear, spike, capitulum", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:gastropod-univa:conch", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:ear, spike, capitulum", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:viverrine-viver:mongoose", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:ear, spike, capitulum", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:phasmid-phasmid:walking stick, walkingstick, stick insect", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:ear, spike, capitulum", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:amphibian, amphibious vehicle", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:ear, spike, capitulum", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:machine-simple :wheel:pinwheel", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:ear, spike, capitulum", "at": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:loaf of bread-l:French loaf", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:ear, spike, capitulum", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:jackfruit, jak, jack", "oc": 1}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:ear, spike, capitulum", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:seed:grain-caryopsis:kernel:corn", "oc": 17}, {"rt": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:ear, spike, capitulum", "at": "root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:ear, spike, capitulum", "oc": 26}, {"rt": "root:entity:physical entity:matter:substance:material-stuff:paper:tissue-tissue p:toilet tissue, toilet paper, bathroom tissue", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wolf:coyote, prairie wolf, brush wolf, Canis latrans", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:material-stuff:paper:tissue-tissue p:toilet tissue, toilet paper, bathroom tissue", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:rodent-gnawer:hamster", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:material-stuff:paper:tissue-tissue p:toilet tissue, toilet paper, bathroom tissue", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:rodent-gnawer:squirrel:tree squirrel:fox squirrel, eastern fox squirrel, Sciurus niger", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:material-stuff:paper:tissue-tissue p:toilet tissue, toilet paper, bathroom tissue", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:altar", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:material-stuff:paper:tissue-tissue p:toilet tissue, toilet paper, bathroom tissue", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:weight-free wei:barbell", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:material-stuff:paper:tissue-tissue p:toilet tissue, toilet paper, bathroom tissue", "at": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:towel:bath towel", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:material-stuff:paper:tissue-tissue p:toilet tissue, toilet paper, bathroom tissue", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:neckwear:necktie-tie:bow tie, bow-tie, bowtie", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:material-stuff:paper:tissue-tissue p:toilet tissue, toilet paper, bathroom tissue", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:marketplace-mar:grocery store, grocery, food market, market", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:material-stuff:paper:tissue-tissue p:toilet tissue, toilet paper, bathroom tissue", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:audio system-so:reproducer:stereo-stereoph:iPod", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:material-stuff:paper:tissue-tissue p:toilet tissue, toilet paper, bathroom tissue", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:coat:lab coat, laboratory coat", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:material-stuff:paper:tissue-tissue p:toilet tissue, toilet paper, bathroom tissue", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shade:lampshade, lamp shade", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:material-stuff:paper:tissue-tissue p:toilet tissue, toilet paper, bathroom tissue", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:lotion", "oc": 2}, {"rt": "root:entity:physical entity:matter:substance:material-stuff:paper:tissue-tissue p:toilet tissue, toilet paper, bathroom tissue", "at": "root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:towel:paper towel", "oc": 9}, {"rt": "root:entity:physical entity:matter:substance:material-stuff:paper:tissue-tissue p:toilet tissue, toilet paper, bathroom tissue", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag:plastic bag", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:material-stuff:paper:tissue-tissue p:toilet tissue, toilet paper, bathroom tissue", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:movable barrier:door:sliding door", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:material-stuff:paper:tissue-tissue p:toilet tissue, toilet paper, bathroom tissue", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:bar:lever:key:space bar", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:material-stuff:paper:tissue-tissue p:toilet tissue, toilet paper, bathroom tissue", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:toilet seat", "oc": 3}, {"rt": "root:entity:physical entity:matter:substance:material-stuff:paper:tissue-tissue p:toilet tissue, toilet paper, bathroom tissue", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:tub, vat", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:material-stuff:paper:tissue-tissue p:toilet tissue, toilet paper, bathroom tissue", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:white goods:washer, automatic washer, washing machine", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:material-stuff:paper:tissue-tissue p:toilet tissue, toilet paper, bathroom tissue", "at": "root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:blind-screen:window blind:window shade", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:material-stuff:paper:tissue-tissue p:toilet tissue, toilet paper, bathroom tissue", "at": "root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :concoction-mixt:dough", "oc": 1}, {"rt": "root:entity:physical entity:matter:substance:material-stuff:paper:tissue-tissue p:toilet tissue, toilet paper, bathroom tissue", "at": "root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:person-individu:peer-equal-matc:associate:participant:groom, bridegroom", "oc": 2}, {"rt": "root:entity:physical entity:matter:substance:material-stuff:paper:tissue-tissue p:toilet tissue, toilet paper, bathroom tissue", "at": "root:entity:physical entity:matter:substance:material-stuff:paper:tissue-tissue p:toilet tissue, toilet paper, bathroom tissue", "oc": 16}]}}
\ No newline at end of file
diff --git a/public/data/chi-paper/case-study-3.json b/public/data/chi-paper/case-study-3.json
new file mode 100644
index 0000000..d6b753e
--- /dev/null
+++ b/public/data/chi-paper/case-study-3.json
@@ -0,0 +1 @@
+{"data": {"values": [{"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["obscene:obscene", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["obscene:obscene", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": [], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["threat:threat"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["insult:insult"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["obscene:obscene", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["obscene:obscene", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["obscene:obscene"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "identity_hate:identity_hate"], "observed": ["obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["obscene:obscene", "threat:threat", "insult:insult"], "observed": ["obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult"], "observed": ["obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat"], "observed": ["obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild"], "observed": ["obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "insult:insult"], "observed": ["obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["identity_hate:identity_hate"], "observed": ["obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "identity_hate:identity_hate"], "observed": ["obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "observed": ["obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene"], "observed": ["obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat"], "observed": ["obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult"], "observed": ["obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat", "insult:insult"], "observed": ["obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult", "identity_hate:identity_hate"], "observed": ["obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "insult:insult", "identity_hate:identity_hate"], "observed": ["obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe"], "observed": ["obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["obscene:obscene", "insult:insult"], "observed": ["obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene"], "observed": ["obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat", "identity_hate:identity_hate"], "observed": ["obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult"], "observed": ["obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": [], "observed": ["obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat"], "observed": ["obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "identity_hate:identity_hate"], "observed": ["obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "identity_hate:identity_hate"], "observed": ["obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult"], "observed": ["obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["insult:insult", "identity_hate:identity_hate"], "observed": ["obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult"], "observed": ["obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["threat:threat"], "observed": ["obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat"], "observed": ["obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["insult:insult"], "observed": ["obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["obscene:obscene", "threat:threat"], "observed": ["obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat", "insult:insult"], "observed": ["obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["obscene:obscene", "identity_hate:identity_hate"], "observed": ["obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["obscene:obscene"], "observed": ["obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "observed": ["obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult"], "count": 0}, {"actual": ["obscene:obscene", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult"], "count": 0}, {"actual": ["identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult"], "count": 0}, {"actual": ["obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult"], "count": 0}, {"actual": ["obscene:obscene", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult"], "count": 0}, {"actual": [], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult"], "count": 0}, {"actual": ["insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult"], "count": 0}, {"actual": ["threat:threat"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult"], "count": 0}, {"actual": ["insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult"], "count": 0}, {"actual": ["obscene:obscene", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult"], "count": 0}, {"actual": ["obscene:obscene", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult"], "count": 0}, {"actual": ["obscene:obscene"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["obscene:obscene", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["obscene:obscene", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat"], "count": 0}, {"actual": [], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["threat:threat"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["obscene:obscene", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["obscene:obscene", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["obscene:obscene"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild"], "count": 4}, {"actual": ["obscene:obscene", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult"], "observed": ["toxic_mild:toxic_mild"], "count": 1}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat"], "observed": ["toxic_mild:toxic_mild"], "count": 1}, {"actual": ["toxic_mild:toxic_mild"], "observed": ["toxic_mild:toxic_mild"], "count": 81}, {"actual": ["toxic_mild:toxic_mild", "insult:insult"], "observed": ["toxic_mild:toxic_mild"], "count": 62}, {"actual": ["identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild"], "count": 10}, {"actual": ["obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild"], "count": 1}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene"], "observed": ["toxic_mild:toxic_mild"], "count": 87}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat"], "observed": ["toxic_mild:toxic_mild"], "count": 2}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult"], "observed": ["toxic_mild:toxic_mild"], "count": 267}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild"], "count": 1}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild"], "count": 1}, {"actual": ["toxic_mild:toxic_mild", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild"], "count": 5}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe"], "observed": ["toxic_mild:toxic_mild"], "count": 7}, {"actual": ["obscene:obscene", "insult:insult"], "observed": ["toxic_mild:toxic_mild"], "count": 3}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene"], "observed": ["toxic_mild:toxic_mild"], "count": 8}, {"actual": ["toxic_mild:toxic_mild", "threat:threat", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild"], "count": 1}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild"], "count": 3}, {"actual": [], "observed": ["toxic_mild:toxic_mild"], "count": 14}, {"actual": ["toxic_mild:toxic_mild", "threat:threat"], "observed": ["toxic_mild:toxic_mild"], "count": 2}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild"], "count": 1}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild"], "count": 58}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild"], "count": 19}, {"actual": ["insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild"], "count": 1}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult"], "observed": ["toxic_mild:toxic_mild"], "count": 42}, {"actual": ["threat:threat"], "observed": ["toxic_mild:toxic_mild"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild"], "count": 20}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat"], "observed": ["toxic_mild:toxic_mild"], "count": 0}, {"actual": ["insult:insult"], "observed": ["toxic_mild:toxic_mild"], "count": 2}, {"actual": ["obscene:obscene", "threat:threat"], "observed": ["toxic_mild:toxic_mild"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild"], "count": 2}, {"actual": ["obscene:obscene", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild"], "count": 0}, {"actual": ["obscene:obscene"], "observed": ["toxic_mild:toxic_mild"], "count": 3}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild"], "count": 6}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "insult:insult"], "count": 0}, {"actual": ["obscene:obscene", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "insult:insult"], "count": 1}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild"], "observed": ["toxic_mild:toxic_mild", "insult:insult"], "count": 2}, {"actual": ["toxic_mild:toxic_mild", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "insult:insult"], "count": 12}, {"actual": ["identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "insult:insult"], "count": 0}, {"actual": ["obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene"], "observed": ["toxic_mild:toxic_mild", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "insult:insult"], "count": 19}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe"], "observed": ["toxic_mild:toxic_mild", "insult:insult"], "count": 0}, {"actual": ["obscene:obscene", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "insult:insult"], "count": 1}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene"], "observed": ["toxic_mild:toxic_mild", "insult:insult"], "count": 1}, {"actual": ["toxic_mild:toxic_mild", "threat:threat", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "insult:insult"], "count": 0}, {"actual": [], "observed": ["toxic_mild:toxic_mild", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "insult:insult"], "count": 6}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "insult:insult"], "count": 1}, {"actual": ["insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "insult:insult"], "count": 3}, {"actual": ["threat:threat"], "observed": ["toxic_mild:toxic_mild", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "insult:insult"], "count": 2}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "insult:insult"], "count": 0}, {"actual": ["insult:insult"], "observed": ["toxic_mild:toxic_mild", "insult:insult"], "count": 0}, {"actual": ["obscene:obscene", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "insult:insult"], "count": 1}, {"actual": ["obscene:obscene", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "insult:insult"], "count": 0}, {"actual": ["obscene:obscene"], "observed": ["toxic_mild:toxic_mild", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "identity_hate:identity_hate"], "observed": ["identity_hate:identity_hate"], "count": 0}, {"actual": ["obscene:obscene", "threat:threat", "insult:insult"], "observed": ["identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult"], "observed": ["identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat"], "observed": ["identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild"], "observed": ["identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "insult:insult"], "observed": ["identity_hate:identity_hate"], "count": 0}, {"actual": ["identity_hate:identity_hate"], "observed": ["identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "identity_hate:identity_hate"], "observed": ["identity_hate:identity_hate"], "count": 0}, {"actual": ["obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "observed": ["identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene"], "observed": ["identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat"], "observed": ["identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult"], "observed": ["identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat", "insult:insult"], "observed": ["identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult", "identity_hate:identity_hate"], "observed": ["identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "insult:insult", "identity_hate:identity_hate"], "observed": ["identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe"], "observed": ["identity_hate:identity_hate"], "count": 0}, {"actual": ["obscene:obscene", "insult:insult"], "observed": ["identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene"], "observed": ["identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat", "identity_hate:identity_hate"], "observed": ["identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult"], "observed": ["identity_hate:identity_hate"], "count": 0}, {"actual": [], "observed": ["identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat"], "observed": ["identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "identity_hate:identity_hate"], "observed": ["identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "identity_hate:identity_hate"], "observed": ["identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult"], "observed": ["identity_hate:identity_hate"], "count": 0}, {"actual": ["insult:insult", "identity_hate:identity_hate"], "observed": ["identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult"], "observed": ["identity_hate:identity_hate"], "count": 0}, {"actual": ["threat:threat"], "observed": ["identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat"], "observed": ["identity_hate:identity_hate"], "count": 0}, {"actual": ["insult:insult"], "observed": ["identity_hate:identity_hate"], "count": 0}, {"actual": ["obscene:obscene", "threat:threat"], "observed": ["identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat", "insult:insult"], "observed": ["identity_hate:identity_hate"], "count": 0}, {"actual": ["obscene:obscene", "identity_hate:identity_hate"], "observed": ["identity_hate:identity_hate"], "count": 0}, {"actual": ["obscene:obscene"], "observed": ["identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "observed": ["identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "identity_hate:identity_hate"], "count": 1}, {"actual": ["obscene:obscene", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild"], "observed": ["toxic_mild:toxic_mild", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "identity_hate:identity_hate"], "count": 0}, {"actual": ["identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "identity_hate:identity_hate"], "count": 0}, {"actual": ["obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene"], "observed": ["toxic_mild:toxic_mild", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe"], "observed": ["toxic_mild:toxic_mild", "identity_hate:identity_hate"], "count": 0}, {"actual": ["obscene:obscene", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene"], "observed": ["toxic_mild:toxic_mild", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "identity_hate:identity_hate"], "count": 0}, {"actual": [], "observed": ["toxic_mild:toxic_mild", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "identity_hate:identity_hate"], "count": 1}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "identity_hate:identity_hate"], "count": 0}, {"actual": ["insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "identity_hate:identity_hate"], "count": 0}, {"actual": ["threat:threat"], "observed": ["toxic_mild:toxic_mild", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "identity_hate:identity_hate"], "count": 1}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "identity_hate:identity_hate"], "count": 0}, {"actual": ["insult:insult"], "observed": ["toxic_mild:toxic_mild", "identity_hate:identity_hate"], "count": 0}, {"actual": ["obscene:obscene", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "identity_hate:identity_hate"], "count": 0}, {"actual": ["obscene:obscene", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "identity_hate:identity_hate"], "count": 0}, {"actual": ["obscene:obscene"], "observed": ["toxic_mild:toxic_mild", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "identity_hate:identity_hate"], "observed": ["obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["obscene:obscene", "threat:threat", "insult:insult"], "observed": ["obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult"], "observed": ["obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat"], "observed": ["obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild"], "observed": ["obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "insult:insult"], "observed": ["obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["identity_hate:identity_hate"], "observed": ["obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "identity_hate:identity_hate"], "observed": ["obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "observed": ["obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene"], "observed": ["obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat"], "observed": ["obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult"], "observed": ["obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat", "insult:insult"], "observed": ["obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult", "identity_hate:identity_hate"], "observed": ["obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "insult:insult", "identity_hate:identity_hate"], "observed": ["obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe"], "observed": ["obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["obscene:obscene", "insult:insult"], "observed": ["obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene"], "observed": ["obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat", "identity_hate:identity_hate"], "observed": ["obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult"], "observed": ["obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": [], "observed": ["obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat"], "observed": ["obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "identity_hate:identity_hate"], "observed": ["obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "identity_hate:identity_hate"], "observed": ["obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult"], "observed": ["obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["insult:insult", "identity_hate:identity_hate"], "observed": ["obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult"], "observed": ["obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["threat:threat"], "observed": ["obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat"], "observed": ["obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["insult:insult"], "observed": ["obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["obscene:obscene", "threat:threat"], "observed": ["obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat", "insult:insult"], "observed": ["obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["obscene:obscene", "identity_hate:identity_hate"], "observed": ["obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["obscene:obscene"], "observed": ["obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "observed": ["obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["obscene:obscene", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["obscene:obscene", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": [], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["threat:threat"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["obscene:obscene", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["obscene:obscene", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["obscene:obscene"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene"], "count": 0}, {"actual": ["obscene:obscene", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene"], "count": 0}, {"actual": ["toxic_mild:toxic_mild"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene"], "count": 17}, {"actual": ["toxic_mild:toxic_mild", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene"], "count": 1}, {"actual": ["identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene"], "count": 0}, {"actual": ["obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene"], "count": 92}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene"], "count": 174}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene"], "count": 0}, {"actual": ["obscene:obscene", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene"], "count": 16}, {"actual": ["toxic_mild:toxic_mild", "threat:threat", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene"], "count": 2}, {"actual": [], "observed": ["toxic_mild:toxic_mild", "obscene:obscene"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene"], "count": 1}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene"], "count": 28}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene"], "count": 6}, {"actual": ["insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene"], "count": 59}, {"actual": ["threat:threat"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene"], "count": 11}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene"], "count": 0}, {"actual": ["insult:insult"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene"], "count": 0}, {"actual": ["obscene:obscene", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene"], "count": 0}, {"actual": ["obscene:obscene", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene"], "count": 0}, {"actual": ["obscene:obscene"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene"], "count": 1}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene"], "count": 2}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["obscene:obscene", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["obscene:obscene", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat"], "count": 0}, {"actual": [], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["threat:threat"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["insult:insult"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["obscene:obscene", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["obscene:obscene", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["obscene:obscene"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult"], "count": 0}, {"actual": ["obscene:obscene", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult"], "count": 3}, {"actual": ["toxic_mild:toxic_mild", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult"], "count": 3}, {"actual": ["identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult"], "count": 0}, {"actual": ["obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult"], "count": 3}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult"], "count": 28}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult"], "count": 194}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult"], "count": 0}, {"actual": ["obscene:obscene", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult"], "count": 1}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult"], "count": 13}, {"actual": ["toxic_mild:toxic_mild", "threat:threat", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult"], "count": 6}, {"actual": [], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult"], "count": 26}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult"], "count": 5}, {"actual": ["insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult"], "count": 135}, {"actual": ["threat:threat"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult"], "count": 38}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult"], "count": 0}, {"actual": ["insult:insult"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult"], "count": 0}, {"actual": ["obscene:obscene", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult"], "count": 0}, {"actual": ["obscene:obscene", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult"], "count": 0}, {"actual": ["obscene:obscene"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult"], "count": 4}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["obscene:obscene", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["obscene:obscene", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat", "insult:insult"], "count": 0}, {"actual": [], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["threat:threat"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["obscene:obscene", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["obscene:obscene", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["obscene:obscene"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["obscene:obscene", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["obscene:obscene", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": [], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["threat:threat"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["obscene:obscene", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["obscene:obscene", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["obscene:obscene"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["obscene:obscene", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild"], "observed": ["toxic_mild:toxic_mild", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene"], "observed": ["toxic_mild:toxic_mild", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe"], "observed": ["toxic_mild:toxic_mild", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["obscene:obscene", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene"], "observed": ["toxic_mild:toxic_mild", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": [], "observed": ["toxic_mild:toxic_mild", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["threat:threat"], "observed": ["toxic_mild:toxic_mild", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["insult:insult"], "observed": ["toxic_mild:toxic_mild", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["obscene:obscene", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["obscene:obscene", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["obscene:obscene"], "observed": ["toxic_mild:toxic_mild", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe"], "count": 0}, {"actual": ["obscene:obscene", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe"], "count": 0}, {"actual": ["toxic_mild:toxic_mild"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe"], "count": 0}, {"actual": ["identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe"], "count": 0}, {"actual": ["obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe"], "count": 0}, {"actual": ["obscene:obscene", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe"], "count": 0}, {"actual": [], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe"], "count": 0}, {"actual": ["insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe"], "count": 0}, {"actual": ["threat:threat"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe"], "count": 0}, {"actual": ["insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe"], "count": 0}, {"actual": ["obscene:obscene", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe"], "count": 0}, {"actual": ["obscene:obscene", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe"], "count": 0}, {"actual": ["obscene:obscene"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "identity_hate:identity_hate"], "observed": ["obscene:obscene", "insult:insult"], "count": 0}, {"actual": ["obscene:obscene", "threat:threat", "insult:insult"], "observed": ["obscene:obscene", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult"], "observed": ["obscene:obscene", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat"], "observed": ["obscene:obscene", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild"], "observed": ["obscene:obscene", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "insult:insult"], "observed": ["obscene:obscene", "insult:insult"], "count": 0}, {"actual": ["identity_hate:identity_hate"], "observed": ["obscene:obscene", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "identity_hate:identity_hate"], "observed": ["obscene:obscene", "insult:insult"], "count": 0}, {"actual": ["obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["obscene:obscene", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "observed": ["obscene:obscene", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene"], "observed": ["obscene:obscene", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat"], "observed": ["obscene:obscene", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult"], "observed": ["obscene:obscene", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat", "insult:insult"], "observed": ["obscene:obscene", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult", "identity_hate:identity_hate"], "observed": ["obscene:obscene", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "insult:insult", "identity_hate:identity_hate"], "observed": ["obscene:obscene", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe"], "observed": ["obscene:obscene", "insult:insult"], "count": 0}, {"actual": ["obscene:obscene", "insult:insult"], "observed": ["obscene:obscene", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene"], "observed": ["obscene:obscene", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat", "identity_hate:identity_hate"], "observed": ["obscene:obscene", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult"], "observed": ["obscene:obscene", "insult:insult"], "count": 0}, {"actual": [], "observed": ["obscene:obscene", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat"], "observed": ["obscene:obscene", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "identity_hate:identity_hate"], "observed": ["obscene:obscene", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "identity_hate:identity_hate"], "observed": ["obscene:obscene", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["obscene:obscene", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult"], "observed": ["obscene:obscene", "insult:insult"], "count": 0}, {"actual": ["insult:insult", "identity_hate:identity_hate"], "observed": ["obscene:obscene", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult"], "observed": ["obscene:obscene", "insult:insult"], "count": 0}, {"actual": ["threat:threat"], "observed": ["obscene:obscene", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["obscene:obscene", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat"], "observed": ["obscene:obscene", "insult:insult"], "count": 0}, {"actual": ["insult:insult"], "observed": ["obscene:obscene", "insult:insult"], "count": 0}, {"actual": ["obscene:obscene", "threat:threat"], "observed": ["obscene:obscene", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat", "insult:insult"], "observed": ["obscene:obscene", "insult:insult"], "count": 0}, {"actual": ["obscene:obscene", "identity_hate:identity_hate"], "observed": ["obscene:obscene", "insult:insult"], "count": 0}, {"actual": ["obscene:obscene"], "observed": ["obscene:obscene", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "observed": ["obscene:obscene", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene"], "count": 0}, {"actual": ["obscene:obscene", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene"], "count": 0}, {"actual": ["toxic_mild:toxic_mild"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene"], "count": 0}, {"actual": ["identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene"], "count": 0}, {"actual": ["obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene"], "count": 0}, {"actual": ["obscene:obscene", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene"], "count": 0}, {"actual": [], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene"], "count": 0}, {"actual": ["insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene"], "count": 0}, {"actual": ["threat:threat"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene"], "count": 0}, {"actual": ["insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene"], "count": 0}, {"actual": ["obscene:obscene", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene"], "count": 0}, {"actual": ["obscene:obscene", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene"], "count": 0}, {"actual": ["obscene:obscene"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "threat:threat", "identity_hate:identity_hate"], "count": 0}, {"actual": ["obscene:obscene", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "threat:threat", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "threat:threat", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "threat:threat", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild"], "observed": ["toxic_mild:toxic_mild", "threat:threat", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "threat:threat", "identity_hate:identity_hate"], "count": 0}, {"actual": ["identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "threat:threat", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "threat:threat", "identity_hate:identity_hate"], "count": 0}, {"actual": ["obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "threat:threat", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "threat:threat", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene"], "observed": ["toxic_mild:toxic_mild", "threat:threat", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "threat:threat", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "threat:threat", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "threat:threat", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "threat:threat", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "threat:threat", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe"], "observed": ["toxic_mild:toxic_mild", "threat:threat", "identity_hate:identity_hate"], "count": 0}, {"actual": ["obscene:obscene", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "threat:threat", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene"], "observed": ["toxic_mild:toxic_mild", "threat:threat", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "threat:threat", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "threat:threat", "identity_hate:identity_hate"], "count": 0}, {"actual": [], "observed": ["toxic_mild:toxic_mild", "threat:threat", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "threat:threat", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "threat:threat", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "threat:threat", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "threat:threat", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "threat:threat", "identity_hate:identity_hate"], "count": 0}, {"actual": ["insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "threat:threat", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "threat:threat", "identity_hate:identity_hate"], "count": 0}, {"actual": ["threat:threat"], "observed": ["toxic_mild:toxic_mild", "threat:threat", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "threat:threat", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "threat:threat", "identity_hate:identity_hate"], "count": 0}, {"actual": ["insult:insult"], "observed": ["toxic_mild:toxic_mild", "threat:threat", "identity_hate:identity_hate"], "count": 0}, {"actual": ["obscene:obscene", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "threat:threat", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "threat:threat", "identity_hate:identity_hate"], "count": 0}, {"actual": ["obscene:obscene", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "threat:threat", "identity_hate:identity_hate"], "count": 0}, {"actual": ["obscene:obscene"], "observed": ["toxic_mild:toxic_mild", "threat:threat", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "threat:threat", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["obscene:obscene", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["obscene:obscene", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": [], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["threat:threat"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["obscene:obscene", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["obscene:obscene", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["obscene:obscene"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "identity_hate:identity_hate"], "observed": [], "count": 12}, {"actual": ["obscene:obscene", "threat:threat", "insult:insult"], "observed": [], "count": 1}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult"], "observed": [], "count": 1}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat"], "observed": [], "count": 1}, {"actual": ["toxic_mild:toxic_mild"], "observed": [], "count": 1552}, {"actual": ["toxic_mild:toxic_mild", "insult:insult"], "observed": [], "count": 302}, {"actual": ["identity_hate:identity_hate"], "observed": [], "count": 14}, {"actual": ["toxic_mild:toxic_mild", "identity_hate:identity_hate"], "observed": [], "count": 38}, {"actual": ["obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": [], "count": 7}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "observed": [], "count": 1}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene"], "observed": [], "count": 319}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat"], "observed": [], "count": 1}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult"], "observed": [], "count": 486}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat", "insult:insult"], "observed": [], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult", "identity_hate:identity_hate"], "observed": [], "count": 1}, {"actual": ["toxic_mild:toxic_mild", "insult:insult", "identity_hate:identity_hate"], "observed": [], "count": 29}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe"], "observed": [], "count": 10}, {"actual": ["obscene:obscene", "insult:insult"], "observed": [], "count": 44}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene"], "observed": [], "count": 11}, {"actual": ["toxic_mild:toxic_mild", "threat:threat", "identity_hate:identity_hate"], "observed": [], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult"], "observed": [], "count": 3}, {"actual": [], "observed": [], "count": 42991}, {"actual": ["toxic_mild:toxic_mild", "threat:threat"], "observed": [], "count": 31}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "identity_hate:identity_hate"], "observed": [], "count": 1}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "identity_hate:identity_hate"], "observed": [], "count": 1}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": [], "count": 61}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult"], "observed": [], "count": 13}, {"actual": ["insult:insult", "identity_hate:identity_hate"], "observed": [], "count": 9}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult"], "observed": [], "count": 46}, {"actual": ["threat:threat"], "observed": [], "count": 5}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": [], "count": 10}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat"], "observed": [], "count": 2}, {"actual": ["insult:insult"], "observed": [], "count": 97}, {"actual": ["obscene:obscene", "threat:threat"], "observed": [], "count": 1}, {"actual": ["toxic_mild:toxic_mild", "threat:threat", "insult:insult"], "observed": [], "count": 3}, {"actual": ["obscene:obscene", "identity_hate:identity_hate"], "observed": [], "count": 1}, {"actual": ["obscene:obscene"], "observed": [], "count": 93}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "observed": [], "count": 5}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "threat:threat"], "count": 0}, {"actual": ["obscene:obscene", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild"], "observed": ["toxic_mild:toxic_mild", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "threat:threat"], "count": 0}, {"actual": ["identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "threat:threat"], "count": 0}, {"actual": ["obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene"], "observed": ["toxic_mild:toxic_mild", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe"], "observed": ["toxic_mild:toxic_mild", "threat:threat"], "count": 0}, {"actual": ["obscene:obscene", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene"], "observed": ["toxic_mild:toxic_mild", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "threat:threat"], "count": 0}, {"actual": [], "observed": ["toxic_mild:toxic_mild", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "threat:threat"], "count": 0}, {"actual": ["insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "threat:threat"], "count": 0}, {"actual": ["threat:threat"], "observed": ["toxic_mild:toxic_mild", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "threat:threat"], "count": 0}, {"actual": ["insult:insult"], "observed": ["toxic_mild:toxic_mild", "threat:threat"], "count": 0}, {"actual": ["obscene:obscene", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "threat:threat"], "count": 0}, {"actual": ["obscene:obscene", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "threat:threat"], "count": 0}, {"actual": ["obscene:obscene"], "observed": ["toxic_mild:toxic_mild", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "identity_hate:identity_hate"], "count": 0}, {"actual": ["obscene:obscene", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "identity_hate:identity_hate"], "count": 0}, {"actual": ["identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "identity_hate:identity_hate"], "count": 0}, {"actual": ["obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "identity_hate:identity_hate"], "count": 0}, {"actual": ["obscene:obscene", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "identity_hate:identity_hate"], "count": 0}, {"actual": [], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "identity_hate:identity_hate"], "count": 0}, {"actual": ["insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "identity_hate:identity_hate"], "count": 0}, {"actual": ["threat:threat"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "identity_hate:identity_hate"], "count": 0}, {"actual": ["insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "identity_hate:identity_hate"], "count": 0}, {"actual": ["obscene:obscene", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "identity_hate:identity_hate"], "count": 0}, {"actual": ["obscene:obscene", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "identity_hate:identity_hate"], "count": 0}, {"actual": ["obscene:obscene"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["obscene:obscene", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["obscene:obscene", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": [], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["threat:threat"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["obscene:obscene", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["obscene:obscene", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["obscene:obscene"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["obscene:obscene", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["obscene:obscene", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": [], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 1}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["threat:threat"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 3}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["insult:insult"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["obscene:obscene", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["obscene:obscene", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["obscene:obscene"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["obscene:obscene", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["obscene:obscene", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": [], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["threat:threat"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["insult:insult"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["obscene:obscene", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["obscene:obscene", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["obscene:obscene"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "identity_hate:identity_hate"], "observed": ["insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["obscene:obscene", "threat:threat", "insult:insult"], "observed": ["insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult"], "observed": ["insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat"], "observed": ["insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild"], "observed": ["insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "insult:insult"], "observed": ["insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["identity_hate:identity_hate"], "observed": ["insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "identity_hate:identity_hate"], "observed": ["insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "observed": ["insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene"], "observed": ["insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat"], "observed": ["insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult"], "observed": ["insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat", "insult:insult"], "observed": ["insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult", "identity_hate:identity_hate"], "observed": ["insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "insult:insult", "identity_hate:identity_hate"], "observed": ["insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe"], "observed": ["insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["obscene:obscene", "insult:insult"], "observed": ["insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene"], "observed": ["insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat", "identity_hate:identity_hate"], "observed": ["insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult"], "observed": ["insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": [], "observed": ["insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat"], "observed": ["insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "identity_hate:identity_hate"], "observed": ["insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "identity_hate:identity_hate"], "observed": ["insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult"], "observed": ["insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["insult:insult", "identity_hate:identity_hate"], "observed": ["insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult"], "observed": ["insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["threat:threat"], "observed": ["insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat"], "observed": ["insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["insult:insult"], "observed": ["insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["obscene:obscene", "threat:threat"], "observed": ["insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat", "insult:insult"], "observed": ["insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["obscene:obscene", "identity_hate:identity_hate"], "observed": ["insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["obscene:obscene"], "observed": ["insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "observed": ["insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult"], "count": 0}, {"actual": ["obscene:obscene", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult"], "count": 0}, {"actual": ["identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult"], "count": 0}, {"actual": ["obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult"], "count": 2}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult"], "count": 6}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult"], "count": 0}, {"actual": ["obscene:obscene", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult"], "count": 1}, {"actual": ["toxic_mild:toxic_mild", "threat:threat", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult"], "count": 1}, {"actual": [], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult"], "count": 2}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult"], "count": 0}, {"actual": ["insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult"], "count": 12}, {"actual": ["threat:threat"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult"], "count": 2}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult"], "count": 0}, {"actual": ["insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult"], "count": 0}, {"actual": ["obscene:obscene", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult"], "count": 0}, {"actual": ["obscene:obscene", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult"], "count": 0}, {"actual": ["obscene:obscene"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult"], "count": 1}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "identity_hate:identity_hate"], "observed": ["threat:threat"], "count": 0}, {"actual": ["obscene:obscene", "threat:threat", "insult:insult"], "observed": ["threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult"], "observed": ["threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat"], "observed": ["threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild"], "observed": ["threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "insult:insult"], "observed": ["threat:threat"], "count": 0}, {"actual": ["identity_hate:identity_hate"], "observed": ["threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "identity_hate:identity_hate"], "observed": ["threat:threat"], "count": 0}, {"actual": ["obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "observed": ["threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene"], "observed": ["threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat"], "observed": ["threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult"], "observed": ["threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat", "insult:insult"], "observed": ["threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult", "identity_hate:identity_hate"], "observed": ["threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "insult:insult", "identity_hate:identity_hate"], "observed": ["threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe"], "observed": ["threat:threat"], "count": 0}, {"actual": ["obscene:obscene", "insult:insult"], "observed": ["threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene"], "observed": ["threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat", "identity_hate:identity_hate"], "observed": ["threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult"], "observed": ["threat:threat"], "count": 0}, {"actual": [], "observed": ["threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat"], "observed": ["threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "identity_hate:identity_hate"], "observed": ["threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "identity_hate:identity_hate"], "observed": ["threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult"], "observed": ["threat:threat"], "count": 0}, {"actual": ["insult:insult", "identity_hate:identity_hate"], "observed": ["threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult"], "observed": ["threat:threat"], "count": 0}, {"actual": ["threat:threat"], "observed": ["threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat"], "observed": ["threat:threat"], "count": 0}, {"actual": ["insult:insult"], "observed": ["threat:threat"], "count": 0}, {"actual": ["obscene:obscene", "threat:threat"], "observed": ["threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat", "insult:insult"], "observed": ["threat:threat"], "count": 0}, {"actual": ["obscene:obscene", "identity_hate:identity_hate"], "observed": ["threat:threat"], "count": 0}, {"actual": ["obscene:obscene"], "observed": ["threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "observed": ["threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["obscene:obscene", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["obscene:obscene", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": [], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 1}, {"actual": ["threat:threat"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 1}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["obscene:obscene", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["obscene:obscene", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["obscene:obscene"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat"], "count": 0}, {"actual": ["obscene:obscene", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat"], "count": 0}, {"actual": ["identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat"], "count": 0}, {"actual": ["obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat"], "count": 0}, {"actual": ["obscene:obscene", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat"], "count": 0}, {"actual": [], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat"], "count": 0}, {"actual": ["insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat"], "count": 0}, {"actual": ["threat:threat"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat"], "count": 0}, {"actual": ["insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat"], "count": 0}, {"actual": ["obscene:obscene", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat"], "count": 0}, {"actual": ["obscene:obscene", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat"], "count": 0}, {"actual": ["obscene:obscene"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "identity_hate:identity_hate"], "observed": ["insult:insult"], "count": 0}, {"actual": ["obscene:obscene", "threat:threat", "insult:insult"], "observed": ["insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult"], "observed": ["insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat"], "observed": ["insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild"], "observed": ["insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "insult:insult"], "observed": ["insult:insult"], "count": 0}, {"actual": ["identity_hate:identity_hate"], "observed": ["insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "identity_hate:identity_hate"], "observed": ["insult:insult"], "count": 0}, {"actual": ["obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "observed": ["insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene"], "observed": ["insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat"], "observed": ["insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult"], "observed": ["insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat", "insult:insult"], "observed": ["insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult", "identity_hate:identity_hate"], "observed": ["insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "insult:insult", "identity_hate:identity_hate"], "observed": ["insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe"], "observed": ["insult:insult"], "count": 0}, {"actual": ["obscene:obscene", "insult:insult"], "observed": ["insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene"], "observed": ["insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat", "identity_hate:identity_hate"], "observed": ["insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult"], "observed": ["insult:insult"], "count": 0}, {"actual": [], "observed": ["insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat"], "observed": ["insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "identity_hate:identity_hate"], "observed": ["insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "identity_hate:identity_hate"], "observed": ["insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult"], "observed": ["insult:insult"], "count": 0}, {"actual": ["insult:insult", "identity_hate:identity_hate"], "observed": ["insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult"], "observed": ["insult:insult"], "count": 0}, {"actual": ["threat:threat"], "observed": ["insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat"], "observed": ["insult:insult"], "count": 0}, {"actual": ["insult:insult"], "observed": ["insult:insult"], "count": 0}, {"actual": ["obscene:obscene", "threat:threat"], "observed": ["insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat", "insult:insult"], "observed": ["insult:insult"], "count": 0}, {"actual": ["obscene:obscene", "identity_hate:identity_hate"], "observed": ["insult:insult"], "count": 0}, {"actual": ["obscene:obscene"], "observed": ["insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "observed": ["insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "identity_hate:identity_hate"], "observed": ["obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["obscene:obscene", "threat:threat", "insult:insult"], "observed": ["obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult"], "observed": ["obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat"], "observed": ["obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild"], "observed": ["obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "insult:insult"], "observed": ["obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["identity_hate:identity_hate"], "observed": ["obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "identity_hate:identity_hate"], "observed": ["obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "observed": ["obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene"], "observed": ["obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat"], "observed": ["obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult"], "observed": ["obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat", "insult:insult"], "observed": ["obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult", "identity_hate:identity_hate"], "observed": ["obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "insult:insult", "identity_hate:identity_hate"], "observed": ["obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe"], "observed": ["obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["obscene:obscene", "insult:insult"], "observed": ["obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene"], "observed": ["obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat", "identity_hate:identity_hate"], "observed": ["obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult"], "observed": ["obscene:obscene", "threat:threat"], "count": 0}, {"actual": [], "observed": ["obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat"], "observed": ["obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "identity_hate:identity_hate"], "observed": ["obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "identity_hate:identity_hate"], "observed": ["obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult"], "observed": ["obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["insult:insult", "identity_hate:identity_hate"], "observed": ["obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult"], "observed": ["obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["threat:threat"], "observed": ["obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat"], "observed": ["obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["insult:insult"], "observed": ["obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["obscene:obscene", "threat:threat"], "observed": ["obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat", "insult:insult"], "observed": ["obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["obscene:obscene", "identity_hate:identity_hate"], "observed": ["obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["obscene:obscene"], "observed": ["obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "observed": ["obscene:obscene", "threat:threat"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["obscene:obscene", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild"], "observed": ["toxic_mild:toxic_mild", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene"], "observed": ["toxic_mild:toxic_mild", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe"], "observed": ["toxic_mild:toxic_mild", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["obscene:obscene", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene"], "observed": ["toxic_mild:toxic_mild", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "threat:threat", "insult:insult"], "count": 0}, {"actual": [], "observed": ["toxic_mild:toxic_mild", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["threat:threat"], "observed": ["toxic_mild:toxic_mild", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["insult:insult"], "observed": ["toxic_mild:toxic_mild", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["obscene:obscene", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["obscene:obscene", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["obscene:obscene"], "observed": ["toxic_mild:toxic_mild", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "threat:threat", "insult:insult"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "identity_hate:identity_hate"], "observed": ["obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["obscene:obscene", "threat:threat", "insult:insult"], "observed": ["obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult"], "observed": ["obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat"], "observed": ["obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild"], "observed": ["obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "insult:insult"], "observed": ["obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["identity_hate:identity_hate"], "observed": ["obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "identity_hate:identity_hate"], "observed": ["obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "observed": ["obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene"], "observed": ["obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat"], "observed": ["obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult"], "observed": ["obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat", "insult:insult"], "observed": ["obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult", "identity_hate:identity_hate"], "observed": ["obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "insult:insult", "identity_hate:identity_hate"], "observed": ["obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe"], "observed": ["obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["obscene:obscene", "insult:insult"], "observed": ["obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene"], "observed": ["obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat", "identity_hate:identity_hate"], "observed": ["obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult"], "observed": ["obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": [], "observed": ["obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat"], "observed": ["obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "identity_hate:identity_hate"], "observed": ["obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "identity_hate:identity_hate"], "observed": ["obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult"], "observed": ["obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["insult:insult", "identity_hate:identity_hate"], "observed": ["obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult"], "observed": ["obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["threat:threat"], "observed": ["obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat"], "observed": ["obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["insult:insult"], "observed": ["obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["obscene:obscene", "threat:threat"], "observed": ["obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat", "insult:insult"], "observed": ["obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["obscene:obscene", "identity_hate:identity_hate"], "observed": ["obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["obscene:obscene"], "observed": ["obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "observed": ["obscene:obscene", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "identity_hate:identity_hate"], "observed": ["obscene:obscene"], "count": 0}, {"actual": ["obscene:obscene", "threat:threat", "insult:insult"], "observed": ["obscene:obscene"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult"], "observed": ["obscene:obscene"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat"], "observed": ["obscene:obscene"], "count": 0}, {"actual": ["toxic_mild:toxic_mild"], "observed": ["obscene:obscene"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "insult:insult"], "observed": ["obscene:obscene"], "count": 0}, {"actual": ["identity_hate:identity_hate"], "observed": ["obscene:obscene"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "identity_hate:identity_hate"], "observed": ["obscene:obscene"], "count": 0}, {"actual": ["obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["obscene:obscene"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "observed": ["obscene:obscene"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene"], "observed": ["obscene:obscene"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat"], "observed": ["obscene:obscene"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult"], "observed": ["obscene:obscene"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat", "insult:insult"], "observed": ["obscene:obscene"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult", "identity_hate:identity_hate"], "observed": ["obscene:obscene"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "insult:insult", "identity_hate:identity_hate"], "observed": ["obscene:obscene"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe"], "observed": ["obscene:obscene"], "count": 0}, {"actual": ["obscene:obscene", "insult:insult"], "observed": ["obscene:obscene"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene"], "observed": ["obscene:obscene"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat", "identity_hate:identity_hate"], "observed": ["obscene:obscene"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult"], "observed": ["obscene:obscene"], "count": 0}, {"actual": [], "observed": ["obscene:obscene"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat"], "observed": ["obscene:obscene"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "identity_hate:identity_hate"], "observed": ["obscene:obscene"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "identity_hate:identity_hate"], "observed": ["obscene:obscene"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["obscene:obscene"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult"], "observed": ["obscene:obscene"], "count": 0}, {"actual": ["insult:insult", "identity_hate:identity_hate"], "observed": ["obscene:obscene"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult"], "observed": ["obscene:obscene"], "count": 0}, {"actual": ["threat:threat"], "observed": ["obscene:obscene"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["obscene:obscene"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat"], "observed": ["obscene:obscene"], "count": 0}, {"actual": ["insult:insult"], "observed": ["obscene:obscene"], "count": 0}, {"actual": ["obscene:obscene", "threat:threat"], "observed": ["obscene:obscene"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat", "insult:insult"], "observed": ["obscene:obscene"], "count": 0}, {"actual": ["obscene:obscene", "identity_hate:identity_hate"], "observed": ["obscene:obscene"], "count": 0}, {"actual": ["obscene:obscene"], "observed": ["obscene:obscene"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "observed": ["obscene:obscene"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["obscene:obscene", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["obscene:obscene", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": [], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["threat:threat"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "obscene:obscene", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "toxic_severe:toxic_severe", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["insult:insult"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["obscene:obscene", "threat:threat"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "threat:threat", "insult:insult"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["obscene:obscene", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["obscene:obscene"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "count": 0}, {"actual": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "observed": ["toxic_mild:toxic_mild", "obscene:obscene", "threat:threat", "insult:insult", "identity_hate:identity_hate"], "count": 0}]}}
\ No newline at end of file
diff --git a/public/data/fruit.json b/public/data/fruit.json
new file mode 100644
index 0000000..d713c10
--- /dev/null
+++ b/public/data/fruit.json
@@ -0,0 +1,3337 @@
+{
+ "data": {
+ "values": [
+ {
+ "actual": [
+ "fruit:citrus:lemon",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lemon",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "count": 500
+ },
+ {
+ "actual": [
+ "fruit:citrus:lemon",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lemon",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "count": 48
+ },
+ {
+ "actual": [
+ "fruit:citrus:lemon",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lemon",
+ "taste:sour",
+ "ripeness:ripe"
+ ],
+ "count": 30
+ },
+ {
+ "actual": [
+ "fruit:citrus:lemon",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lemon",
+ "taste:tangy",
+ "ripeness:ripe"
+ ],
+ "count": 39
+ },
+ {
+ "actual": [
+ "fruit:citrus:lemon",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lime",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "count": 8
+ },
+ {
+ "actual": [
+ "fruit:citrus:lemon",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lime",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "count": 19
+ },
+ {
+ "actual": [
+ "fruit:citrus:lemon",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lime",
+ "taste:sour",
+ "ripeness:ripe"
+ ],
+ "count": 14
+ },
+ {
+ "actual": [
+ "fruit:citrus:lemon",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lemon",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "count": 102
+ },
+ {
+ "actual": [
+ "fruit:citrus:lemon",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lemon",
+ "taste:sour",
+ "ripeness:ripe"
+ ],
+ "count": 59
+ },
+ {
+ "actual": [
+ "fruit:citrus:lemon",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lemon",
+ "taste:sour",
+ "ripeness:not-ripe"
+ ],
+ "count": 35
+ },
+ {
+ "actual": [
+ "fruit:citrus:lemon",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lemon",
+ "taste:tangy",
+ "ripeness:ripe"
+ ],
+ "count": 23
+ },
+ {
+ "actual": [
+ "fruit:citrus:lemon",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lemon",
+ "ripeness:not-ripe"
+ ],
+ "count": 16
+ },
+ {
+ "actual": [
+ "fruit:citrus:lemon",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lime",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "count": 10
+ },
+ {
+ "actual": [
+ "fruit:citrus:lemon",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lime",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "count": 27
+ },
+ {
+ "actual": [
+ "fruit:citrus:lemon",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lime",
+ "taste:sour",
+ "ripeness:ripe"
+ ],
+ "count": 16
+ },
+ {
+ "actual": [
+ "fruit:citrus:lemon",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lime",
+ "taste:tangy",
+ "ripeness:not-ripe"
+ ],
+ "count": 16
+ },
+ {
+ "actual": [
+ "fruit:citrus:lemon",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:orange",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "count": 21
+ },
+ {
+ "actual": [
+ "fruit:citrus:lemon",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:orange",
+ "taste:sour",
+ "ripeness:ripe"
+ ],
+ "count": 0
+ },
+ {
+ "actual": [
+ "fruit:citrus:lemon",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:pome:apple",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "count": 15
+ },
+ {
+ "actual": [
+ "fruit:citrus:lemon",
+ "taste:sour",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lemon",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "count": 32
+ },
+ {
+ "actual": [
+ "fruit:citrus:lemon",
+ "taste:sour",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lemon",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "count": 69
+ },
+ {
+ "actual": [
+ "fruit:citrus:lemon",
+ "taste:sour",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lemon",
+ "taste:sour",
+ "ripeness:ripe"
+ ],
+ "count": 101
+ },
+ {
+ "actual": [
+ "fruit:citrus:lemon",
+ "taste:sour",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lemon",
+ "taste:sour",
+ "ripeness:not-ripe"
+ ],
+ "count": 46
+ },
+ {
+ "actual": [
+ "fruit:citrus:lemon",
+ "taste:sour",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lemon",
+ "taste:tangy",
+ "ripeness:ripe"
+ ],
+ "count": 30
+ },
+ {
+ "actual": [
+ "fruit:citrus:lemon",
+ "taste:sour",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lemon",
+ "ripeness:not-ripe"
+ ],
+ "count": 29
+ },
+ {
+ "actual": [
+ "fruit:citrus:lemon",
+ "taste:sour",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lime",
+ "taste:sour",
+ "ripeness:not-ripe"
+ ],
+ "count": 16
+ },
+ {
+ "actual": [
+ "fruit:citrus:lemon",
+ "taste:sour",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lime",
+ "taste:tangy",
+ "ripeness:not-ripe"
+ ],
+ "count": 22
+ },
+ {
+ "actual": [
+ "fruit:citrus:lemon",
+ "taste:sour",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:pome:apple",
+ "taste:sour",
+ "ripeness:ripe"
+ ],
+ "count": 8
+ },
+ {
+ "actual": [
+ "fruit:citrus:lemon",
+ "taste:sour",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lemon",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "count": 1
+ },
+ {
+ "actual": [
+ "fruit:citrus:lemon",
+ "taste:sour",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lemon",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "count": 33
+ },
+ {
+ "actual": [
+ "fruit:citrus:lemon",
+ "taste:sour",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lemon",
+ "taste:sour",
+ "ripeness:ripe"
+ ],
+ "count": 50
+ },
+ {
+ "actual": [
+ "fruit:citrus:lemon",
+ "taste:sour",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lemon",
+ "taste:sour",
+ "ripeness:not-ripe"
+ ],
+ "count": 130
+ },
+ {
+ "actual": [
+ "fruit:citrus:lemon",
+ "taste:sour",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lemon",
+ "taste:tangy",
+ "ripeness:ripe"
+ ],
+ "count": 47
+ },
+ {
+ "actual": [
+ "fruit:citrus:lemon",
+ "taste:sour",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lemon",
+ "ripeness:not-ripe"
+ ],
+ "count": 37
+ },
+ {
+ "actual": [
+ "fruit:citrus:lemon",
+ "taste:sour",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lime",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "count": 39
+ },
+ {
+ "actual": [
+ "fruit:citrus:lemon",
+ "taste:sour",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lime",
+ "taste:sour",
+ "ripeness:ripe"
+ ],
+ "count": 34
+ },
+ {
+ "actual": [
+ "fruit:citrus:lemon",
+ "taste:sour",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lime",
+ "taste:sour",
+ "ripeness:not-ripe"
+ ],
+ "count": 0
+ },
+ {
+ "actual": [
+ "fruit:citrus:lemon",
+ "taste:sour",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lime",
+ "taste:tangy",
+ "ripeness:ripe"
+ ],
+ "count": 0
+ },
+ {
+ "actual": [
+ "fruit:citrus:lemon",
+ "taste:sour",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:orange",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "count": 0
+ },
+ {
+ "actual": [
+ "fruit:citrus:lemon",
+ "taste:sour",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:orange",
+ "taste:sour",
+ "ripeness:ripe"
+ ],
+ "count": 0
+ },
+ {
+ "actual": [
+ "fruit:citrus:lemon",
+ "taste:sour",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:orange",
+ "taste:tangy",
+ "ripeness:ripe"
+ ],
+ "count": 0
+ },
+ {
+ "actual": [
+ "fruit:citrus:lemon",
+ "taste:sour",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:orange",
+ "taste:tangy",
+ "ripeness:not-ripe"
+ ],
+ "count": 2
+ },
+ {
+ "actual": [
+ "fruit:citrus:lemon",
+ "taste:sour",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:pome:apple",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "count": 16
+ },
+ {
+ "actual": [
+ "fruit:citrus:lemon",
+ "taste:tangy",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lemon",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "count": 23
+ },
+ {
+ "actual": [
+ "fruit:citrus:lemon",
+ "taste:tangy",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lemon",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "count": 34
+ },
+ {
+ "actual": [
+ "fruit:citrus:lemon",
+ "taste:tangy",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lemon",
+ "taste:sour",
+ "ripeness:not-ripe"
+ ],
+ "count": 53
+ },
+ {
+ "actual": [
+ "fruit:citrus:lemon",
+ "taste:tangy",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lemon",
+ "taste:tangy",
+ "ripeness:ripe"
+ ],
+ "count": 91
+ },
+ {
+ "actual": [
+ "fruit:citrus:lemon",
+ "taste:tangy",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lime",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "count": 36
+ },
+ {
+ "actual": [
+ "fruit:citrus:lemon",
+ "taste:tangy",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lime",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "count": 16
+ },
+ {
+ "actual": [
+ "fruit:citrus:lemon",
+ "taste:tangy",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lime",
+ "taste:sour",
+ "ripeness:ripe"
+ ],
+ "count": 43
+ },
+ {
+ "actual": [
+ "fruit:citrus:lemon",
+ "taste:tangy",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lime",
+ "taste:sour",
+ "ripeness:not-ripe"
+ ],
+ "count": 22
+ },
+ {
+ "actual": [
+ "fruit:citrus:lemon",
+ "taste:tangy",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lime",
+ "taste:tangy",
+ "ripeness:ripe"
+ ],
+ "count": 2
+ },
+ {
+ "actual": [
+ "fruit:citrus:lemon",
+ "taste:tangy",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:orange",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "count": 15
+ },
+ {
+ "actual": [
+ "fruit:citrus:lemon",
+ "taste:tangy",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:orange",
+ "taste:tangy",
+ "ripeness:ripe"
+ ],
+ "count": 6
+ },
+ {
+ "actual": [
+ "fruit:citrus:lemon",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lemon",
+ "taste:sour",
+ "ripeness:ripe"
+ ],
+ "count": 22
+ },
+ {
+ "actual": [
+ "fruit:citrus:lemon",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lemon",
+ "ripeness:not-ripe"
+ ],
+ "count": 99
+ },
+ {
+ "actual": [
+ "fruit:citrus:lemon",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lime",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "count": 39
+ },
+ {
+ "actual": [
+ "fruit:citrus:lemon",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lime",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "count": 14
+ },
+ {
+ "actual": [
+ "fruit:citrus:lemon",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lime",
+ "taste:sour",
+ "ripeness:not-ripe"
+ ],
+ "count": 4
+ },
+ {
+ "actual": [
+ "fruit:citrus:lemon",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lime",
+ "taste:tangy",
+ "ripeness:ripe"
+ ],
+ "count": 5
+ },
+ {
+ "actual": [
+ "fruit:citrus:lemon",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:orange",
+ "taste:tangy",
+ "ripeness:ripe"
+ ],
+ "count": 14
+ },
+ {
+ "actual": [
+ "fruit:citrus:lemon",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:orange",
+ "taste:tangy",
+ "ripeness:not-ripe"
+ ],
+ "count": 14
+ },
+ {
+ "actual": [
+ "fruit:citrus:lemon",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:pome:apple",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "count": 13
+ },
+ {
+ "actual": [
+ "fruit:citrus:lemon",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:pome:apple",
+ "taste:sour",
+ "ripeness:ripe"
+ ],
+ "count": 18
+ },
+ {
+ "actual": [
+ "fruit:citrus:lime",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lemon",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "count": 4
+ },
+ {
+ "actual": [
+ "fruit:citrus:lime",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lemon",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "count": 13
+ },
+ {
+ "actual": [
+ "fruit:citrus:lime",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lemon",
+ "taste:sour",
+ "ripeness:ripe"
+ ],
+ "count": 48
+ },
+ {
+ "actual": [
+ "fruit:citrus:lime",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lemon",
+ "taste:sour",
+ "ripeness:not-ripe"
+ ],
+ "count": 1
+ },
+ {
+ "actual": [
+ "fruit:citrus:lime",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lemon",
+ "taste:tangy",
+ "ripeness:ripe"
+ ],
+ "count": 27
+ },
+ {
+ "actual": [
+ "fruit:citrus:lime",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lemon",
+ "ripeness:not-ripe"
+ ],
+ "count": 63
+ },
+ {
+ "actual": [
+ "fruit:citrus:lime",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lime",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "count": 91
+ },
+ {
+ "actual": [
+ "fruit:citrus:lime",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lime",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "count": 58
+ },
+ {
+ "actual": [
+ "fruit:citrus:lime",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lime",
+ "taste:sour",
+ "ripeness:ripe"
+ ],
+ "count": 33
+ },
+ {
+ "actual": [
+ "fruit:citrus:lime",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lime",
+ "taste:sour",
+ "ripeness:not-ripe"
+ ],
+ "count": 16
+ },
+ {
+ "actual": [
+ "fruit:citrus:lime",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lime",
+ "taste:tangy",
+ "ripeness:not-ripe"
+ ],
+ "count": 18
+ },
+ {
+ "actual": [
+ "fruit:citrus:lime",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:orange",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "count": 4
+ },
+ {
+ "actual": [
+ "fruit:citrus:lime",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:orange",
+ "taste:sour",
+ "ripeness:ripe"
+ ],
+ "count": 17
+ },
+ {
+ "actual": [
+ "fruit:citrus:lime",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:orange",
+ "taste:tangy",
+ "ripeness:not-ripe"
+ ],
+ "count": 0
+ },
+ {
+ "actual": [
+ "fruit:citrus:lime",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:pome:apple",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "count": 0
+ },
+ {
+ "actual": [
+ "fruit:citrus:lime",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:pome:apple",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "count": 18
+ },
+ {
+ "actual": [
+ "fruit:citrus:lime",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lemon",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "count": 28
+ },
+ {
+ "actual": [
+ "fruit:citrus:lime",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lemon",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "count": 5
+ },
+ {
+ "actual": [
+ "fruit:citrus:lime",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lemon",
+ "taste:sour",
+ "ripeness:ripe"
+ ],
+ "count": 22
+ },
+ {
+ "actual": [
+ "fruit:citrus:lime",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lemon",
+ "taste:sour",
+ "ripeness:not-ripe"
+ ],
+ "count": 29
+ },
+ {
+ "actual": [
+ "fruit:citrus:lime",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lemon",
+ "taste:tangy",
+ "ripeness:ripe"
+ ],
+ "count": 0
+ },
+ {
+ "actual": [
+ "fruit:citrus:lime",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lemon",
+ "ripeness:not-ripe"
+ ],
+ "count": 20
+ },
+ {
+ "actual": [
+ "fruit:citrus:lime",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lime",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "count": 70
+ },
+ {
+ "actual": [
+ "fruit:citrus:lime",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lime",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "count": 82
+ },
+ {
+ "actual": [
+ "fruit:citrus:lime",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lime",
+ "taste:sour",
+ "ripeness:ripe"
+ ],
+ "count": 68
+ },
+ {
+ "actual": [
+ "fruit:citrus:lime",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lime",
+ "taste:tangy",
+ "ripeness:ripe"
+ ],
+ "count": 12
+ },
+ {
+ "actual": [
+ "fruit:citrus:lime",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lime",
+ "taste:tangy",
+ "ripeness:not-ripe"
+ ],
+ "count": 25
+ },
+ {
+ "actual": [
+ "fruit:citrus:lime",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:orange",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "count": 9
+ },
+ {
+ "actual": [
+ "fruit:citrus:lime",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:orange",
+ "taste:sour",
+ "ripeness:ripe"
+ ],
+ "count": 32
+ },
+ {
+ "actual": [
+ "fruit:citrus:lime",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:orange",
+ "taste:tangy",
+ "ripeness:ripe"
+ ],
+ "count": 8
+ },
+ {
+ "actual": [
+ "fruit:citrus:lime",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:orange",
+ "taste:tangy",
+ "ripeness:not-ripe"
+ ],
+ "count": 16
+ },
+ {
+ "actual": [
+ "fruit:citrus:lime",
+ "taste:sour",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lemon",
+ "taste:tangy",
+ "ripeness:ripe"
+ ],
+ "count": 19
+ },
+ {
+ "actual": [
+ "fruit:citrus:lime",
+ "taste:sour",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lime",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "count": 47
+ },
+ {
+ "actual": [
+ "fruit:citrus:lime",
+ "taste:sour",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lime",
+ "taste:sour",
+ "ripeness:ripe"
+ ],
+ "count": 110
+ },
+ {
+ "actual": [
+ "fruit:citrus:lime",
+ "taste:sour",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lime",
+ "taste:tangy",
+ "ripeness:ripe"
+ ],
+ "count": 49
+ },
+ {
+ "actual": [
+ "fruit:citrus:lime",
+ "taste:sour",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:orange",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "count": 15
+ },
+ {
+ "actual": [
+ "fruit:citrus:lime",
+ "taste:sour",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:orange",
+ "taste:sour",
+ "ripeness:ripe"
+ ],
+ "count": 4
+ },
+ {
+ "actual": [
+ "fruit:citrus:lime",
+ "taste:sour",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:orange",
+ "taste:sour",
+ "ripeness:not-ripe"
+ ],
+ "count": 38
+ },
+ {
+ "actual": [
+ "fruit:citrus:lime",
+ "taste:sour",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:orange",
+ "taste:tangy",
+ "ripeness:not-ripe"
+ ],
+ "count": 19
+ },
+ {
+ "actual": [
+ "fruit:citrus:lime",
+ "taste:sour",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lemon",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "count": 15
+ },
+ {
+ "actual": [
+ "fruit:citrus:lime",
+ "taste:sour",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lemon",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "count": 4
+ },
+ {
+ "actual": [
+ "fruit:citrus:lime",
+ "taste:sour",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lemon",
+ "taste:sour",
+ "ripeness:ripe"
+ ],
+ "count": 15
+ },
+ {
+ "actual": [
+ "fruit:citrus:lime",
+ "taste:sour",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lemon",
+ "taste:tangy",
+ "ripeness:ripe"
+ ],
+ "count": 10
+ },
+ {
+ "actual": [
+ "fruit:citrus:lime",
+ "taste:sour",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lime",
+ "taste:sour",
+ "ripeness:ripe"
+ ],
+ "count": 41
+ },
+ {
+ "actual": [
+ "fruit:citrus:lime",
+ "taste:sour",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lime",
+ "taste:sour",
+ "ripeness:not-ripe"
+ ],
+ "count": 97
+ },
+ {
+ "actual": [
+ "fruit:citrus:lime",
+ "taste:sour",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lime",
+ "taste:tangy",
+ "ripeness:ripe"
+ ],
+ "count": 60
+ },
+ {
+ "actual": [
+ "fruit:citrus:lime",
+ "taste:sour",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lime",
+ "taste:tangy",
+ "ripeness:not-ripe"
+ ],
+ "count": 31
+ },
+ {
+ "actual": [
+ "fruit:citrus:lime",
+ "taste:sour",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:orange",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "count": 24
+ },
+ {
+ "actual": [
+ "fruit:citrus:lime",
+ "taste:sour",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:orange",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "count": 16
+ },
+ {
+ "actual": [
+ "fruit:citrus:lime",
+ "taste:sour",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:orange",
+ "taste:sour",
+ "ripeness:not-ripe"
+ ],
+ "count": 3
+ },
+ {
+ "actual": [
+ "fruit:citrus:lime",
+ "taste:sour",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:orange",
+ "taste:tangy",
+ "ripeness:ripe"
+ ],
+ "count": 11
+ },
+ {
+ "actual": [
+ "fruit:citrus:lime",
+ "taste:sour",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:pome:apple",
+ "taste:sour",
+ "ripeness:ripe"
+ ],
+ "count": 8
+ },
+ {
+ "actual": [
+ "fruit:citrus:lime",
+ "taste:sour",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:pome:apple",
+ "taste:sour",
+ "ripeness:not-ripe"
+ ],
+ "count": 13
+ },
+ {
+ "actual": [
+ "fruit:citrus:lime",
+ "taste:tangy",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lemon",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "count": 36
+ },
+ {
+ "actual": [
+ "fruit:citrus:lime",
+ "taste:tangy",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lemon",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "count": 0
+ },
+ {
+ "actual": [
+ "fruit:citrus:lime",
+ "taste:tangy",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lemon",
+ "taste:sour",
+ "ripeness:ripe"
+ ],
+ "count": 38
+ },
+ {
+ "actual": [
+ "fruit:citrus:lime",
+ "taste:tangy",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lemon",
+ "taste:sour",
+ "ripeness:not-ripe"
+ ],
+ "count": 2
+ },
+ {
+ "actual": [
+ "fruit:citrus:lime",
+ "taste:tangy",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lemon",
+ "taste:tangy",
+ "ripeness:ripe"
+ ],
+ "count": 0
+ },
+ {
+ "actual": [
+ "fruit:citrus:lime",
+ "taste:tangy",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lemon",
+ "ripeness:not-ripe"
+ ],
+ "count": 10
+ },
+ {
+ "actual": [
+ "fruit:citrus:lime",
+ "taste:tangy",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lime",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "count": 24
+ },
+ {
+ "actual": [
+ "fruit:citrus:lime",
+ "taste:tangy",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lime",
+ "taste:sour",
+ "ripeness:not-ripe"
+ ],
+ "count": 56
+ },
+ {
+ "actual": [
+ "fruit:citrus:lime",
+ "taste:tangy",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:orange",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "count": 19
+ },
+ {
+ "actual": [
+ "fruit:citrus:lime",
+ "taste:tangy",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:orange",
+ "taste:tangy",
+ "ripeness:ripe"
+ ],
+ "count": 12
+ },
+ {
+ "actual": [
+ "fruit:citrus:lime",
+ "taste:tangy",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:orange",
+ "taste:tangy",
+ "ripeness:not-ripe"
+ ],
+ "count": 27
+ },
+ {
+ "actual": [
+ "fruit:citrus:lime",
+ "taste:tangy",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:pome:apple",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "count": 10
+ },
+ {
+ "actual": [
+ "fruit:citrus:lime",
+ "taste:tangy",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lemon",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "count": 15
+ },
+ {
+ "actual": [
+ "fruit:citrus:lime",
+ "taste:tangy",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lemon",
+ "taste:tangy",
+ "ripeness:ripe"
+ ],
+ "count": 31
+ },
+ {
+ "actual": [
+ "fruit:citrus:lime",
+ "taste:tangy",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lime",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "count": 41
+ },
+ {
+ "actual": [
+ "fruit:citrus:lime",
+ "taste:tangy",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lime",
+ "taste:sour",
+ "ripeness:ripe"
+ ],
+ "count": 33
+ },
+ {
+ "actual": [
+ "fruit:citrus:lime",
+ "taste:tangy",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lime",
+ "taste:sour",
+ "ripeness:not-ripe"
+ ],
+ "count": 50
+ },
+ {
+ "actual": [
+ "fruit:citrus:lime",
+ "taste:tangy",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lime",
+ "taste:tangy",
+ "ripeness:ripe"
+ ],
+ "count": 63
+ },
+ {
+ "actual": [
+ "fruit:citrus:lime",
+ "taste:tangy",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lime",
+ "taste:tangy",
+ "ripeness:not-ripe"
+ ],
+ "count": 78
+ },
+ {
+ "actual": [
+ "fruit:citrus:lime",
+ "taste:tangy",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:orange",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "count": 46
+ },
+ {
+ "actual": [
+ "fruit:citrus:lime",
+ "taste:tangy",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:orange",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "count": 42
+ },
+ {
+ "actual": [
+ "fruit:citrus:lime",
+ "taste:tangy",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:orange",
+ "taste:tangy",
+ "ripeness:ripe"
+ ],
+ "count": 0
+ },
+ {
+ "actual": [
+ "fruit:citrus:lime",
+ "taste:tangy",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:pome:apple",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "count": 9
+ },
+ {
+ "actual": [
+ "fruit:citrus:orange",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lemon",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "count": 6
+ },
+ {
+ "actual": [
+ "fruit:citrus:orange",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lemon",
+ "taste:tangy",
+ "ripeness:ripe"
+ ],
+ "count": 9
+ },
+ {
+ "actual": [
+ "fruit:citrus:orange",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lemon",
+ "ripeness:not-ripe"
+ ],
+ "count": 0
+ },
+ {
+ "actual": [
+ "fruit:citrus:orange",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lime",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "count": 38
+ },
+ {
+ "actual": [
+ "fruit:citrus:orange",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lime",
+ "taste:tangy",
+ "ripeness:ripe"
+ ],
+ "count": 31
+ },
+ {
+ "actual": [
+ "fruit:citrus:orange",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lime",
+ "taste:tangy",
+ "ripeness:not-ripe"
+ ],
+ "count": 47
+ },
+ {
+ "actual": [
+ "fruit:citrus:orange",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:orange",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "count": 93
+ },
+ {
+ "actual": [
+ "fruit:citrus:orange",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:orange",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "count": 42
+ },
+ {
+ "actual": [
+ "fruit:citrus:orange",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:orange",
+ "taste:sour",
+ "ripeness:ripe"
+ ],
+ "count": 14
+ },
+ {
+ "actual": [
+ "fruit:citrus:orange",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:orange",
+ "taste:sour",
+ "ripeness:not-ripe"
+ ],
+ "count": 42
+ },
+ {
+ "actual": [
+ "fruit:citrus:orange",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:orange",
+ "taste:tangy",
+ "ripeness:ripe"
+ ],
+ "count": 27
+ },
+ {
+ "actual": [
+ "fruit:citrus:orange",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:orange",
+ "taste:tangy",
+ "ripeness:not-ripe"
+ ],
+ "count": 20
+ },
+ {
+ "actual": [
+ "fruit:citrus:orange",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:pome:apple",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "count": 12
+ },
+ {
+ "actual": [
+ "fruit:citrus:orange",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:pome:apple",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "count": 0
+ },
+ {
+ "actual": [
+ "fruit:citrus:orange",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:pome:apple",
+ "taste:sour",
+ "ripeness:ripe"
+ ],
+ "count": 1
+ },
+ {
+ "actual": [
+ "fruit:citrus:orange",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lemon",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "count": 0
+ },
+ {
+ "actual": [
+ "fruit:citrus:orange",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lemon",
+ "taste:sour",
+ "ripeness:ripe"
+ ],
+ "count": 29
+ },
+ {
+ "actual": [
+ "fruit:citrus:orange",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lemon",
+ "taste:tangy",
+ "ripeness:ripe"
+ ],
+ "count": 10
+ },
+ {
+ "actual": [
+ "fruit:citrus:orange",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lime",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "count": 0
+ },
+ {
+ "actual": [
+ "fruit:citrus:orange",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lime",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "count": 11
+ },
+ {
+ "actual": [
+ "fruit:citrus:orange",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lime",
+ "taste:sour",
+ "ripeness:ripe"
+ ],
+ "count": 28
+ },
+ {
+ "actual": [
+ "fruit:citrus:orange",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lime",
+ "taste:tangy",
+ "ripeness:ripe"
+ ],
+ "count": 7
+ },
+ {
+ "actual": [
+ "fruit:citrus:orange",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lime",
+ "taste:tangy",
+ "ripeness:not-ripe"
+ ],
+ "count": 40
+ },
+ {
+ "actual": [
+ "fruit:citrus:orange",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:orange",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "count": 41
+ },
+ {
+ "actual": [
+ "fruit:citrus:orange",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:orange",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "count": 93
+ },
+ {
+ "actual": [
+ "fruit:citrus:orange",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:orange",
+ "taste:sour",
+ "ripeness:ripe"
+ ],
+ "count": 50
+ },
+ {
+ "actual": [
+ "fruit:citrus:orange",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:pome:apple",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "count": 9
+ },
+ {
+ "actual": [
+ "fruit:citrus:orange",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:pome:apple",
+ "taste:sour",
+ "ripeness:ripe"
+ ],
+ "count": 13
+ },
+ {
+ "actual": [
+ "fruit:citrus:orange",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:pome:apple",
+ "taste:sour",
+ "ripeness:not-ripe"
+ ],
+ "count": 20
+ },
+ {
+ "actual": [
+ "fruit:citrus:orange",
+ "taste:sour",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lemon",
+ "taste:sour",
+ "ripeness:not-ripe"
+ ],
+ "count": 8
+ },
+ {
+ "actual": [
+ "fruit:citrus:orange",
+ "taste:sour",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lime",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "count": 2
+ },
+ {
+ "actual": [
+ "fruit:citrus:orange",
+ "taste:sour",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lime",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "count": 13
+ },
+ {
+ "actual": [
+ "fruit:citrus:orange",
+ "taste:sour",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lime",
+ "taste:sour",
+ "ripeness:ripe"
+ ],
+ "count": 26
+ },
+ {
+ "actual": [
+ "fruit:citrus:orange",
+ "taste:sour",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lime",
+ "taste:tangy",
+ "ripeness:ripe"
+ ],
+ "count": 26
+ },
+ {
+ "actual": [
+ "fruit:citrus:orange",
+ "taste:sour",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lime",
+ "taste:tangy",
+ "ripeness:not-ripe"
+ ],
+ "count": 43
+ },
+ {
+ "actual": [
+ "fruit:citrus:orange",
+ "taste:sour",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:orange",
+ "taste:sour",
+ "ripeness:not-ripe"
+ ],
+ "count": 42
+ },
+ {
+ "actual": [
+ "fruit:citrus:orange",
+ "taste:sour",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:orange",
+ "taste:tangy",
+ "ripeness:ripe"
+ ],
+ "count": 34
+ },
+ {
+ "actual": [
+ "fruit:citrus:orange",
+ "taste:sour",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:pome:apple",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "count": 24
+ },
+ {
+ "actual": [
+ "fruit:citrus:orange",
+ "taste:sour",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:pome:apple",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "count": 11
+ },
+ {
+ "actual": [
+ "fruit:citrus:orange",
+ "taste:sour",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:pome:apple",
+ "taste:sour",
+ "ripeness:not-ripe"
+ ],
+ "count": 7
+ },
+ {
+ "actual": [
+ "fruit:citrus:orange",
+ "taste:sour",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lemon",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "count": 2
+ },
+ {
+ "actual": [
+ "fruit:citrus:orange",
+ "taste:sour",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lemon",
+ "ripeness:not-ripe"
+ ],
+ "count": 30
+ },
+ {
+ "actual": [
+ "fruit:citrus:orange",
+ "taste:sour",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lime",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "count": 20
+ },
+ {
+ "actual": [
+ "fruit:citrus:orange",
+ "taste:sour",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lime",
+ "taste:sour",
+ "ripeness:ripe"
+ ],
+ "count": 0
+ },
+ {
+ "actual": [
+ "fruit:citrus:orange",
+ "taste:sour",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:orange",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "count": 19
+ },
+ {
+ "actual": [
+ "fruit:citrus:orange",
+ "taste:sour",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:orange",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "count": 22
+ },
+ {
+ "actual": [
+ "fruit:citrus:orange",
+ "taste:sour",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:orange",
+ "taste:sour",
+ "ripeness:ripe"
+ ],
+ "count": 50
+ },
+ {
+ "actual": [
+ "fruit:citrus:orange",
+ "taste:sour",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:orange",
+ "taste:sour",
+ "ripeness:not-ripe"
+ ],
+ "count": 94
+ },
+ {
+ "actual": [
+ "fruit:citrus:orange",
+ "taste:sour",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:orange",
+ "taste:tangy",
+ "ripeness:ripe"
+ ],
+ "count": 62
+ },
+ {
+ "actual": [
+ "fruit:citrus:orange",
+ "taste:sour",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:pome:apple",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "count": 7
+ },
+ {
+ "actual": [
+ "fruit:citrus:orange",
+ "taste:tangy",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lemon",
+ "taste:sour",
+ "ripeness:not-ripe"
+ ],
+ "count": 25
+ },
+ {
+ "actual": [
+ "fruit:citrus:orange",
+ "taste:tangy",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lemon",
+ "ripeness:not-ripe"
+ ],
+ "count": 0
+ },
+ {
+ "actual": [
+ "fruit:citrus:orange",
+ "taste:tangy",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lime",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "count": 10
+ },
+ {
+ "actual": [
+ "fruit:citrus:orange",
+ "taste:tangy",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lime",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "count": 19
+ },
+ {
+ "actual": [
+ "fruit:citrus:orange",
+ "taste:tangy",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:orange",
+ "taste:sour",
+ "ripeness:ripe"
+ ],
+ "count": 34
+ },
+ {
+ "actual": [
+ "fruit:citrus:orange",
+ "taste:tangy",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:orange",
+ "taste:sour",
+ "ripeness:not-ripe"
+ ],
+ "count": 63
+ },
+ {
+ "actual": [
+ "fruit:citrus:orange",
+ "taste:tangy",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:orange",
+ "taste:tangy",
+ "ripeness:ripe"
+ ],
+ "count": 98
+ },
+ {
+ "actual": [
+ "fruit:citrus:orange",
+ "taste:tangy",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:orange",
+ "taste:tangy",
+ "ripeness:not-ripe"
+ ],
+ "count": 44
+ },
+ {
+ "actual": [
+ "fruit:citrus:orange",
+ "taste:tangy",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:pome:apple",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "count": 20
+ },
+ {
+ "actual": [
+ "fruit:citrus:orange",
+ "taste:tangy",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:pome:apple",
+ "taste:sour",
+ "ripeness:not-ripe"
+ ],
+ "count": 0
+ },
+ {
+ "actual": [
+ "fruit:citrus:orange",
+ "taste:tangy",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lemon",
+ "taste:sour",
+ "ripeness:ripe"
+ ],
+ "count": 0
+ },
+ {
+ "actual": [
+ "fruit:citrus:orange",
+ "taste:tangy",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lemon",
+ "ripeness:not-ripe"
+ ],
+ "count": 21
+ },
+ {
+ "actual": [
+ "fruit:citrus:orange",
+ "taste:tangy",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lime",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "count": 0
+ },
+ {
+ "actual": [
+ "fruit:citrus:orange",
+ "taste:tangy",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lime",
+ "taste:tangy",
+ "ripeness:ripe"
+ ],
+ "count": 14
+ },
+ {
+ "actual": [
+ "fruit:citrus:orange",
+ "taste:tangy",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lime",
+ "taste:tangy",
+ "ripeness:not-ripe"
+ ],
+ "count": 12
+ },
+ {
+ "actual": [
+ "fruit:citrus:orange",
+ "taste:tangy",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:orange",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "count": 16
+ },
+ {
+ "actual": [
+ "fruit:citrus:orange",
+ "taste:tangy",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:orange",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "count": 13
+ },
+ {
+ "actual": [
+ "fruit:citrus:orange",
+ "taste:tangy",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:orange",
+ "taste:sour",
+ "ripeness:ripe"
+ ],
+ "count": 21
+ },
+ {
+ "actual": [
+ "fruit:citrus:orange",
+ "taste:tangy",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:orange",
+ "taste:sour",
+ "ripeness:not-ripe"
+ ],
+ "count": 52
+ },
+ {
+ "actual": [
+ "fruit:citrus:orange",
+ "taste:tangy",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:orange",
+ "taste:tangy",
+ "ripeness:ripe"
+ ],
+ "count": 65
+ },
+ {
+ "actual": [
+ "fruit:citrus:orange",
+ "taste:tangy",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:orange",
+ "taste:tangy",
+ "ripeness:not-ripe"
+ ],
+ "count": 74
+ },
+ {
+ "actual": [
+ "fruit:citrus:orange",
+ "taste:tangy",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:pome:apple",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "count": 32
+ },
+ {
+ "actual": [
+ "fruit:citrus:orange",
+ "taste:tangy",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:pome:apple",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "count": 23
+ },
+ {
+ "actual": [
+ "fruit:citrus:orange",
+ "taste:tangy",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:pome:apple",
+ "taste:sour",
+ "ripeness:ripe"
+ ],
+ "count": 36
+ },
+ {
+ "actual": [
+ "fruit:citrus:orange",
+ "taste:tangy",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:pome:apple",
+ "taste:sour",
+ "ripeness:not-ripe"
+ ],
+ "count": 35
+ },
+ {
+ "actual": [
+ "fruit:pome:apple",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lemon",
+ "ripeness:not-ripe"
+ ],
+ "count": 2
+ },
+ {
+ "actual": [
+ "fruit:pome:apple",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lime",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "count": 3
+ },
+ {
+ "actual": [
+ "fruit:pome:apple",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lime",
+ "taste:tangy",
+ "ripeness:ripe"
+ ],
+ "count": 15
+ },
+ {
+ "actual": [
+ "fruit:pome:apple",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:orange",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "count": 7
+ },
+ {
+ "actual": [
+ "fruit:pome:apple",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:orange",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "count": 29
+ },
+ {
+ "actual": [
+ "fruit:pome:apple",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:orange",
+ "taste:sour",
+ "ripeness:ripe"
+ ],
+ "count": 0
+ },
+ {
+ "actual": [
+ "fruit:pome:apple",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:orange",
+ "taste:sour",
+ "ripeness:not-ripe"
+ ],
+ "count": 32
+ },
+ {
+ "actual": [
+ "fruit:pome:apple",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:orange",
+ "taste:tangy",
+ "ripeness:ripe"
+ ],
+ "count": 7
+ },
+ {
+ "actual": [
+ "fruit:pome:apple",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:pome:apple",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "count": 93
+ },
+ {
+ "actual": [
+ "fruit:pome:apple",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:pome:apple",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "count": 54
+ },
+ {
+ "actual": [
+ "fruit:pome:apple",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:pome:apple",
+ "taste:sour",
+ "ripeness:ripe"
+ ],
+ "count": 34
+ },
+ {
+ "actual": [
+ "fruit:pome:apple",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:pome:apple",
+ "taste:sour",
+ "ripeness:not-ripe"
+ ],
+ "count": 26
+ },
+ {
+ "actual": [
+ "fruit:pome:apple",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lemon",
+ "taste:sour",
+ "ripeness:ripe"
+ ],
+ "count": 7
+ },
+ {
+ "actual": [
+ "fruit:pome:apple",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lemon",
+ "ripeness:not-ripe"
+ ],
+ "count": 0
+ },
+ {
+ "actual": [
+ "fruit:pome:apple",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lime",
+ "taste:tangy",
+ "ripeness:ripe"
+ ],
+ "count": 13
+ },
+ {
+ "actual": [
+ "fruit:pome:apple",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:orange",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "count": 0
+ },
+ {
+ "actual": [
+ "fruit:pome:apple",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:orange",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "count": 0
+ },
+ {
+ "actual": [
+ "fruit:pome:apple",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:orange",
+ "taste:sour",
+ "ripeness:ripe"
+ ],
+ "count": 23
+ },
+ {
+ "actual": [
+ "fruit:pome:apple",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:orange",
+ "taste:sour",
+ "ripeness:not-ripe"
+ ],
+ "count": 10
+ },
+ {
+ "actual": [
+ "fruit:pome:apple",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:orange",
+ "taste:tangy",
+ "ripeness:ripe"
+ ],
+ "count": 17
+ },
+ {
+ "actual": [
+ "fruit:pome:apple",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:orange",
+ "taste:tangy",
+ "ripeness:not-ripe"
+ ],
+ "count": 15
+ },
+ {
+ "actual": [
+ "fruit:pome:apple",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:pome:apple",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "count": 37
+ },
+ {
+ "actual": [
+ "fruit:pome:apple",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:pome:apple",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "count": 113
+ },
+ {
+ "actual": [
+ "fruit:pome:apple",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:pome:apple",
+ "taste:sour",
+ "ripeness:ripe"
+ ],
+ "count": 56
+ },
+ {
+ "actual": [
+ "fruit:pome:apple",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:pome:apple",
+ "taste:sour",
+ "ripeness:not-ripe"
+ ],
+ "count": 35
+ },
+ {
+ "actual": [
+ "fruit:pome:apple",
+ "taste:sour",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lime",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "count": 15
+ },
+ {
+ "actual": [
+ "fruit:pome:apple",
+ "taste:sour",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lime",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "count": 0
+ },
+ {
+ "actual": [
+ "fruit:pome:apple",
+ "taste:sour",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lime",
+ "taste:tangy",
+ "ripeness:not-ripe"
+ ],
+ "count": 17
+ },
+ {
+ "actual": [
+ "fruit:pome:apple",
+ "taste:sour",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:orange",
+ "taste:sour",
+ "ripeness:ripe"
+ ],
+ "count": 24
+ },
+ {
+ "actual": [
+ "fruit:pome:apple",
+ "taste:sour",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:orange",
+ "taste:sour",
+ "ripeness:not-ripe"
+ ],
+ "count": 22
+ },
+ {
+ "actual": [
+ "fruit:pome:apple",
+ "taste:sour",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:orange",
+ "taste:tangy",
+ "ripeness:ripe"
+ ],
+ "count": 25
+ },
+ {
+ "actual": [
+ "fruit:pome:apple",
+ "taste:sour",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:citrus:orange",
+ "taste:tangy",
+ "ripeness:not-ripe"
+ ],
+ "count": 27
+ },
+ {
+ "actual": [
+ "fruit:pome:apple",
+ "taste:sour",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:pome:apple",
+ "taste:sour",
+ "ripeness:ripe"
+ ],
+ "count": 99
+ },
+ {
+ "actual": [
+ "fruit:pome:apple",
+ "taste:sour",
+ "ripeness:ripe"
+ ],
+ "observed": [
+ "fruit:pome:apple",
+ "taste:sour",
+ "ripeness:not-ripe"
+ ],
+ "count": 58
+ },
+ {
+ "actual": [
+ "fruit:pome:apple",
+ "taste:sour",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lime",
+ "taste:tangy",
+ "ripeness:ripe"
+ ],
+ "count": 9
+ },
+ {
+ "actual": [
+ "fruit:pome:apple",
+ "taste:sour",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:lime",
+ "taste:tangy",
+ "ripeness:not-ripe"
+ ],
+ "count": 22
+ },
+ {
+ "actual": [
+ "fruit:pome:apple",
+ "taste:sour",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:orange",
+ "taste:sour",
+ "ripeness:ripe"
+ ],
+ "count": 6
+ },
+ {
+ "actual": [
+ "fruit:pome:apple",
+ "taste:sour",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:orange",
+ "taste:tangy",
+ "ripeness:ripe"
+ ],
+ "count": 11
+ },
+ {
+ "actual": [
+ "fruit:pome:apple",
+ "taste:sour",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:citrus:orange",
+ "taste:tangy",
+ "ripeness:not-ripe"
+ ],
+ "count": 16
+ },
+ {
+ "actual": [
+ "fruit:pome:apple",
+ "taste:sour",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:pome:apple",
+ "taste:sweet",
+ "ripeness:ripe"
+ ],
+ "count": 12
+ },
+ {
+ "actual": [
+ "fruit:pome:apple",
+ "taste:sour",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:pome:apple",
+ "taste:sweet",
+ "ripeness:not-ripe"
+ ],
+ "count": 23
+ },
+ {
+ "actual": [
+ "fruit:pome:apple",
+ "taste:sour",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:pome:apple",
+ "taste:sour",
+ "ripeness:ripe"
+ ],
+ "count": 49
+ },
+ {
+ "actual": [
+ "fruit:pome:apple",
+ "taste:sour",
+ "ripeness:not-ripe"
+ ],
+ "observed": [
+ "fruit:pome:apple",
+ "taste:sour",
+ "ripeness:not-ripe"
+ ],
+ "count": 102
+ }
+ ]
+ }
+}
\ No newline at end of file
diff --git a/public/data/materials.json b/public/data/materials.json
new file mode 100644
index 0000000..1b547f9
--- /dev/null
+++ b/public/data/materials.json
@@ -0,0 +1,16258 @@
+{
+ "$schema": "https://vega.github.io/schema/vega-lite/v4.0.2.json",
+ "config": {"view": {"continuousHeight": 300, "continuousWidth": 400}},
+ "data": {
+ "values": [
+ {
+ "annotation_text": "material:non-solid:type-:fire",
+ "occurence_log": 2,
+ "occurrence": 14,
+ "reference_text": "material:non-solid:type-:fire"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:fire",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:liquid__nonwater"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:fire",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:sky"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:fire",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:water"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:fire",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:brickwork"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:fire",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:cardboard"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:fire",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:carpet/rug"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:fire",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:ceiling_tile"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:fire",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:ceramic"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:fire",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:chalkboard_/blackboard"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:fire",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:concrete"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:fire",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:cork/_corkboard"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:fire",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:engineered_stone"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:fire",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:fabric/cloth"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:fire",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:fiberglass_wool"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:fire",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:gemstone/_crystal"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:fire",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:glass"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:fire",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:leather"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:fire",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:metal"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:fire",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:mirror"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:fire",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:paint/_plaster/_enamel"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:fire",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:paper"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:fire",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:photograph/_painting"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:fire",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:plastic__clear"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:fire",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:plastic__nonclear"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:fire",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:rubber/_latex"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:fire",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:soap"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:fire",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:sponge"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:fire",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:styrofoam"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:fire",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:tile"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:fire",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:wallpaper"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:fire",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:whiteboard"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:fire",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:sand"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:fire",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:snow"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:fire",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:soil/mud"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:fire",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:stone__natural"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:fire",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:stone__polished"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:fire",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:animal_skin"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:fire",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:bone/_teeth/horn"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:fire",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:foliage"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:fire",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:food"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:fire",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:fur"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:fire",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:hair"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:fire",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:pearl"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:fire",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:skin/_lips"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:fire",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wax"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:fire",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wicker"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:fire",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wood"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:fire",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wood__tree"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:fire",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:clutter"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:fire",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:special:type-:i_cannot_tell"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:fire",
+ "occurence_log": 1,
+ "occurrence": 2,
+ "reference_text": "material:special:type-:not_on_list"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:liquid__nonwater",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:fire"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:liquid__nonwater",
+ "occurence_log": 1,
+ "occurrence": 4,
+ "reference_text": "material:non-solid:type-:liquid__nonwater"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:liquid__nonwater",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:sky"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:liquid__nonwater",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:water"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:liquid__nonwater",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:brickwork"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:liquid__nonwater",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:cardboard"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:liquid__nonwater",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:carpet/rug"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:liquid__nonwater",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:ceiling_tile"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:liquid__nonwater",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:ceramic"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:liquid__nonwater",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:chalkboard_/blackboard"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:liquid__nonwater",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:concrete"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:liquid__nonwater",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:cork/_corkboard"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:liquid__nonwater",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:engineered_stone"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:liquid__nonwater",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:fabric/cloth"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:liquid__nonwater",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:fiberglass_wool"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:liquid__nonwater",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:gemstone/_crystal"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:liquid__nonwater",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:glass"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:liquid__nonwater",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:leather"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:liquid__nonwater",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:metal"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:liquid__nonwater",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:mirror"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:liquid__nonwater",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:paint/_plaster/_enamel"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:liquid__nonwater",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:paper"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:liquid__nonwater",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:photograph/_painting"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:liquid__nonwater",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:plastic__clear"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:liquid__nonwater",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:plastic__nonclear"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:liquid__nonwater",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:rubber/_latex"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:liquid__nonwater",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:soap"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:liquid__nonwater",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:sponge"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:liquid__nonwater",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:styrofoam"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:liquid__nonwater",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:tile"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:liquid__nonwater",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:wallpaper"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:liquid__nonwater",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:whiteboard"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:liquid__nonwater",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:sand"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:liquid__nonwater",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:snow"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:liquid__nonwater",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:soil/mud"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:liquid__nonwater",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:stone__natural"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:liquid__nonwater",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:stone__polished"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:liquid__nonwater",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:animal_skin"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:liquid__nonwater",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:bone/_teeth/horn"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:liquid__nonwater",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:foliage"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:liquid__nonwater",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:food"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:liquid__nonwater",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:fur"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:liquid__nonwater",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:hair"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:liquid__nonwater",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:pearl"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:liquid__nonwater",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:skin/_lips"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:liquid__nonwater",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wax"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:liquid__nonwater",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wicker"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:liquid__nonwater",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wood"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:liquid__nonwater",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wood__tree"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:liquid__nonwater",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:clutter"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:liquid__nonwater",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:i_cannot_tell"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:liquid__nonwater",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:not_on_list"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:sky",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:fire"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:sky",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:liquid__nonwater"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:sky",
+ "occurence_log": 3,
+ "occurrence": 21,
+ "reference_text": "material:non-solid:type-:sky"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:sky",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:water"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:sky",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:brickwork"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:sky",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:cardboard"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:sky",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:carpet/rug"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:sky",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:ceiling_tile"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:sky",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:ceramic"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:sky",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:chalkboard_/blackboard"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:sky",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__manufactured:type-:concrete"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:sky",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:cork/_corkboard"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:sky",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:engineered_stone"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:sky",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:fabric/cloth"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:sky",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:fiberglass_wool"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:sky",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:gemstone/_crystal"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:sky",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:glass"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:sky",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:leather"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:sky",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:metal"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:sky",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:mirror"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:sky",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:paint/_plaster/_enamel"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:sky",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:paper"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:sky",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:photograph/_painting"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:sky",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:plastic__clear"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:sky",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:plastic__nonclear"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:sky",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:rubber/_latex"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:sky",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:soap"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:sky",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:sponge"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:sky",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:styrofoam"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:sky",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:tile"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:sky",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:wallpaper"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:sky",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:whiteboard"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:sky",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:sand"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:sky",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:snow"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:sky",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:soil/mud"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:sky",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:stone__natural"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:sky",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:stone__polished"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:sky",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:animal_skin"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:sky",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:bone/_teeth/horn"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:sky",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__organic:type-:foliage"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:sky",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:food"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:sky",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:fur"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:sky",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:hair"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:sky",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:pearl"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:sky",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:skin/_lips"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:sky",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wax"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:sky",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wicker"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:sky",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wood"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:sky",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wood__tree"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:sky",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:clutter"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:sky",
+ "occurence_log": 1,
+ "occurrence": 2,
+ "reference_text": "material:special:type-:i_cannot_tell"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:sky",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:not_on_list"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:water",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:fire"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:water",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:non-solid:type-:liquid__nonwater"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:water",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:sky"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:water",
+ "occurence_log": 5,
+ "occurrence": 221,
+ "reference_text": "material:non-solid:type-:water"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:water",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:brickwork"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:water",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:cardboard"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:water",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:carpet/rug"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:water",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:ceiling_tile"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:water",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:ceramic"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:water",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:chalkboard_/blackboard"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:water",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:concrete"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:water",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:cork/_corkboard"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:water",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:engineered_stone"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:water",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:fabric/cloth"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:water",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:fiberglass_wool"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:water",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:gemstone/_crystal"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:water",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:glass"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:water",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:leather"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:water",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:metal"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:water",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:mirror"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:water",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:paint/_plaster/_enamel"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:water",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:paper"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:water",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:photograph/_painting"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:water",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:plastic__clear"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:water",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:plastic__nonclear"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:water",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:rubber/_latex"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:water",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:soap"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:water",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:sponge"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:water",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:styrofoam"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:water",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:tile"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:water",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:wallpaper"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:water",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:whiteboard"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:water",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:sand"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:water",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:snow"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:water",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:soil/mud"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:water",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:stone__natural"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:water",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:stone__polished"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:water",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:animal_skin"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:water",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:bone/_teeth/horn"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:water",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:foliage"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:water",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:food"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:water",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:fur"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:water",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:hair"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:water",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:pearl"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:water",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:skin/_lips"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:water",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wax"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:water",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wicker"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:water",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wood"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:water",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wood__tree"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:water",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:clutter"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:water",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:i_cannot_tell"
+ },
+ {
+ "annotation_text": "material:non-solid:type-:water",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:not_on_list"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:brickwork",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:fire"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:brickwork",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:liquid__nonwater"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:brickwork",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:sky"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:brickwork",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:water"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:brickwork",
+ "occurence_log": 4,
+ "occurrence": 66,
+ "reference_text": "material:solid__manufactured:type-:brickwork"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:brickwork",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:cardboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:brickwork",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:carpet/rug"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:brickwork",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:ceiling_tile"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:brickwork",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:ceramic"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:brickwork",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:chalkboard_/blackboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:brickwork",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__manufactured:type-:concrete"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:brickwork",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:cork/_corkboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:brickwork",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:engineered_stone"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:brickwork",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:fabric/cloth"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:brickwork",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:fiberglass_wool"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:brickwork",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:gemstone/_crystal"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:brickwork",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__manufactured:type-:glass"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:brickwork",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:leather"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:brickwork",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:metal"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:brickwork",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:mirror"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:brickwork",
+ "occurence_log": 1,
+ "occurrence": 6,
+ "reference_text": "material:solid__manufactured:type-:paint/_plaster/_enamel"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:brickwork",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:paper"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:brickwork",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:photograph/_painting"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:brickwork",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:plastic__clear"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:brickwork",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:plastic__nonclear"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:brickwork",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:rubber/_latex"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:brickwork",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:soap"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:brickwork",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:sponge"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:brickwork",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:styrofoam"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:brickwork",
+ "occurence_log": 1,
+ "occurrence": 3,
+ "reference_text": "material:solid__manufactured:type-:tile"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:brickwork",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:wallpaper"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:brickwork",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:whiteboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:brickwork",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:sand"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:brickwork",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:snow"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:brickwork",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:soil/mud"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:brickwork",
+ "occurence_log": 1,
+ "occurrence": 4,
+ "reference_text": "material:solid__natural:type-:stone__natural"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:brickwork",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:stone__polished"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:brickwork",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:animal_skin"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:brickwork",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:bone/_teeth/horn"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:brickwork",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:foliage"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:brickwork",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:food"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:brickwork",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:fur"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:brickwork",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:hair"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:brickwork",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:pearl"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:brickwork",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:skin/_lips"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:brickwork",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wax"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:brickwork",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wicker"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:brickwork",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wood"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:brickwork",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wood__tree"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:brickwork",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:clutter"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:brickwork",
+ "occurence_log": 1,
+ "occurrence": 3,
+ "reference_text": "material:special:type-:i_cannot_tell"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:brickwork",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:not_on_list"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cardboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:fire"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cardboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:liquid__nonwater"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cardboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:sky"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cardboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:water"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cardboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:brickwork"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cardboard",
+ "occurence_log": 5,
+ "occurrence": 300,
+ "reference_text": "material:solid__manufactured:type-:cardboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cardboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:carpet/rug"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cardboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:ceiling_tile"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cardboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:ceramic"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cardboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:chalkboard_/blackboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cardboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:concrete"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cardboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:cork/_corkboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cardboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:engineered_stone"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cardboard",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__manufactured:type-:fabric/cloth"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cardboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:fiberglass_wool"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cardboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:gemstone/_crystal"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cardboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:glass"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cardboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:leather"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cardboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:metal"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cardboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:mirror"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cardboard",
+ "occurence_log": 2,
+ "occurrence": 18,
+ "reference_text": "material:solid__manufactured:type-:paint/_plaster/_enamel"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cardboard",
+ "occurence_log": 4,
+ "occurrence": 74,
+ "reference_text": "material:solid__manufactured:type-:paper"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cardboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:photograph/_painting"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cardboard",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__manufactured:type-:plastic__clear"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cardboard",
+ "occurence_log": 3,
+ "occurrence": 31,
+ "reference_text": "material:solid__manufactured:type-:plastic__nonclear"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cardboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:rubber/_latex"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cardboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:soap"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cardboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:sponge"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cardboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:styrofoam"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cardboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:tile"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cardboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:wallpaper"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cardboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:whiteboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cardboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:sand"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cardboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:snow"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cardboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:soil/mud"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cardboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:stone__natural"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cardboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:stone__polished"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cardboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:animal_skin"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cardboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:bone/_teeth/horn"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cardboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:foliage"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cardboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:food"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cardboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:fur"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cardboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:hair"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cardboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:pearl"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cardboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:skin/_lips"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cardboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wax"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cardboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wicker"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cardboard",
+ "occurence_log": 1,
+ "occurrence": 3,
+ "reference_text": "material:solid__organic:type-:wood"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cardboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wood__tree"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cardboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:clutter"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cardboard",
+ "occurence_log": 2,
+ "occurrence": 14,
+ "reference_text": "material:special:type-:i_cannot_tell"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cardboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:not_on_list"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:carpet/rug",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:fire"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:carpet/rug",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:liquid__nonwater"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:carpet/rug",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:sky"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:carpet/rug",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:water"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:carpet/rug",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:brickwork"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:carpet/rug",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:cardboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:carpet/rug",
+ "occurence_log": 5,
+ "occurrence": 322,
+ "reference_text": "material:solid__manufactured:type-:carpet/rug"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:carpet/rug",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:ceiling_tile"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:carpet/rug",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:ceramic"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:carpet/rug",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:chalkboard_/blackboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:carpet/rug",
+ "occurence_log": 1,
+ "occurrence": 3,
+ "reference_text": "material:solid__manufactured:type-:concrete"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:carpet/rug",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:cork/_corkboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:carpet/rug",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:engineered_stone"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:carpet/rug",
+ "occurence_log": 2,
+ "occurrence": 8,
+ "reference_text": "material:solid__manufactured:type-:fabric/cloth"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:carpet/rug",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:fiberglass_wool"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:carpet/rug",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:gemstone/_crystal"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:carpet/rug",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:glass"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:carpet/rug",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:leather"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:carpet/rug",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:metal"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:carpet/rug",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:mirror"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:carpet/rug",
+ "occurence_log": 1,
+ "occurrence": 2,
+ "reference_text": "material:solid__manufactured:type-:paint/_plaster/_enamel"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:carpet/rug",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:paper"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:carpet/rug",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:photograph/_painting"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:carpet/rug",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:plastic__clear"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:carpet/rug",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:plastic__nonclear"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:carpet/rug",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:rubber/_latex"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:carpet/rug",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:soap"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:carpet/rug",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:sponge"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:carpet/rug",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:styrofoam"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:carpet/rug",
+ "occurence_log": 2,
+ "occurrence": 11,
+ "reference_text": "material:solid__manufactured:type-:tile"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:carpet/rug",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:wallpaper"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:carpet/rug",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:whiteboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:carpet/rug",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:sand"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:carpet/rug",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:snow"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:carpet/rug",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:soil/mud"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:carpet/rug",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:stone__natural"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:carpet/rug",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__natural:type-:stone__polished"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:carpet/rug",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:animal_skin"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:carpet/rug",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:bone/_teeth/horn"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:carpet/rug",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:foliage"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:carpet/rug",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:food"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:carpet/rug",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__organic:type-:fur"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:carpet/rug",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:hair"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:carpet/rug",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:pearl"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:carpet/rug",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:skin/_lips"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:carpet/rug",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wax"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:carpet/rug",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wicker"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:carpet/rug",
+ "occurence_log": 1,
+ "occurrence": 6,
+ "reference_text": "material:solid__organic:type-:wood"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:carpet/rug",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wood__tree"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:carpet/rug",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:clutter"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:carpet/rug",
+ "occurence_log": 2,
+ "occurrence": 18,
+ "reference_text": "material:special:type-:i_cannot_tell"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:carpet/rug",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:not_on_list"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceiling_tile",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:fire"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceiling_tile",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:liquid__nonwater"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceiling_tile",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:sky"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceiling_tile",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:water"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceiling_tile",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:brickwork"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceiling_tile",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:cardboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceiling_tile",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:carpet/rug"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceiling_tile",
+ "occurence_log": 4,
+ "occurrence": 67,
+ "reference_text": "material:solid__manufactured:type-:ceiling_tile"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceiling_tile",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:ceramic"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceiling_tile",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:chalkboard_/blackboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceiling_tile",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:concrete"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceiling_tile",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:cork/_corkboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceiling_tile",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:engineered_stone"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceiling_tile",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:fabric/cloth"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceiling_tile",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:fiberglass_wool"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceiling_tile",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:gemstone/_crystal"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceiling_tile",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:glass"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceiling_tile",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:leather"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceiling_tile",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:metal"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceiling_tile",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:mirror"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceiling_tile",
+ "occurence_log": 2,
+ "occurrence": 18,
+ "reference_text": "material:solid__manufactured:type-:paint/_plaster/_enamel"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceiling_tile",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:paper"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceiling_tile",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:photograph/_painting"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceiling_tile",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:plastic__clear"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceiling_tile",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:plastic__nonclear"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceiling_tile",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:rubber/_latex"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceiling_tile",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:soap"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceiling_tile",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:sponge"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceiling_tile",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:styrofoam"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceiling_tile",
+ "occurence_log": 1,
+ "occurrence": 4,
+ "reference_text": "material:solid__manufactured:type-:tile"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceiling_tile",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:wallpaper"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceiling_tile",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:whiteboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceiling_tile",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:sand"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceiling_tile",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:snow"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceiling_tile",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:soil/mud"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceiling_tile",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:stone__natural"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceiling_tile",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:stone__polished"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceiling_tile",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:animal_skin"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceiling_tile",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:bone/_teeth/horn"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceiling_tile",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:foliage"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceiling_tile",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:food"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceiling_tile",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:fur"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceiling_tile",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:hair"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceiling_tile",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:pearl"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceiling_tile",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:skin/_lips"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceiling_tile",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wax"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceiling_tile",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wicker"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceiling_tile",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wood"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceiling_tile",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wood__tree"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceiling_tile",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:clutter"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceiling_tile",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:special:type-:i_cannot_tell"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceiling_tile",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:not_on_list"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceramic",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:fire"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceramic",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:liquid__nonwater"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceramic",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:sky"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceramic",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:water"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceramic",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:brickwork"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceramic",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:cardboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceramic",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:carpet/rug"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceramic",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:ceiling_tile"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceramic",
+ "occurence_log": 6,
+ "occurrence": 836,
+ "reference_text": "material:solid__manufactured:type-:ceramic"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceramic",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:chalkboard_/blackboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceramic",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:concrete"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceramic",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:cork/_corkboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceramic",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:engineered_stone"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceramic",
+ "occurence_log": 1,
+ "occurrence": 3,
+ "reference_text": "material:solid__manufactured:type-:fabric/cloth"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceramic",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:fiberglass_wool"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceramic",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:gemstone/_crystal"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceramic",
+ "occurence_log": 1,
+ "occurrence": 3,
+ "reference_text": "material:solid__manufactured:type-:glass"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceramic",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:leather"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceramic",
+ "occurence_log": 1,
+ "occurrence": 6,
+ "reference_text": "material:solid__manufactured:type-:metal"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceramic",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:mirror"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceramic",
+ "occurence_log": 3,
+ "occurrence": 50,
+ "reference_text": "material:solid__manufactured:type-:paint/_plaster/_enamel"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceramic",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:paper"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceramic",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:photograph/_painting"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceramic",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__manufactured:type-:plastic__clear"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceramic",
+ "occurence_log": 2,
+ "occurrence": 18,
+ "reference_text": "material:solid__manufactured:type-:plastic__nonclear"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceramic",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:rubber/_latex"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceramic",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:soap"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceramic",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:sponge"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceramic",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__manufactured:type-:styrofoam"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceramic",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:tile"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceramic",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:wallpaper"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceramic",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:whiteboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceramic",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:sand"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceramic",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:snow"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceramic",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:soil/mud"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceramic",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:stone__natural"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceramic",
+ "occurence_log": 1,
+ "occurrence": 4,
+ "reference_text": "material:solid__natural:type-:stone__polished"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceramic",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:animal_skin"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceramic",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:bone/_teeth/horn"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceramic",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:foliage"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceramic",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:food"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceramic",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:fur"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceramic",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:hair"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceramic",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:pearl"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceramic",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:skin/_lips"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceramic",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wax"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceramic",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wicker"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceramic",
+ "occurence_log": 1,
+ "occurrence": 3,
+ "reference_text": "material:solid__organic:type-:wood"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceramic",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wood__tree"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceramic",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:clutter"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceramic",
+ "occurence_log": 3,
+ "occurrence": 23,
+ "reference_text": "material:special:type-:i_cannot_tell"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:ceramic",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:not_on_list"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:chalkboard_/blackboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:fire"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:chalkboard_/blackboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:liquid__nonwater"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:chalkboard_/blackboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:sky"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:chalkboard_/blackboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:water"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:chalkboard_/blackboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:brickwork"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:chalkboard_/blackboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:cardboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:chalkboard_/blackboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:carpet/rug"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:chalkboard_/blackboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:ceiling_tile"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:chalkboard_/blackboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:ceramic"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:chalkboard_/blackboard",
+ "occurence_log": 2,
+ "occurrence": 12,
+ "reference_text": "material:solid__manufactured:type-:chalkboard_/blackboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:chalkboard_/blackboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:concrete"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:chalkboard_/blackboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:cork/_corkboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:chalkboard_/blackboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:engineered_stone"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:chalkboard_/blackboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:fabric/cloth"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:chalkboard_/blackboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:fiberglass_wool"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:chalkboard_/blackboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:gemstone/_crystal"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:chalkboard_/blackboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:glass"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:chalkboard_/blackboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:leather"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:chalkboard_/blackboard",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__manufactured:type-:metal"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:chalkboard_/blackboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:mirror"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:chalkboard_/blackboard",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__manufactured:type-:paint/_plaster/_enamel"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:chalkboard_/blackboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:paper"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:chalkboard_/blackboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:photograph/_painting"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:chalkboard_/blackboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:plastic__clear"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:chalkboard_/blackboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:plastic__nonclear"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:chalkboard_/blackboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:rubber/_latex"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:chalkboard_/blackboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:soap"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:chalkboard_/blackboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:sponge"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:chalkboard_/blackboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:styrofoam"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:chalkboard_/blackboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:tile"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:chalkboard_/blackboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:wallpaper"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:chalkboard_/blackboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:whiteboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:chalkboard_/blackboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:sand"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:chalkboard_/blackboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:snow"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:chalkboard_/blackboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:soil/mud"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:chalkboard_/blackboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:stone__natural"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:chalkboard_/blackboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:stone__polished"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:chalkboard_/blackboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:animal_skin"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:chalkboard_/blackboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:bone/_teeth/horn"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:chalkboard_/blackboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:foliage"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:chalkboard_/blackboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:food"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:chalkboard_/blackboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:fur"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:chalkboard_/blackboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:hair"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:chalkboard_/blackboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:pearl"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:chalkboard_/blackboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:skin/_lips"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:chalkboard_/blackboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wax"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:chalkboard_/blackboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wicker"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:chalkboard_/blackboard",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__organic:type-:wood"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:chalkboard_/blackboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wood__tree"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:chalkboard_/blackboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:clutter"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:chalkboard_/blackboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:i_cannot_tell"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:chalkboard_/blackboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:not_on_list"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:concrete",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:fire"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:concrete",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:liquid__nonwater"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:concrete",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:sky"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:concrete",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:water"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:concrete",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:brickwork"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:concrete",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:cardboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:concrete",
+ "occurence_log": 2,
+ "occurrence": 7,
+ "reference_text": "material:solid__manufactured:type-:carpet/rug"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:concrete",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:ceiling_tile"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:concrete",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__manufactured:type-:ceramic"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:concrete",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:chalkboard_/blackboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:concrete",
+ "occurence_log": 4,
+ "occurrence": 129,
+ "reference_text": "material:solid__manufactured:type-:concrete"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:concrete",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:cork/_corkboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:concrete",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:engineered_stone"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:concrete",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__manufactured:type-:fabric/cloth"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:concrete",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:fiberglass_wool"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:concrete",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:gemstone/_crystal"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:concrete",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:glass"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:concrete",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:leather"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:concrete",
+ "occurence_log": 1,
+ "occurrence": 2,
+ "reference_text": "material:solid__manufactured:type-:metal"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:concrete",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:mirror"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:concrete",
+ "occurence_log": 2,
+ "occurrence": 14,
+ "reference_text": "material:solid__manufactured:type-:paint/_plaster/_enamel"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:concrete",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:paper"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:concrete",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:photograph/_painting"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:concrete",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:plastic__clear"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:concrete",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:plastic__nonclear"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:concrete",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:rubber/_latex"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:concrete",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:soap"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:concrete",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:sponge"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:concrete",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:styrofoam"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:concrete",
+ "occurence_log": 2,
+ "occurrence": 15,
+ "reference_text": "material:solid__manufactured:type-:tile"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:concrete",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:wallpaper"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:concrete",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:whiteboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:concrete",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:sand"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:concrete",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:snow"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:concrete",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__natural:type-:soil/mud"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:concrete",
+ "occurence_log": 1,
+ "occurrence": 2,
+ "reference_text": "material:solid__natural:type-:stone__natural"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:concrete",
+ "occurence_log": 1,
+ "occurrence": 3,
+ "reference_text": "material:solid__natural:type-:stone__polished"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:concrete",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:animal_skin"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:concrete",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:bone/_teeth/horn"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:concrete",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:foliage"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:concrete",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:food"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:concrete",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:fur"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:concrete",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:hair"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:concrete",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:pearl"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:concrete",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:skin/_lips"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:concrete",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wax"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:concrete",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wicker"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:concrete",
+ "occurence_log": 1,
+ "occurrence": 2,
+ "reference_text": "material:solid__organic:type-:wood"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:concrete",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wood__tree"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:concrete",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:clutter"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:concrete",
+ "occurence_log": 1,
+ "occurrence": 6,
+ "reference_text": "material:special:type-:i_cannot_tell"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:concrete",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:not_on_list"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cork/_corkboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:fire"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cork/_corkboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:liquid__nonwater"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cork/_corkboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:sky"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cork/_corkboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:water"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cork/_corkboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:brickwork"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cork/_corkboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:cardboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cork/_corkboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:carpet/rug"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cork/_corkboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:ceiling_tile"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cork/_corkboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:ceramic"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cork/_corkboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:chalkboard_/blackboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cork/_corkboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:concrete"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cork/_corkboard",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__manufactured:type-:cork/_corkboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cork/_corkboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:engineered_stone"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cork/_corkboard",
+ "occurence_log": 1,
+ "occurrence": 2,
+ "reference_text": "material:solid__manufactured:type-:fabric/cloth"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cork/_corkboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:fiberglass_wool"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cork/_corkboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:gemstone/_crystal"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cork/_corkboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:glass"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cork/_corkboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:leather"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cork/_corkboard",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__manufactured:type-:metal"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cork/_corkboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:mirror"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cork/_corkboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:paint/_plaster/_enamel"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cork/_corkboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:paper"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cork/_corkboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:photograph/_painting"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cork/_corkboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:plastic__clear"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cork/_corkboard",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__manufactured:type-:plastic__nonclear"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cork/_corkboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:rubber/_latex"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cork/_corkboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:soap"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cork/_corkboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:sponge"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cork/_corkboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:styrofoam"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cork/_corkboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:tile"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cork/_corkboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:wallpaper"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cork/_corkboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:whiteboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cork/_corkboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:sand"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cork/_corkboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:snow"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cork/_corkboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:soil/mud"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cork/_corkboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:stone__natural"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cork/_corkboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:stone__polished"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cork/_corkboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:animal_skin"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cork/_corkboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:bone/_teeth/horn"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cork/_corkboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:foliage"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cork/_corkboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:food"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cork/_corkboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:fur"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cork/_corkboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:hair"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cork/_corkboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:pearl"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cork/_corkboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:skin/_lips"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cork/_corkboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wax"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cork/_corkboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wicker"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cork/_corkboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wood"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cork/_corkboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wood__tree"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cork/_corkboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:clutter"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cork/_corkboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:i_cannot_tell"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:cork/_corkboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:not_on_list"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:engineered_stone",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:fire"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:engineered_stone",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:liquid__nonwater"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:engineered_stone",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:sky"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:engineered_stone",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:water"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:engineered_stone",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:brickwork"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:engineered_stone",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:cardboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:engineered_stone",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__manufactured:type-:carpet/rug"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:engineered_stone",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:ceiling_tile"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:engineered_stone",
+ "occurence_log": 1,
+ "occurrence": 3,
+ "reference_text": "material:solid__manufactured:type-:ceramic"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:engineered_stone",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:chalkboard_/blackboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:engineered_stone",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:concrete"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:engineered_stone",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:cork/_corkboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:engineered_stone",
+ "occurence_log": 3,
+ "occurrence": 23,
+ "reference_text": "material:solid__manufactured:type-:engineered_stone"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:engineered_stone",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:fabric/cloth"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:engineered_stone",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:fiberglass_wool"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:engineered_stone",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:gemstone/_crystal"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:engineered_stone",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__manufactured:type-:glass"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:engineered_stone",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:leather"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:engineered_stone",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__manufactured:type-:metal"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:engineered_stone",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:mirror"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:engineered_stone",
+ "occurence_log": 2,
+ "occurrence": 7,
+ "reference_text": "material:solid__manufactured:type-:paint/_plaster/_enamel"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:engineered_stone",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:paper"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:engineered_stone",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:photograph/_painting"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:engineered_stone",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:plastic__clear"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:engineered_stone",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:plastic__nonclear"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:engineered_stone",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:rubber/_latex"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:engineered_stone",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:soap"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:engineered_stone",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:sponge"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:engineered_stone",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:styrofoam"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:engineered_stone",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__manufactured:type-:tile"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:engineered_stone",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:wallpaper"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:engineered_stone",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:whiteboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:engineered_stone",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:sand"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:engineered_stone",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:snow"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:engineered_stone",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:soil/mud"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:engineered_stone",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:stone__natural"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:engineered_stone",
+ "occurence_log": 2,
+ "occurrence": 11,
+ "reference_text": "material:solid__natural:type-:stone__polished"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:engineered_stone",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:animal_skin"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:engineered_stone",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:bone/_teeth/horn"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:engineered_stone",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:foliage"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:engineered_stone",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:food"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:engineered_stone",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:fur"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:engineered_stone",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:hair"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:engineered_stone",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:pearl"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:engineered_stone",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:skin/_lips"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:engineered_stone",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wax"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:engineered_stone",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wicker"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:engineered_stone",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__organic:type-:wood"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:engineered_stone",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wood__tree"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:engineered_stone",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:clutter"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:engineered_stone",
+ "occurence_log": 1,
+ "occurrence": 2,
+ "reference_text": "material:special:type-:i_cannot_tell"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:engineered_stone",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:not_on_list"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fabric/cloth",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:fire"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fabric/cloth",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:liquid__nonwater"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fabric/cloth",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:sky"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fabric/cloth",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:water"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fabric/cloth",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:brickwork"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fabric/cloth",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:cardboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fabric/cloth",
+ "occurence_log": 2,
+ "occurrence": 15,
+ "reference_text": "material:solid__manufactured:type-:carpet/rug"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fabric/cloth",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:ceiling_tile"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fabric/cloth",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:ceramic"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fabric/cloth",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:chalkboard_/blackboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fabric/cloth",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__manufactured:type-:concrete"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fabric/cloth",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:cork/_corkboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fabric/cloth",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:engineered_stone"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fabric/cloth",
+ "occurence_log": 9,
+ "occurrence": 8441,
+ "reference_text": "material:solid__manufactured:type-:fabric/cloth"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fabric/cloth",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:fiberglass_wool"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fabric/cloth",
+ "occurence_log": 1,
+ "occurrence": 2,
+ "reference_text": "material:solid__manufactured:type-:gemstone/_crystal"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fabric/cloth",
+ "occurence_log": 1,
+ "occurrence": 5,
+ "reference_text": "material:solid__manufactured:type-:glass"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fabric/cloth",
+ "occurence_log": 5,
+ "occurrence": 168,
+ "reference_text": "material:solid__manufactured:type-:leather"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fabric/cloth",
+ "occurence_log": 3,
+ "occurrence": 20,
+ "reference_text": "material:solid__manufactured:type-:metal"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fabric/cloth",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:mirror"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fabric/cloth",
+ "occurence_log": 3,
+ "occurrence": 34,
+ "reference_text": "material:solid__manufactured:type-:paint/_plaster/_enamel"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fabric/cloth",
+ "occurence_log": 2,
+ "occurrence": 10,
+ "reference_text": "material:solid__manufactured:type-:paper"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fabric/cloth",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:photograph/_painting"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fabric/cloth",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:plastic__clear"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fabric/cloth",
+ "occurence_log": 5,
+ "occurrence": 166,
+ "reference_text": "material:solid__manufactured:type-:plastic__nonclear"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fabric/cloth",
+ "occurence_log": 2,
+ "occurrence": 10,
+ "reference_text": "material:solid__manufactured:type-:rubber/_latex"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fabric/cloth",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:soap"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fabric/cloth",
+ "occurence_log": 1,
+ "occurrence": 3,
+ "reference_text": "material:solid__manufactured:type-:sponge"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fabric/cloth",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:styrofoam"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fabric/cloth",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:tile"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fabric/cloth",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:wallpaper"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fabric/cloth",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__manufactured:type-:whiteboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fabric/cloth",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:sand"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fabric/cloth",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:snow"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fabric/cloth",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:soil/mud"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fabric/cloth",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:stone__natural"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fabric/cloth",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__natural:type-:stone__polished"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fabric/cloth",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:animal_skin"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fabric/cloth",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:bone/_teeth/horn"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fabric/cloth",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:foliage"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fabric/cloth",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:food"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fabric/cloth",
+ "occurence_log": 1,
+ "occurrence": 6,
+ "reference_text": "material:solid__organic:type-:fur"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fabric/cloth",
+ "occurence_log": 1,
+ "occurrence": 5,
+ "reference_text": "material:solid__organic:type-:hair"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fabric/cloth",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:pearl"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fabric/cloth",
+ "occurence_log": 2,
+ "occurrence": 8,
+ "reference_text": "material:solid__organic:type-:skin/_lips"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fabric/cloth",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wax"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fabric/cloth",
+ "occurence_log": 1,
+ "occurrence": 3,
+ "reference_text": "material:solid__organic:type-:wicker"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fabric/cloth",
+ "occurence_log": 2,
+ "occurrence": 10,
+ "reference_text": "material:solid__organic:type-:wood"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fabric/cloth",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wood__tree"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fabric/cloth",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:clutter"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fabric/cloth",
+ "occurence_log": 4,
+ "occurrence": 129,
+ "reference_text": "material:special:type-:i_cannot_tell"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fabric/cloth",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:special:type-:not_on_list"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fiberglass_wool",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:fire"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fiberglass_wool",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:liquid__nonwater"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fiberglass_wool",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:sky"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fiberglass_wool",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:water"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fiberglass_wool",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:brickwork"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fiberglass_wool",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:cardboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fiberglass_wool",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:carpet/rug"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fiberglass_wool",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:ceiling_tile"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fiberglass_wool",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:ceramic"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fiberglass_wool",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:chalkboard_/blackboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fiberglass_wool",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:concrete"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fiberglass_wool",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:cork/_corkboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fiberglass_wool",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:engineered_stone"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fiberglass_wool",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__manufactured:type-:fabric/cloth"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fiberglass_wool",
+ "occurence_log": 1,
+ "occurrence": 2,
+ "reference_text": "material:solid__manufactured:type-:fiberglass_wool"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fiberglass_wool",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:gemstone/_crystal"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fiberglass_wool",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:glass"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fiberglass_wool",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:leather"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fiberglass_wool",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:metal"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fiberglass_wool",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:mirror"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fiberglass_wool",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:paint/_plaster/_enamel"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fiberglass_wool",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:paper"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fiberglass_wool",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:photograph/_painting"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fiberglass_wool",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:plastic__clear"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fiberglass_wool",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:plastic__nonclear"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fiberglass_wool",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:rubber/_latex"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fiberglass_wool",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:soap"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fiberglass_wool",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:sponge"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fiberglass_wool",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:styrofoam"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fiberglass_wool",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:tile"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fiberglass_wool",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:wallpaper"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fiberglass_wool",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:whiteboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fiberglass_wool",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:sand"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fiberglass_wool",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:snow"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fiberglass_wool",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:soil/mud"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fiberglass_wool",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:stone__natural"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fiberglass_wool",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:stone__polished"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fiberglass_wool",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:animal_skin"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fiberglass_wool",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:bone/_teeth/horn"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fiberglass_wool",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:foliage"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fiberglass_wool",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:food"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fiberglass_wool",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:fur"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fiberglass_wool",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:hair"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fiberglass_wool",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:pearl"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fiberglass_wool",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:skin/_lips"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fiberglass_wool",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wax"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fiberglass_wool",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wicker"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fiberglass_wool",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wood"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fiberglass_wool",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wood__tree"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fiberglass_wool",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:clutter"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fiberglass_wool",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:special:type-:i_cannot_tell"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:fiberglass_wool",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:not_on_list"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:gemstone/_crystal",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:fire"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:gemstone/_crystal",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:liquid__nonwater"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:gemstone/_crystal",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:sky"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:gemstone/_crystal",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:water"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:gemstone/_crystal",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:brickwork"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:gemstone/_crystal",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:cardboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:gemstone/_crystal",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:carpet/rug"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:gemstone/_crystal",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:ceiling_tile"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:gemstone/_crystal",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:ceramic"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:gemstone/_crystal",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:chalkboard_/blackboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:gemstone/_crystal",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:concrete"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:gemstone/_crystal",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:cork/_corkboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:gemstone/_crystal",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:engineered_stone"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:gemstone/_crystal",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__manufactured:type-:fabric/cloth"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:gemstone/_crystal",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:fiberglass_wool"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:gemstone/_crystal",
+ "occurence_log": 1,
+ "occurrence": 5,
+ "reference_text": "material:solid__manufactured:type-:gemstone/_crystal"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:gemstone/_crystal",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:glass"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:gemstone/_crystal",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:leather"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:gemstone/_crystal",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__manufactured:type-:metal"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:gemstone/_crystal",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:mirror"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:gemstone/_crystal",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:paint/_plaster/_enamel"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:gemstone/_crystal",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:paper"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:gemstone/_crystal",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:photograph/_painting"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:gemstone/_crystal",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:plastic__clear"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:gemstone/_crystal",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:plastic__nonclear"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:gemstone/_crystal",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:rubber/_latex"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:gemstone/_crystal",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:soap"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:gemstone/_crystal",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:sponge"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:gemstone/_crystal",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:styrofoam"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:gemstone/_crystal",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:tile"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:gemstone/_crystal",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:wallpaper"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:gemstone/_crystal",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:whiteboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:gemstone/_crystal",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:sand"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:gemstone/_crystal",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:snow"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:gemstone/_crystal",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:soil/mud"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:gemstone/_crystal",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:stone__natural"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:gemstone/_crystal",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:stone__polished"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:gemstone/_crystal",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:animal_skin"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:gemstone/_crystal",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:bone/_teeth/horn"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:gemstone/_crystal",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:foliage"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:gemstone/_crystal",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:food"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:gemstone/_crystal",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:fur"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:gemstone/_crystal",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:hair"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:gemstone/_crystal",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:pearl"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:gemstone/_crystal",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:skin/_lips"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:gemstone/_crystal",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wax"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:gemstone/_crystal",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wicker"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:gemstone/_crystal",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wood"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:gemstone/_crystal",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wood__tree"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:gemstone/_crystal",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:clutter"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:gemstone/_crystal",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:i_cannot_tell"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:gemstone/_crystal",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:not_on_list"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:glass",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:fire"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:glass",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:liquid__nonwater"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:glass",
+ "occurence_log": 1,
+ "occurrence": 2,
+ "reference_text": "material:non-solid:type-:sky"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:glass",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:water"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:glass",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__manufactured:type-:brickwork"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:glass",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:cardboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:glass",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__manufactured:type-:carpet/rug"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:glass",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:ceiling_tile"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:glass",
+ "occurence_log": 1,
+ "occurrence": 6,
+ "reference_text": "material:solid__manufactured:type-:ceramic"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:glass",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__manufactured:type-:chalkboard_/blackboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:glass",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:concrete"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:glass",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:cork/_corkboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:glass",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:engineered_stone"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:glass",
+ "occurence_log": 2,
+ "occurrence": 7,
+ "reference_text": "material:solid__manufactured:type-:fabric/cloth"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:glass",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:fiberglass_wool"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:glass",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:gemstone/_crystal"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:glass",
+ "occurence_log": 8,
+ "occurrence": 5710,
+ "reference_text": "material:solid__manufactured:type-:glass"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:glass",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__manufactured:type-:leather"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:glass",
+ "occurence_log": 2,
+ "occurrence": 12,
+ "reference_text": "material:solid__manufactured:type-:metal"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:glass",
+ "occurence_log": 2,
+ "occurrence": 7,
+ "reference_text": "material:solid__manufactured:type-:mirror"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:glass",
+ "occurence_log": 4,
+ "occurrence": 79,
+ "reference_text": "material:solid__manufactured:type-:paint/_plaster/_enamel"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:glass",
+ "occurence_log": 2,
+ "occurrence": 12,
+ "reference_text": "material:solid__manufactured:type-:paper"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:glass",
+ "occurence_log": 3,
+ "occurrence": 21,
+ "reference_text": "material:solid__manufactured:type-:photograph/_painting"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:glass",
+ "occurence_log": 2,
+ "occurrence": 10,
+ "reference_text": "material:solid__manufactured:type-:plastic__clear"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:glass",
+ "occurence_log": 4,
+ "occurrence": 74,
+ "reference_text": "material:solid__manufactured:type-:plastic__nonclear"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:glass",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:rubber/_latex"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:glass",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:soap"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:glass",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:sponge"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:glass",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:styrofoam"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:glass",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:tile"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:glass",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:wallpaper"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:glass",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__manufactured:type-:whiteboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:glass",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:sand"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:glass",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:snow"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:glass",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:soil/mud"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:glass",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:stone__natural"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:glass",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:stone__polished"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:glass",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:animal_skin"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:glass",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:bone/_teeth/horn"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:glass",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__organic:type-:foliage"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:glass",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:food"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:glass",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:fur"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:glass",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:hair"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:glass",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:pearl"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:glass",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:skin/_lips"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:glass",
+ "occurence_log": 1,
+ "occurrence": 4,
+ "reference_text": "material:solid__organic:type-:wax"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:glass",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wicker"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:glass",
+ "occurence_log": 1,
+ "occurrence": 2,
+ "reference_text": "material:solid__organic:type-:wood"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:glass",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wood__tree"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:glass",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:clutter"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:glass",
+ "occurence_log": 6,
+ "occurrence": 559,
+ "reference_text": "material:special:type-:i_cannot_tell"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:glass",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:not_on_list"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:leather",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:fire"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:leather",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:liquid__nonwater"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:leather",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:sky"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:leather",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:water"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:leather",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:brickwork"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:leather",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:cardboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:leather",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:carpet/rug"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:leather",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:ceiling_tile"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:leather",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:ceramic"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:leather",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:chalkboard_/blackboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:leather",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:concrete"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:leather",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:cork/_corkboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:leather",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:engineered_stone"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:leather",
+ "occurence_log": 5,
+ "occurrence": 149,
+ "reference_text": "material:solid__manufactured:type-:fabric/cloth"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:leather",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:fiberglass_wool"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:leather",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:gemstone/_crystal"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:leather",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__manufactured:type-:glass"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:leather",
+ "occurence_log": 6,
+ "occurrence": 1035,
+ "reference_text": "material:solid__manufactured:type-:leather"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:leather",
+ "occurence_log": 1,
+ "occurrence": 3,
+ "reference_text": "material:solid__manufactured:type-:metal"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:leather",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:mirror"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:leather",
+ "occurence_log": 1,
+ "occurrence": 2,
+ "reference_text": "material:solid__manufactured:type-:paint/_plaster/_enamel"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:leather",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:paper"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:leather",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:photograph/_painting"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:leather",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:plastic__clear"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:leather",
+ "occurence_log": 2,
+ "occurrence": 12,
+ "reference_text": "material:solid__manufactured:type-:plastic__nonclear"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:leather",
+ "occurence_log": 3,
+ "occurrence": 33,
+ "reference_text": "material:solid__manufactured:type-:rubber/_latex"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:leather",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:soap"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:leather",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:sponge"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:leather",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:styrofoam"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:leather",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:tile"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:leather",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:wallpaper"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:leather",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:whiteboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:leather",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:sand"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:leather",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:snow"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:leather",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:soil/mud"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:leather",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__natural:type-:stone__natural"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:leather",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:stone__polished"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:leather",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:animal_skin"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:leather",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:bone/_teeth/horn"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:leather",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:foliage"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:leather",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:food"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:leather",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:fur"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:leather",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:hair"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:leather",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:pearl"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:leather",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__organic:type-:skin/_lips"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:leather",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wax"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:leather",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wicker"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:leather",
+ "occurence_log": 1,
+ "occurrence": 3,
+ "reference_text": "material:solid__organic:type-:wood"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:leather",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wood__tree"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:leather",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:clutter"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:leather",
+ "occurence_log": 3,
+ "occurrence": 22,
+ "reference_text": "material:special:type-:i_cannot_tell"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:leather",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:not_on_list"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:metal",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:fire"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:metal",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:liquid__nonwater"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:metal",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:sky"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:metal",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:water"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:metal",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:brickwork"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:metal",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:cardboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:metal",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:carpet/rug"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:metal",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__manufactured:type-:ceiling_tile"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:metal",
+ "occurence_log": 1,
+ "occurrence": 3,
+ "reference_text": "material:solid__manufactured:type-:ceramic"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:metal",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:chalkboard_/blackboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:metal",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__manufactured:type-:concrete"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:metal",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:cork/_corkboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:metal",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__manufactured:type-:engineered_stone"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:metal",
+ "occurence_log": 2,
+ "occurrence": 13,
+ "reference_text": "material:solid__manufactured:type-:fabric/cloth"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:metal",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:fiberglass_wool"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:metal",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:gemstone/_crystal"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:metal",
+ "occurence_log": 2,
+ "occurrence": 15,
+ "reference_text": "material:solid__manufactured:type-:glass"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:metal",
+ "occurence_log": 1,
+ "occurrence": 4,
+ "reference_text": "material:solid__manufactured:type-:leather"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:metal",
+ "occurence_log": 8,
+ "occurrence": 7538,
+ "reference_text": "material:solid__manufactured:type-:metal"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:metal",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__manufactured:type-:mirror"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:metal",
+ "occurence_log": 6,
+ "occurrence": 786,
+ "reference_text": "material:solid__manufactured:type-:paint/_plaster/_enamel"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:metal",
+ "occurence_log": 2,
+ "occurrence": 11,
+ "reference_text": "material:solid__manufactured:type-:paper"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:metal",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:photograph/_painting"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:metal",
+ "occurence_log": 1,
+ "occurrence": 2,
+ "reference_text": "material:solid__manufactured:type-:plastic__clear"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:metal",
+ "occurence_log": 5,
+ "occurrence": 212,
+ "reference_text": "material:solid__manufactured:type-:plastic__nonclear"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:metal",
+ "occurence_log": 2,
+ "occurrence": 9,
+ "reference_text": "material:solid__manufactured:type-:rubber/_latex"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:metal",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:soap"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:metal",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:sponge"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:metal",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:styrofoam"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:metal",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__manufactured:type-:tile"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:metal",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:wallpaper"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:metal",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:whiteboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:metal",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:sand"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:metal",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:snow"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:metal",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:soil/mud"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:metal",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:stone__natural"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:metal",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__natural:type-:stone__polished"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:metal",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:animal_skin"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:metal",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:bone/_teeth/horn"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:metal",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:foliage"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:metal",
+ "occurence_log": 1,
+ "occurrence": 3,
+ "reference_text": "material:solid__organic:type-:food"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:metal",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:fur"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:metal",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:hair"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:metal",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:pearl"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:metal",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__organic:type-:skin/_lips"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:metal",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wax"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:metal",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wicker"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:metal",
+ "occurence_log": 3,
+ "occurrence": 29,
+ "reference_text": "material:solid__organic:type-:wood"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:metal",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wood__tree"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:metal",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:clutter"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:metal",
+ "occurence_log": 5,
+ "occurrence": 173,
+ "reference_text": "material:special:type-:i_cannot_tell"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:metal",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:special:type-:not_on_list"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:mirror",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:fire"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:mirror",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:liquid__nonwater"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:mirror",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:sky"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:mirror",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:water"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:mirror",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:brickwork"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:mirror",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:cardboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:mirror",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:carpet/rug"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:mirror",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:ceiling_tile"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:mirror",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:ceramic"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:mirror",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:chalkboard_/blackboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:mirror",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__manufactured:type-:concrete"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:mirror",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:cork/_corkboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:mirror",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:engineered_stone"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:mirror",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:fabric/cloth"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:mirror",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:fiberglass_wool"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:mirror",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:gemstone/_crystal"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:mirror",
+ "occurence_log": 2,
+ "occurrence": 12,
+ "reference_text": "material:solid__manufactured:type-:glass"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:mirror",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:leather"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:mirror",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__manufactured:type-:metal"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:mirror",
+ "occurence_log": 4,
+ "occurrence": 65,
+ "reference_text": "material:solid__manufactured:type-:mirror"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:mirror",
+ "occurence_log": 1,
+ "occurrence": 4,
+ "reference_text": "material:solid__manufactured:type-:paint/_plaster/_enamel"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:mirror",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__manufactured:type-:paper"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:mirror",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:photograph/_painting"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:mirror",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:plastic__clear"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:mirror",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:plastic__nonclear"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:mirror",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:rubber/_latex"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:mirror",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:soap"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:mirror",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:sponge"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:mirror",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:styrofoam"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:mirror",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:tile"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:mirror",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:wallpaper"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:mirror",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:whiteboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:mirror",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:sand"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:mirror",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:snow"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:mirror",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:soil/mud"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:mirror",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:stone__natural"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:mirror",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:stone__polished"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:mirror",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:animal_skin"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:mirror",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:bone/_teeth/horn"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:mirror",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:foliage"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:mirror",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:food"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:mirror",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:fur"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:mirror",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:hair"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:mirror",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:pearl"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:mirror",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:skin/_lips"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:mirror",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wax"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:mirror",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wicker"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:mirror",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wood"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:mirror",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wood__tree"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:mirror",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:clutter"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:mirror",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:i_cannot_tell"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:mirror",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:not_on_list"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paint/_plaster/_enamel",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:fire"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paint/_plaster/_enamel",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:liquid__nonwater"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paint/_plaster/_enamel",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:sky"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paint/_plaster/_enamel",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:water"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paint/_plaster/_enamel",
+ "occurence_log": 1,
+ "occurrence": 2,
+ "reference_text": "material:solid__manufactured:type-:brickwork"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paint/_plaster/_enamel",
+ "occurence_log": 1,
+ "occurrence": 2,
+ "reference_text": "material:solid__manufactured:type-:cardboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paint/_plaster/_enamel",
+ "occurence_log": 2,
+ "occurrence": 8,
+ "reference_text": "material:solid__manufactured:type-:carpet/rug"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paint/_plaster/_enamel",
+ "occurence_log": 2,
+ "occurrence": 10,
+ "reference_text": "material:solid__manufactured:type-:ceiling_tile"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paint/_plaster/_enamel",
+ "occurence_log": 3,
+ "occurrence": 33,
+ "reference_text": "material:solid__manufactured:type-:ceramic"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paint/_plaster/_enamel",
+ "occurence_log": 1,
+ "occurrence": 2,
+ "reference_text": "material:solid__manufactured:type-:chalkboard_/blackboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paint/_plaster/_enamel",
+ "occurence_log": 2,
+ "occurrence": 13,
+ "reference_text": "material:solid__manufactured:type-:concrete"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paint/_plaster/_enamel",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:cork/_corkboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paint/_plaster/_enamel",
+ "occurence_log": 1,
+ "occurrence": 3,
+ "reference_text": "material:solid__manufactured:type-:engineered_stone"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paint/_plaster/_enamel",
+ "occurence_log": 3,
+ "occurrence": 53,
+ "reference_text": "material:solid__manufactured:type-:fabric/cloth"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paint/_plaster/_enamel",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:fiberglass_wool"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paint/_plaster/_enamel",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:gemstone/_crystal"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paint/_plaster/_enamel",
+ "occurence_log": 3,
+ "occurrence": 42,
+ "reference_text": "material:solid__manufactured:type-:glass"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paint/_plaster/_enamel",
+ "occurence_log": 2,
+ "occurrence": 7,
+ "reference_text": "material:solid__manufactured:type-:leather"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paint/_plaster/_enamel",
+ "occurence_log": 5,
+ "occurrence": 359,
+ "reference_text": "material:solid__manufactured:type-:metal"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paint/_plaster/_enamel",
+ "occurence_log": 1,
+ "occurrence": 2,
+ "reference_text": "material:solid__manufactured:type-:mirror"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paint/_plaster/_enamel",
+ "occurence_log": 9,
+ "occurrence": 9529,
+ "reference_text": "material:solid__manufactured:type-:paint/_plaster/_enamel"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paint/_plaster/_enamel",
+ "occurence_log": 3,
+ "occurrence": 31,
+ "reference_text": "material:solid__manufactured:type-:paper"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paint/_plaster/_enamel",
+ "occurence_log": 3,
+ "occurrence": 22,
+ "reference_text": "material:solid__manufactured:type-:photograph/_painting"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paint/_plaster/_enamel",
+ "occurence_log": 2,
+ "occurrence": 7,
+ "reference_text": "material:solid__manufactured:type-:plastic__clear"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paint/_plaster/_enamel",
+ "occurence_log": 6,
+ "occurrence": 422,
+ "reference_text": "material:solid__manufactured:type-:plastic__nonclear"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paint/_plaster/_enamel",
+ "occurence_log": 2,
+ "occurrence": 12,
+ "reference_text": "material:solid__manufactured:type-:rubber/_latex"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paint/_plaster/_enamel",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:soap"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paint/_plaster/_enamel",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:sponge"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paint/_plaster/_enamel",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:styrofoam"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paint/_plaster/_enamel",
+ "occurence_log": 3,
+ "occurrence": 22,
+ "reference_text": "material:solid__manufactured:type-:tile"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paint/_plaster/_enamel",
+ "occurence_log": 1,
+ "occurrence": 4,
+ "reference_text": "material:solid__manufactured:type-:wallpaper"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paint/_plaster/_enamel",
+ "occurence_log": 1,
+ "occurrence": 3,
+ "reference_text": "material:solid__manufactured:type-:whiteboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paint/_plaster/_enamel",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:sand"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paint/_plaster/_enamel",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:snow"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paint/_plaster/_enamel",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:soil/mud"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paint/_plaster/_enamel",
+ "occurence_log": 1,
+ "occurrence": 3,
+ "reference_text": "material:solid__natural:type-:stone__natural"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paint/_plaster/_enamel",
+ "occurence_log": 3,
+ "occurrence": 21,
+ "reference_text": "material:solid__natural:type-:stone__polished"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paint/_plaster/_enamel",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:animal_skin"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paint/_plaster/_enamel",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:bone/_teeth/horn"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paint/_plaster/_enamel",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__organic:type-:foliage"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paint/_plaster/_enamel",
+ "occurence_log": 1,
+ "occurrence": 2,
+ "reference_text": "material:solid__organic:type-:food"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paint/_plaster/_enamel",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:fur"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paint/_plaster/_enamel",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:hair"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paint/_plaster/_enamel",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:pearl"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paint/_plaster/_enamel",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:skin/_lips"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paint/_plaster/_enamel",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wax"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paint/_plaster/_enamel",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wicker"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paint/_plaster/_enamel",
+ "occurence_log": 5,
+ "occurrence": 256,
+ "reference_text": "material:solid__organic:type-:wood"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paint/_plaster/_enamel",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__organic:type-:wood__tree"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paint/_plaster/_enamel",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:clutter"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paint/_plaster/_enamel",
+ "occurence_log": 6,
+ "occurrence": 539,
+ "reference_text": "material:special:type-:i_cannot_tell"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paint/_plaster/_enamel",
+ "occurence_log": 1,
+ "occurrence": 5,
+ "reference_text": "material:special:type-:not_on_list"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paper",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:fire"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paper",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:liquid__nonwater"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paper",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:sky"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paper",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:water"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paper",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:brickwork"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paper",
+ "occurence_log": 2,
+ "occurrence": 14,
+ "reference_text": "material:solid__manufactured:type-:cardboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paper",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__manufactured:type-:carpet/rug"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paper",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:ceiling_tile"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paper",
+ "occurence_log": 1,
+ "occurrence": 3,
+ "reference_text": "material:solid__manufactured:type-:ceramic"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paper",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:chalkboard_/blackboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paper",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:concrete"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paper",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:cork/_corkboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paper",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:engineered_stone"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paper",
+ "occurence_log": 2,
+ "occurrence": 10,
+ "reference_text": "material:solid__manufactured:type-:fabric/cloth"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paper",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:fiberglass_wool"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paper",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:gemstone/_crystal"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paper",
+ "occurence_log": 1,
+ "occurrence": 6,
+ "reference_text": "material:solid__manufactured:type-:glass"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paper",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__manufactured:type-:leather"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paper",
+ "occurence_log": 1,
+ "occurrence": 3,
+ "reference_text": "material:solid__manufactured:type-:metal"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paper",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:mirror"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paper",
+ "occurence_log": 3,
+ "occurrence": 26,
+ "reference_text": "material:solid__manufactured:type-:paint/_plaster/_enamel"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paper",
+ "occurence_log": 8,
+ "occurrence": 4155,
+ "reference_text": "material:solid__manufactured:type-:paper"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paper",
+ "occurence_log": 3,
+ "occurrence": 29,
+ "reference_text": "material:solid__manufactured:type-:photograph/_painting"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paper",
+ "occurence_log": 2,
+ "occurrence": 7,
+ "reference_text": "material:solid__manufactured:type-:plastic__clear"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paper",
+ "occurence_log": 4,
+ "occurrence": 101,
+ "reference_text": "material:solid__manufactured:type-:plastic__nonclear"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paper",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:rubber/_latex"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paper",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:soap"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paper",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:sponge"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paper",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:styrofoam"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paper",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:tile"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paper",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:wallpaper"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paper",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__manufactured:type-:whiteboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paper",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:sand"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paper",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:snow"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paper",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:soil/mud"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paper",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:stone__natural"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paper",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:stone__polished"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paper",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:animal_skin"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paper",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:bone/_teeth/horn"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paper",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__organic:type-:foliage"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paper",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:food"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paper",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:fur"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paper",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:hair"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paper",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:pearl"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paper",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:skin/_lips"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paper",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wax"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paper",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wicker"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paper",
+ "occurence_log": 1,
+ "occurrence": 3,
+ "reference_text": "material:solid__organic:type-:wood"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paper",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wood__tree"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paper",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:clutter"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paper",
+ "occurence_log": 4,
+ "occurrence": 58,
+ "reference_text": "material:special:type-:i_cannot_tell"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:paper",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:not_on_list"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:photograph/_painting",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:fire"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:photograph/_painting",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:liquid__nonwater"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:photograph/_painting",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:sky"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:photograph/_painting",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:water"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:photograph/_painting",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:brickwork"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:photograph/_painting",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:cardboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:photograph/_painting",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:carpet/rug"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:photograph/_painting",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:ceiling_tile"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:photograph/_painting",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:ceramic"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:photograph/_painting",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:chalkboard_/blackboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:photograph/_painting",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:concrete"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:photograph/_painting",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:cork/_corkboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:photograph/_painting",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:engineered_stone"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:photograph/_painting",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:fabric/cloth"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:photograph/_painting",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:fiberglass_wool"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:photograph/_painting",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:gemstone/_crystal"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:photograph/_painting",
+ "occurence_log": 3,
+ "occurrence": 21,
+ "reference_text": "material:solid__manufactured:type-:glass"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:photograph/_painting",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:leather"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:photograph/_painting",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:metal"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:photograph/_painting",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:mirror"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:photograph/_painting",
+ "occurence_log": 3,
+ "occurrence": 26,
+ "reference_text": "material:solid__manufactured:type-:paint/_plaster/_enamel"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:photograph/_painting",
+ "occurence_log": 3,
+ "occurrence": 24,
+ "reference_text": "material:solid__manufactured:type-:paper"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:photograph/_painting",
+ "occurence_log": 5,
+ "occurrence": 152,
+ "reference_text": "material:solid__manufactured:type-:photograph/_painting"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:photograph/_painting",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__manufactured:type-:plastic__clear"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:photograph/_painting",
+ "occurence_log": 1,
+ "occurrence": 5,
+ "reference_text": "material:solid__manufactured:type-:plastic__nonclear"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:photograph/_painting",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:rubber/_latex"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:photograph/_painting",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:soap"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:photograph/_painting",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:sponge"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:photograph/_painting",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:styrofoam"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:photograph/_painting",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:tile"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:photograph/_painting",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:wallpaper"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:photograph/_painting",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:whiteboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:photograph/_painting",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:sand"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:photograph/_painting",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:snow"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:photograph/_painting",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:soil/mud"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:photograph/_painting",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:stone__natural"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:photograph/_painting",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:stone__polished"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:photograph/_painting",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:animal_skin"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:photograph/_painting",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:bone/_teeth/horn"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:photograph/_painting",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:foliage"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:photograph/_painting",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:food"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:photograph/_painting",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:fur"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:photograph/_painting",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:hair"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:photograph/_painting",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:pearl"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:photograph/_painting",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:skin/_lips"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:photograph/_painting",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wax"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:photograph/_painting",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wicker"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:photograph/_painting",
+ "occurence_log": 2,
+ "occurrence": 10,
+ "reference_text": "material:solid__organic:type-:wood"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:photograph/_painting",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wood__tree"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:photograph/_painting",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:clutter"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:photograph/_painting",
+ "occurence_log": 1,
+ "occurrence": 5,
+ "reference_text": "material:special:type-:i_cannot_tell"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:photograph/_painting",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:not_on_list"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__clear",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:fire"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__clear",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:liquid__nonwater"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__clear",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:sky"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__clear",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:water"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__clear",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:brickwork"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__clear",
+ "occurence_log": 1,
+ "occurrence": 2,
+ "reference_text": "material:solid__manufactured:type-:cardboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__clear",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:carpet/rug"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__clear",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:ceiling_tile"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__clear",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__manufactured:type-:ceramic"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__clear",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:chalkboard_/blackboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__clear",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:concrete"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__clear",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:cork/_corkboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__clear",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:engineered_stone"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__clear",
+ "occurence_log": 1,
+ "occurrence": 4,
+ "reference_text": "material:solid__manufactured:type-:fabric/cloth"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__clear",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:fiberglass_wool"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__clear",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:gemstone/_crystal"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__clear",
+ "occurence_log": 3,
+ "occurrence": 30,
+ "reference_text": "material:solid__manufactured:type-:glass"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__clear",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__manufactured:type-:leather"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__clear",
+ "occurence_log": 1,
+ "occurrence": 2,
+ "reference_text": "material:solid__manufactured:type-:metal"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__clear",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:mirror"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__clear",
+ "occurence_log": 2,
+ "occurrence": 12,
+ "reference_text": "material:solid__manufactured:type-:paint/_plaster/_enamel"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__clear",
+ "occurence_log": 2,
+ "occurrence": 7,
+ "reference_text": "material:solid__manufactured:type-:paper"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__clear",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:photograph/_painting"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__clear",
+ "occurence_log": 6,
+ "occurrence": 789,
+ "reference_text": "material:solid__manufactured:type-:plastic__clear"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__clear",
+ "occurence_log": 4,
+ "occurrence": 110,
+ "reference_text": "material:solid__manufactured:type-:plastic__nonclear"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__clear",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:rubber/_latex"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__clear",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:soap"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__clear",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:sponge"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__clear",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:styrofoam"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__clear",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:tile"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__clear",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:wallpaper"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__clear",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:whiteboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__clear",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:sand"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__clear",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:snow"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__clear",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:soil/mud"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__clear",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:stone__natural"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__clear",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:stone__polished"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__clear",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:animal_skin"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__clear",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:bone/_teeth/horn"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__clear",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:foliage"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__clear",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:food"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__clear",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:fur"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__clear",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:hair"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__clear",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:pearl"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__clear",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:skin/_lips"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__clear",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wax"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__clear",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wicker"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__clear",
+ "occurence_log": 1,
+ "occurrence": 3,
+ "reference_text": "material:solid__organic:type-:wood"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__clear",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wood__tree"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__clear",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:clutter"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__clear",
+ "occurence_log": 3,
+ "occurrence": 26,
+ "reference_text": "material:special:type-:i_cannot_tell"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__clear",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:not_on_list"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__nonclear",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:fire"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__nonclear",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:liquid__nonwater"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__nonclear",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:sky"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__nonclear",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:water"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__nonclear",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:brickwork"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__nonclear",
+ "occurence_log": 3,
+ "occurrence": 26,
+ "reference_text": "material:solid__manufactured:type-:cardboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__nonclear",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:carpet/rug"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__nonclear",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__manufactured:type-:ceiling_tile"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__nonclear",
+ "occurence_log": 3,
+ "occurrence": 20,
+ "reference_text": "material:solid__manufactured:type-:ceramic"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__nonclear",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:chalkboard_/blackboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__nonclear",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:concrete"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__nonclear",
+ "occurence_log": 1,
+ "occurrence": 2,
+ "reference_text": "material:solid__manufactured:type-:cork/_corkboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__nonclear",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__manufactured:type-:engineered_stone"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__nonclear",
+ "occurence_log": 4,
+ "occurrence": 115,
+ "reference_text": "material:solid__manufactured:type-:fabric/cloth"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__nonclear",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:fiberglass_wool"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__nonclear",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:gemstone/_crystal"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__nonclear",
+ "occurence_log": 4,
+ "occurrence": 67,
+ "reference_text": "material:solid__manufactured:type-:glass"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__nonclear",
+ "occurence_log": 3,
+ "occurrence": 53,
+ "reference_text": "material:solid__manufactured:type-:leather"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__nonclear",
+ "occurence_log": 4,
+ "occurrence": 140,
+ "reference_text": "material:solid__manufactured:type-:metal"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__nonclear",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:mirror"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__nonclear",
+ "occurence_log": 6,
+ "occurrence": 527,
+ "reference_text": "material:solid__manufactured:type-:paint/_plaster/_enamel"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__nonclear",
+ "occurence_log": 4,
+ "occurrence": 92,
+ "reference_text": "material:solid__manufactured:type-:paper"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__nonclear",
+ "occurence_log": 2,
+ "occurrence": 12,
+ "reference_text": "material:solid__manufactured:type-:photograph/_painting"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__nonclear",
+ "occurence_log": 5,
+ "occurrence": 151,
+ "reference_text": "material:solid__manufactured:type-:plastic__clear"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__nonclear",
+ "occurence_log": 9,
+ "occurrence": 10479,
+ "reference_text": "material:solid__manufactured:type-:plastic__nonclear"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__nonclear",
+ "occurence_log": 3,
+ "occurrence": 31,
+ "reference_text": "material:solid__manufactured:type-:rubber/_latex"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__nonclear",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:soap"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__nonclear",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:sponge"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__nonclear",
+ "occurence_log": 1,
+ "occurrence": 3,
+ "reference_text": "material:solid__manufactured:type-:styrofoam"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__nonclear",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:tile"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__nonclear",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:wallpaper"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__nonclear",
+ "occurence_log": 1,
+ "occurrence": 2,
+ "reference_text": "material:solid__manufactured:type-:whiteboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__nonclear",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:sand"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__nonclear",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:snow"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__nonclear",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:soil/mud"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__nonclear",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:stone__natural"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__nonclear",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:stone__polished"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__nonclear",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__organic:type-:animal_skin"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__nonclear",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:bone/_teeth/horn"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__nonclear",
+ "occurence_log": 1,
+ "occurrence": 5,
+ "reference_text": "material:solid__organic:type-:foliage"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__nonclear",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:food"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__nonclear",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:fur"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__nonclear",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:hair"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__nonclear",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:pearl"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__nonclear",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:skin/_lips"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__nonclear",
+ "occurence_log": 2,
+ "occurrence": 11,
+ "reference_text": "material:solid__organic:type-:wax"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__nonclear",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__organic:type-:wicker"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__nonclear",
+ "occurence_log": 3,
+ "occurrence": 39,
+ "reference_text": "material:solid__organic:type-:wood"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__nonclear",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wood__tree"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__nonclear",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:clutter"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__nonclear",
+ "occurence_log": 6,
+ "occurrence": 450,
+ "reference_text": "material:special:type-:i_cannot_tell"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:plastic__nonclear",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:special:type-:not_on_list"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:rubber/_latex",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:fire"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:rubber/_latex",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:liquid__nonwater"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:rubber/_latex",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:sky"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:rubber/_latex",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:water"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:rubber/_latex",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:brickwork"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:rubber/_latex",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:cardboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:rubber/_latex",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__manufactured:type-:carpet/rug"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:rubber/_latex",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:ceiling_tile"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:rubber/_latex",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:ceramic"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:rubber/_latex",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:chalkboard_/blackboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:rubber/_latex",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:concrete"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:rubber/_latex",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:cork/_corkboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:rubber/_latex",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:engineered_stone"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:rubber/_latex",
+ "occurence_log": 2,
+ "occurrence": 15,
+ "reference_text": "material:solid__manufactured:type-:fabric/cloth"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:rubber/_latex",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:fiberglass_wool"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:rubber/_latex",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:gemstone/_crystal"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:rubber/_latex",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:glass"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:rubber/_latex",
+ "occurence_log": 3,
+ "occurrence": 22,
+ "reference_text": "material:solid__manufactured:type-:leather"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:rubber/_latex",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__manufactured:type-:metal"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:rubber/_latex",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__manufactured:type-:mirror"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:rubber/_latex",
+ "occurence_log": 1,
+ "occurrence": 6,
+ "reference_text": "material:solid__manufactured:type-:paint/_plaster/_enamel"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:rubber/_latex",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:paper"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:rubber/_latex",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:photograph/_painting"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:rubber/_latex",
+ "occurence_log": 1,
+ "occurrence": 2,
+ "reference_text": "material:solid__manufactured:type-:plastic__clear"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:rubber/_latex",
+ "occurence_log": 4,
+ "occurrence": 72,
+ "reference_text": "material:solid__manufactured:type-:plastic__nonclear"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:rubber/_latex",
+ "occurence_log": 5,
+ "occurrence": 268,
+ "reference_text": "material:solid__manufactured:type-:rubber/_latex"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:rubber/_latex",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:soap"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:rubber/_latex",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:sponge"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:rubber/_latex",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:styrofoam"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:rubber/_latex",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:tile"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:rubber/_latex",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:wallpaper"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:rubber/_latex",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:whiteboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:rubber/_latex",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:sand"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:rubber/_latex",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:snow"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:rubber/_latex",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:soil/mud"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:rubber/_latex",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:stone__natural"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:rubber/_latex",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:stone__polished"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:rubber/_latex",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:animal_skin"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:rubber/_latex",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:bone/_teeth/horn"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:rubber/_latex",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:foliage"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:rubber/_latex",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:food"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:rubber/_latex",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:fur"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:rubber/_latex",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:hair"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:rubber/_latex",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:pearl"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:rubber/_latex",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:skin/_lips"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:rubber/_latex",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wax"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:rubber/_latex",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wicker"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:rubber/_latex",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wood"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:rubber/_latex",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wood__tree"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:rubber/_latex",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:clutter"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:rubber/_latex",
+ "occurence_log": 2,
+ "occurrence": 12,
+ "reference_text": "material:special:type-:i_cannot_tell"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:rubber/_latex",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:not_on_list"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:soap",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:fire"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:soap",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:liquid__nonwater"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:soap",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:sky"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:soap",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:water"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:soap",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:brickwork"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:soap",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:cardboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:soap",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:carpet/rug"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:soap",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:ceiling_tile"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:soap",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:ceramic"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:soap",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:chalkboard_/blackboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:soap",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:concrete"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:soap",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:cork/_corkboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:soap",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:engineered_stone"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:soap",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:fabric/cloth"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:soap",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:fiberglass_wool"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:soap",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:gemstone/_crystal"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:soap",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:glass"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:soap",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:leather"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:soap",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:metal"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:soap",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:mirror"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:soap",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:paint/_plaster/_enamel"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:soap",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:paper"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:soap",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:photograph/_painting"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:soap",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:plastic__clear"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:soap",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__manufactured:type-:plastic__nonclear"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:soap",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:rubber/_latex"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:soap",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__manufactured:type-:soap"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:soap",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:sponge"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:soap",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:styrofoam"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:soap",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:tile"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:soap",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:wallpaper"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:soap",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:whiteboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:soap",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:sand"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:soap",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:snow"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:soap",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:soil/mud"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:soap",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:stone__natural"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:soap",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:stone__polished"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:soap",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:animal_skin"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:soap",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:bone/_teeth/horn"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:soap",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:foliage"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:soap",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:food"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:soap",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:fur"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:soap",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:hair"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:soap",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:pearl"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:soap",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:skin/_lips"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:soap",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wax"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:soap",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wicker"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:soap",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wood"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:soap",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wood__tree"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:soap",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:clutter"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:soap",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:i_cannot_tell"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:soap",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:not_on_list"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:sponge",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:fire"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:sponge",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:liquid__nonwater"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:sponge",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:sky"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:sponge",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:water"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:sponge",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:brickwork"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:sponge",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:cardboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:sponge",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:carpet/rug"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:sponge",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:ceiling_tile"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:sponge",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:ceramic"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:sponge",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:chalkboard_/blackboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:sponge",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:concrete"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:sponge",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:cork/_corkboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:sponge",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:engineered_stone"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:sponge",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__manufactured:type-:fabric/cloth"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:sponge",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:fiberglass_wool"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:sponge",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:gemstone/_crystal"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:sponge",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:glass"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:sponge",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:leather"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:sponge",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:metal"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:sponge",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:mirror"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:sponge",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:paint/_plaster/_enamel"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:sponge",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:paper"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:sponge",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:photograph/_painting"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:sponge",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:plastic__clear"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:sponge",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:plastic__nonclear"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:sponge",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:rubber/_latex"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:sponge",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:soap"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:sponge",
+ "occurence_log": 1,
+ "occurrence": 4,
+ "reference_text": "material:solid__manufactured:type-:sponge"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:sponge",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:styrofoam"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:sponge",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:tile"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:sponge",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:wallpaper"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:sponge",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:whiteboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:sponge",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:sand"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:sponge",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:snow"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:sponge",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:soil/mud"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:sponge",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:stone__natural"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:sponge",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:stone__polished"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:sponge",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:animal_skin"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:sponge",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:bone/_teeth/horn"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:sponge",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:foliage"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:sponge",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:food"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:sponge",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:fur"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:sponge",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:hair"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:sponge",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:pearl"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:sponge",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:skin/_lips"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:sponge",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wax"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:sponge",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wicker"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:sponge",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wood"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:sponge",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wood__tree"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:sponge",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:clutter"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:sponge",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:i_cannot_tell"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:sponge",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:not_on_list"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:styrofoam",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:fire"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:styrofoam",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:liquid__nonwater"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:styrofoam",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:sky"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:styrofoam",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:water"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:styrofoam",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:brickwork"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:styrofoam",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:cardboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:styrofoam",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:carpet/rug"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:styrofoam",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:ceiling_tile"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:styrofoam",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:ceramic"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:styrofoam",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:chalkboard_/blackboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:styrofoam",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:concrete"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:styrofoam",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:cork/_corkboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:styrofoam",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:engineered_stone"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:styrofoam",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__manufactured:type-:fabric/cloth"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:styrofoam",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:fiberglass_wool"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:styrofoam",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:gemstone/_crystal"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:styrofoam",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:glass"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:styrofoam",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:leather"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:styrofoam",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:metal"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:styrofoam",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:mirror"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:styrofoam",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:paint/_plaster/_enamel"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:styrofoam",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:paper"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:styrofoam",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:photograph/_painting"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:styrofoam",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:plastic__clear"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:styrofoam",
+ "occurence_log": 1,
+ "occurrence": 5,
+ "reference_text": "material:solid__manufactured:type-:plastic__nonclear"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:styrofoam",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:rubber/_latex"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:styrofoam",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:soap"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:styrofoam",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__manufactured:type-:sponge"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:styrofoam",
+ "occurence_log": 2,
+ "occurrence": 9,
+ "reference_text": "material:solid__manufactured:type-:styrofoam"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:styrofoam",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:tile"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:styrofoam",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:wallpaper"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:styrofoam",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:whiteboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:styrofoam",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:sand"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:styrofoam",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:snow"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:styrofoam",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:soil/mud"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:styrofoam",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:stone__natural"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:styrofoam",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:stone__polished"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:styrofoam",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:animal_skin"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:styrofoam",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:bone/_teeth/horn"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:styrofoam",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:foliage"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:styrofoam",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:food"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:styrofoam",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:fur"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:styrofoam",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:hair"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:styrofoam",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:pearl"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:styrofoam",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:skin/_lips"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:styrofoam",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wax"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:styrofoam",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wicker"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:styrofoam",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wood"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:styrofoam",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wood__tree"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:styrofoam",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:clutter"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:styrofoam",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:i_cannot_tell"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:styrofoam",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:not_on_list"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:tile",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:fire"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:tile",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:liquid__nonwater"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:tile",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:sky"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:tile",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:water"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:tile",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:brickwork"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:tile",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:cardboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:tile",
+ "occurence_log": 3,
+ "occurrence": 21,
+ "reference_text": "material:solid__manufactured:type-:carpet/rug"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:tile",
+ "occurence_log": 1,
+ "occurrence": 4,
+ "reference_text": "material:solid__manufactured:type-:ceiling_tile"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:tile",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:ceramic"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:tile",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:chalkboard_/blackboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:tile",
+ "occurence_log": 1,
+ "occurrence": 6,
+ "reference_text": "material:solid__manufactured:type-:concrete"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:tile",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:cork/_corkboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:tile",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__manufactured:type-:engineered_stone"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:tile",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:fabric/cloth"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:tile",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:fiberglass_wool"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:tile",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:gemstone/_crystal"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:tile",
+ "occurence_log": 1,
+ "occurrence": 2,
+ "reference_text": "material:solid__manufactured:type-:glass"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:tile",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:leather"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:tile",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:metal"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:tile",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:mirror"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:tile",
+ "occurence_log": 3,
+ "occurrence": 31,
+ "reference_text": "material:solid__manufactured:type-:paint/_plaster/_enamel"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:tile",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__manufactured:type-:paper"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:tile",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:photograph/_painting"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:tile",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:plastic__clear"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:tile",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:plastic__nonclear"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:tile",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:rubber/_latex"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:tile",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:soap"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:tile",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:sponge"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:tile",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:styrofoam"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:tile",
+ "occurence_log": 6,
+ "occurrence": 437,
+ "reference_text": "material:solid__manufactured:type-:tile"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:tile",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:wallpaper"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:tile",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:whiteboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:tile",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:sand"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:tile",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:snow"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:tile",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:soil/mud"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:tile",
+ "occurence_log": 3,
+ "occurrence": 46,
+ "reference_text": "material:solid__natural:type-:stone__natural"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:tile",
+ "occurence_log": 3,
+ "occurrence": 30,
+ "reference_text": "material:solid__natural:type-:stone__polished"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:tile",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:animal_skin"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:tile",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:bone/_teeth/horn"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:tile",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:foliage"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:tile",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:food"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:tile",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:fur"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:tile",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:hair"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:tile",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:pearl"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:tile",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:skin/_lips"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:tile",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wax"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:tile",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wicker"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:tile",
+ "occurence_log": 2,
+ "occurrence": 10,
+ "reference_text": "material:solid__organic:type-:wood"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:tile",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wood__tree"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:tile",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:clutter"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:tile",
+ "occurence_log": 2,
+ "occurrence": 15,
+ "reference_text": "material:special:type-:i_cannot_tell"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:tile",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:special:type-:not_on_list"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:wallpaper",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:fire"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:wallpaper",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:liquid__nonwater"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:wallpaper",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:sky"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:wallpaper",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:water"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:wallpaper",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:brickwork"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:wallpaper",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:cardboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:wallpaper",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:carpet/rug"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:wallpaper",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:ceiling_tile"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:wallpaper",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:ceramic"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:wallpaper",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:chalkboard_/blackboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:wallpaper",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:concrete"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:wallpaper",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:cork/_corkboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:wallpaper",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:engineered_stone"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:wallpaper",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:fabric/cloth"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:wallpaper",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:fiberglass_wool"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:wallpaper",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:gemstone/_crystal"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:wallpaper",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:glass"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:wallpaper",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:leather"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:wallpaper",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:metal"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:wallpaper",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:mirror"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:wallpaper",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:paint/_plaster/_enamel"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:wallpaper",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:paper"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:wallpaper",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:photograph/_painting"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:wallpaper",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:plastic__clear"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:wallpaper",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:plastic__nonclear"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:wallpaper",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:rubber/_latex"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:wallpaper",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:soap"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:wallpaper",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:sponge"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:wallpaper",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:styrofoam"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:wallpaper",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:tile"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:wallpaper",
+ "occurence_log": 1,
+ "occurrence": 3,
+ "reference_text": "material:solid__manufactured:type-:wallpaper"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:wallpaper",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:whiteboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:wallpaper",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:sand"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:wallpaper",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:snow"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:wallpaper",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:soil/mud"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:wallpaper",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:stone__natural"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:wallpaper",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:stone__polished"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:wallpaper",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:animal_skin"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:wallpaper",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:bone/_teeth/horn"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:wallpaper",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:foliage"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:wallpaper",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:food"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:wallpaper",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:fur"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:wallpaper",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:hair"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:wallpaper",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:pearl"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:wallpaper",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:skin/_lips"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:wallpaper",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wax"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:wallpaper",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wicker"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:wallpaper",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wood"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:wallpaper",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wood__tree"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:wallpaper",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:clutter"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:wallpaper",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:i_cannot_tell"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:wallpaper",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:not_on_list"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:whiteboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:fire"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:whiteboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:liquid__nonwater"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:whiteboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:sky"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:whiteboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:water"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:whiteboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:brickwork"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:whiteboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:cardboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:whiteboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:carpet/rug"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:whiteboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:ceiling_tile"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:whiteboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:ceramic"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:whiteboard",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__manufactured:type-:chalkboard_/blackboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:whiteboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:concrete"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:whiteboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:cork/_corkboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:whiteboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:engineered_stone"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:whiteboard",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__manufactured:type-:fabric/cloth"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:whiteboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:fiberglass_wool"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:whiteboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:gemstone/_crystal"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:whiteboard",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__manufactured:type-:glass"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:whiteboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:leather"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:whiteboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:metal"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:whiteboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:mirror"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:whiteboard",
+ "occurence_log": 1,
+ "occurrence": 4,
+ "reference_text": "material:solid__manufactured:type-:paint/_plaster/_enamel"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:whiteboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:paper"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:whiteboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:photograph/_painting"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:whiteboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:plastic__clear"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:whiteboard",
+ "occurence_log": 2,
+ "occurrence": 17,
+ "reference_text": "material:solid__manufactured:type-:plastic__nonclear"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:whiteboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:rubber/_latex"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:whiteboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:soap"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:whiteboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:sponge"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:whiteboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:styrofoam"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:whiteboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:tile"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:whiteboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:wallpaper"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:whiteboard",
+ "occurence_log": 3,
+ "occurrence": 20,
+ "reference_text": "material:solid__manufactured:type-:whiteboard"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:whiteboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:sand"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:whiteboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:snow"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:whiteboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:soil/mud"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:whiteboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:stone__natural"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:whiteboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:stone__polished"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:whiteboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:animal_skin"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:whiteboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:bone/_teeth/horn"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:whiteboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:foliage"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:whiteboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:food"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:whiteboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:fur"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:whiteboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:hair"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:whiteboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:pearl"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:whiteboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:skin/_lips"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:whiteboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wax"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:whiteboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wicker"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:whiteboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wood"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:whiteboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wood__tree"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:whiteboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:clutter"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:whiteboard",
+ "occurence_log": 1,
+ "occurrence": 2,
+ "reference_text": "material:special:type-:i_cannot_tell"
+ },
+ {
+ "annotation_text": "material:solid__manufactured:type-:whiteboard",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:not_on_list"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:sand",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:fire"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:sand",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:liquid__nonwater"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:sand",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:sky"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:sand",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:water"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:sand",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__manufactured:type-:brickwork"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:sand",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:cardboard"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:sand",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:carpet/rug"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:sand",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:ceiling_tile"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:sand",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:ceramic"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:sand",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:chalkboard_/blackboard"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:sand",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:concrete"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:sand",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:cork/_corkboard"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:sand",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:engineered_stone"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:sand",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:fabric/cloth"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:sand",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:fiberglass_wool"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:sand",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:gemstone/_crystal"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:sand",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:glass"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:sand",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:leather"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:sand",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:metal"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:sand",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:mirror"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:sand",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:paint/_plaster/_enamel"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:sand",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:paper"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:sand",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:photograph/_painting"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:sand",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:plastic__clear"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:sand",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:plastic__nonclear"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:sand",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:rubber/_latex"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:sand",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:soap"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:sand",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:sponge"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:sand",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:styrofoam"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:sand",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:tile"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:sand",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:wallpaper"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:sand",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:whiteboard"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:sand",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__natural:type-:sand"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:sand",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:snow"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:sand",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:soil/mud"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:sand",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:stone__natural"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:sand",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:stone__polished"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:sand",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:animal_skin"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:sand",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:bone/_teeth/horn"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:sand",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:foliage"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:sand",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:food"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:sand",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:fur"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:sand",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:hair"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:sand",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:pearl"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:sand",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:skin/_lips"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:sand",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wax"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:sand",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wicker"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:sand",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wood"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:sand",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wood__tree"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:sand",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:clutter"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:sand",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:special:type-:i_cannot_tell"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:sand",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:not_on_list"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:snow",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:fire"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:snow",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:liquid__nonwater"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:snow",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:sky"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:snow",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:water"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:snow",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:brickwork"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:snow",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:cardboard"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:snow",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:carpet/rug"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:snow",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:ceiling_tile"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:snow",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:ceramic"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:snow",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:chalkboard_/blackboard"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:snow",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:concrete"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:snow",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:cork/_corkboard"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:snow",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:engineered_stone"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:snow",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:fabric/cloth"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:snow",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:fiberglass_wool"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:snow",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:gemstone/_crystal"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:snow",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:glass"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:snow",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:leather"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:snow",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:metal"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:snow",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:mirror"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:snow",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:paint/_plaster/_enamel"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:snow",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:paper"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:snow",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:photograph/_painting"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:snow",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:plastic__clear"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:snow",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:plastic__nonclear"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:snow",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:rubber/_latex"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:snow",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:soap"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:snow",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:sponge"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:snow",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:styrofoam"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:snow",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:tile"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:snow",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:wallpaper"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:snow",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:whiteboard"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:snow",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:sand"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:snow",
+ "occurence_log": 1,
+ "occurrence": 2,
+ "reference_text": "material:solid__natural:type-:snow"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:snow",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:soil/mud"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:snow",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:stone__natural"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:snow",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:stone__polished"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:snow",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:animal_skin"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:snow",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:bone/_teeth/horn"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:snow",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:foliage"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:snow",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:food"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:snow",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:fur"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:snow",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:hair"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:snow",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:pearl"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:snow",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:skin/_lips"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:snow",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wax"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:snow",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wicker"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:snow",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wood"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:snow",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wood__tree"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:snow",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:clutter"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:snow",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:i_cannot_tell"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:snow",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:not_on_list"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:soil/mud",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:fire"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:soil/mud",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:liquid__nonwater"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:soil/mud",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:sky"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:soil/mud",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:water"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:soil/mud",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:brickwork"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:soil/mud",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:cardboard"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:soil/mud",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:carpet/rug"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:soil/mud",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:ceiling_tile"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:soil/mud",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:ceramic"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:soil/mud",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:chalkboard_/blackboard"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:soil/mud",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__manufactured:type-:concrete"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:soil/mud",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:cork/_corkboard"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:soil/mud",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:engineered_stone"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:soil/mud",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:fabric/cloth"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:soil/mud",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:fiberglass_wool"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:soil/mud",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:gemstone/_crystal"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:soil/mud",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:glass"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:soil/mud",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:leather"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:soil/mud",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:metal"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:soil/mud",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:mirror"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:soil/mud",
+ "occurence_log": 1,
+ "occurrence": 2,
+ "reference_text": "material:solid__manufactured:type-:paint/_plaster/_enamel"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:soil/mud",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:paper"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:soil/mud",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:photograph/_painting"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:soil/mud",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:plastic__clear"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:soil/mud",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:plastic__nonclear"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:soil/mud",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:rubber/_latex"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:soil/mud",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:soap"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:soil/mud",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:sponge"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:soil/mud",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:styrofoam"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:soil/mud",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:tile"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:soil/mud",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:wallpaper"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:soil/mud",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:whiteboard"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:soil/mud",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:sand"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:soil/mud",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:snow"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:soil/mud",
+ "occurence_log": 3,
+ "occurrence": 28,
+ "reference_text": "material:solid__natural:type-:soil/mud"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:soil/mud",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:stone__natural"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:soil/mud",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:stone__polished"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:soil/mud",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:animal_skin"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:soil/mud",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:bone/_teeth/horn"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:soil/mud",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:foliage"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:soil/mud",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:food"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:soil/mud",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:fur"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:soil/mud",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:hair"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:soil/mud",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:pearl"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:soil/mud",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__organic:type-:skin/_lips"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:soil/mud",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wax"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:soil/mud",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wicker"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:soil/mud",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wood"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:soil/mud",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wood__tree"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:soil/mud",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:clutter"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:soil/mud",
+ "occurence_log": 1,
+ "occurrence": 3,
+ "reference_text": "material:special:type-:i_cannot_tell"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:soil/mud",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:special:type-:not_on_list"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__natural",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:fire"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__natural",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:liquid__nonwater"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__natural",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:sky"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__natural",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:water"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__natural",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:brickwork"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__natural",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:cardboard"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__natural",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:carpet/rug"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__natural",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:ceiling_tile"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__natural",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:ceramic"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__natural",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:chalkboard_/blackboard"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__natural",
+ "occurence_log": 1,
+ "occurrence": 2,
+ "reference_text": "material:solid__manufactured:type-:concrete"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__natural",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:cork/_corkboard"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__natural",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:engineered_stone"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__natural",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:fabric/cloth"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__natural",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:fiberglass_wool"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__natural",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:gemstone/_crystal"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__natural",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:glass"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__natural",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:leather"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__natural",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:metal"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__natural",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:mirror"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__natural",
+ "occurence_log": 1,
+ "occurrence": 4,
+ "reference_text": "material:solid__manufactured:type-:paint/_plaster/_enamel"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__natural",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:paper"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__natural",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:photograph/_painting"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__natural",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:plastic__clear"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__natural",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:plastic__nonclear"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__natural",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:rubber/_latex"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__natural",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:soap"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__natural",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:sponge"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__natural",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:styrofoam"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__natural",
+ "occurence_log": 1,
+ "occurrence": 5,
+ "reference_text": "material:solid__manufactured:type-:tile"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__natural",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:wallpaper"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__natural",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:whiteboard"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__natural",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:sand"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__natural",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:snow"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__natural",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:soil/mud"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__natural",
+ "occurence_log": 3,
+ "occurrence": 35,
+ "reference_text": "material:solid__natural:type-:stone__natural"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__natural",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:stone__polished"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__natural",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:animal_skin"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__natural",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:bone/_teeth/horn"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__natural",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:foliage"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__natural",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:food"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__natural",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:fur"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__natural",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:hair"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__natural",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:pearl"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__natural",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:skin/_lips"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__natural",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wax"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__natural",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wicker"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__natural",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wood"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__natural",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wood__tree"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__natural",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:clutter"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__natural",
+ "occurence_log": 1,
+ "occurrence": 3,
+ "reference_text": "material:special:type-:i_cannot_tell"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__natural",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:not_on_list"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__polished",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:fire"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__polished",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:liquid__nonwater"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__polished",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:sky"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__polished",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:water"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__polished",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:brickwork"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__polished",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:cardboard"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__polished",
+ "occurence_log": 1,
+ "occurrence": 2,
+ "reference_text": "material:solid__manufactured:type-:carpet/rug"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__polished",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:ceiling_tile"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__polished",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:ceramic"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__polished",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:chalkboard_/blackboard"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__polished",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__manufactured:type-:concrete"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__polished",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:cork/_corkboard"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__polished",
+ "occurence_log": 1,
+ "occurrence": 5,
+ "reference_text": "material:solid__manufactured:type-:engineered_stone"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__polished",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:fabric/cloth"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__polished",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:fiberglass_wool"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__polished",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:gemstone/_crystal"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__polished",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:glass"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__polished",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:leather"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__polished",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__manufactured:type-:metal"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__polished",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:mirror"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__polished",
+ "occurence_log": 1,
+ "occurrence": 5,
+ "reference_text": "material:solid__manufactured:type-:paint/_plaster/_enamel"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__polished",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:paper"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__polished",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:photograph/_painting"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__polished",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:plastic__clear"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__polished",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:plastic__nonclear"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__polished",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:rubber/_latex"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__polished",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:soap"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__polished",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:sponge"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__polished",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:styrofoam"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__polished",
+ "occurence_log": 3,
+ "occurrence": 20,
+ "reference_text": "material:solid__manufactured:type-:tile"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__polished",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:wallpaper"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__polished",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:whiteboard"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__polished",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:sand"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__polished",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:snow"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__polished",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:soil/mud"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__polished",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__natural:type-:stone__natural"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__polished",
+ "occurence_log": 4,
+ "occurrence": 88,
+ "reference_text": "material:solid__natural:type-:stone__polished"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__polished",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:animal_skin"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__polished",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:bone/_teeth/horn"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__polished",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:foliage"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__polished",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:food"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__polished",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:fur"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__polished",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:hair"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__polished",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:pearl"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__polished",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:skin/_lips"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__polished",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wax"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__polished",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wicker"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__polished",
+ "occurence_log": 1,
+ "occurrence": 4,
+ "reference_text": "material:solid__organic:type-:wood"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__polished",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wood__tree"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__polished",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:clutter"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__polished",
+ "occurence_log": 1,
+ "occurrence": 5,
+ "reference_text": "material:special:type-:i_cannot_tell"
+ },
+ {
+ "annotation_text": "material:solid__natural:type-:stone__polished",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:not_on_list"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:animal_skin",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:fire"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:animal_skin",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:liquid__nonwater"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:animal_skin",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:sky"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:animal_skin",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:water"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:animal_skin",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:brickwork"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:animal_skin",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:cardboard"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:animal_skin",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:carpet/rug"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:animal_skin",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:ceiling_tile"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:animal_skin",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:ceramic"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:animal_skin",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:chalkboard_/blackboard"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:animal_skin",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:concrete"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:animal_skin",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:cork/_corkboard"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:animal_skin",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:engineered_stone"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:animal_skin",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:fabric/cloth"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:animal_skin",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:fiberglass_wool"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:animal_skin",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:gemstone/_crystal"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:animal_skin",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:glass"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:animal_skin",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:leather"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:animal_skin",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:metal"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:animal_skin",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:mirror"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:animal_skin",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:paint/_plaster/_enamel"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:animal_skin",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:paper"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:animal_skin",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:photograph/_painting"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:animal_skin",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:plastic__clear"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:animal_skin",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__manufactured:type-:plastic__nonclear"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:animal_skin",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:rubber/_latex"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:animal_skin",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:soap"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:animal_skin",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:sponge"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:animal_skin",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:styrofoam"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:animal_skin",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:tile"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:animal_skin",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:wallpaper"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:animal_skin",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:whiteboard"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:animal_skin",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:sand"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:animal_skin",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:snow"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:animal_skin",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:soil/mud"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:animal_skin",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:stone__natural"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:animal_skin",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:stone__polished"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:animal_skin",
+ "occurence_log": 3,
+ "occurrence": 46,
+ "reference_text": "material:solid__organic:type-:animal_skin"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:animal_skin",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:bone/_teeth/horn"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:animal_skin",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:foliage"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:animal_skin",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:food"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:animal_skin",
+ "occurence_log": 1,
+ "occurrence": 3,
+ "reference_text": "material:solid__organic:type-:fur"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:animal_skin",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:hair"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:animal_skin",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:pearl"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:animal_skin",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__organic:type-:skin/_lips"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:animal_skin",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wax"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:animal_skin",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wicker"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:animal_skin",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wood"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:animal_skin",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wood__tree"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:animal_skin",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:clutter"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:animal_skin",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:i_cannot_tell"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:animal_skin",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:not_on_list"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:bone/_teeth/horn",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:fire"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:bone/_teeth/horn",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:liquid__nonwater"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:bone/_teeth/horn",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:sky"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:bone/_teeth/horn",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:water"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:bone/_teeth/horn",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:brickwork"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:bone/_teeth/horn",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:cardboard"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:bone/_teeth/horn",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:carpet/rug"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:bone/_teeth/horn",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:ceiling_tile"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:bone/_teeth/horn",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:ceramic"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:bone/_teeth/horn",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:chalkboard_/blackboard"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:bone/_teeth/horn",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:concrete"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:bone/_teeth/horn",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:cork/_corkboard"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:bone/_teeth/horn",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:engineered_stone"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:bone/_teeth/horn",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:fabric/cloth"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:bone/_teeth/horn",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:fiberglass_wool"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:bone/_teeth/horn",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:gemstone/_crystal"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:bone/_teeth/horn",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:glass"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:bone/_teeth/horn",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:leather"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:bone/_teeth/horn",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:metal"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:bone/_teeth/horn",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:mirror"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:bone/_teeth/horn",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:paint/_plaster/_enamel"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:bone/_teeth/horn",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:paper"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:bone/_teeth/horn",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:photograph/_painting"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:bone/_teeth/horn",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:plastic__clear"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:bone/_teeth/horn",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:plastic__nonclear"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:bone/_teeth/horn",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:rubber/_latex"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:bone/_teeth/horn",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:soap"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:bone/_teeth/horn",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:sponge"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:bone/_teeth/horn",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:styrofoam"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:bone/_teeth/horn",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:tile"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:bone/_teeth/horn",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:wallpaper"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:bone/_teeth/horn",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:whiteboard"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:bone/_teeth/horn",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:sand"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:bone/_teeth/horn",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:snow"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:bone/_teeth/horn",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:soil/mud"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:bone/_teeth/horn",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:stone__natural"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:bone/_teeth/horn",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:stone__polished"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:bone/_teeth/horn",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:animal_skin"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:bone/_teeth/horn",
+ "occurence_log": 5,
+ "occurrence": 188,
+ "reference_text": "material:solid__organic:type-:bone/_teeth/horn"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:bone/_teeth/horn",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:foliage"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:bone/_teeth/horn",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:food"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:bone/_teeth/horn",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:fur"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:bone/_teeth/horn",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:hair"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:bone/_teeth/horn",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:pearl"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:bone/_teeth/horn",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:skin/_lips"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:bone/_teeth/horn",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wax"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:bone/_teeth/horn",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wicker"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:bone/_teeth/horn",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wood"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:bone/_teeth/horn",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wood__tree"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:bone/_teeth/horn",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:clutter"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:bone/_teeth/horn",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:i_cannot_tell"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:bone/_teeth/horn",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:not_on_list"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:foliage",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:fire"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:foliage",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:liquid__nonwater"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:foliage",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:sky"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:foliage",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:water"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:foliage",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:brickwork"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:foliage",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:cardboard"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:foliage",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:carpet/rug"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:foliage",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:ceiling_tile"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:foliage",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:ceramic"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:foliage",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:chalkboard_/blackboard"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:foliage",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:concrete"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:foliage",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:cork/_corkboard"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:foliage",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:engineered_stone"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:foliage",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:fabric/cloth"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:foliage",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:fiberglass_wool"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:foliage",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:gemstone/_crystal"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:foliage",
+ "occurence_log": 1,
+ "occurrence": 3,
+ "reference_text": "material:solid__manufactured:type-:glass"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:foliage",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:leather"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:foliage",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:metal"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:foliage",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:mirror"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:foliage",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:paint/_plaster/_enamel"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:foliage",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:paper"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:foliage",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:photograph/_painting"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:foliage",
+ "occurence_log": 1,
+ "occurrence": 4,
+ "reference_text": "material:solid__manufactured:type-:plastic__clear"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:foliage",
+ "occurence_log": 2,
+ "occurrence": 11,
+ "reference_text": "material:solid__manufactured:type-:plastic__nonclear"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:foliage",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:rubber/_latex"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:foliage",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:soap"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:foliage",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:sponge"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:foliage",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:styrofoam"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:foliage",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:tile"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:foliage",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:wallpaper"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:foliage",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:whiteboard"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:foliage",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:sand"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:foliage",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:snow"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:foliage",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:soil/mud"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:foliage",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:stone__natural"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:foliage",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:stone__polished"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:foliage",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:animal_skin"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:foliage",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:bone/_teeth/horn"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:foliage",
+ "occurence_log": 6,
+ "occurrence": 521,
+ "reference_text": "material:solid__organic:type-:foliage"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:foliage",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__organic:type-:food"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:foliage",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:fur"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:foliage",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:hair"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:foliage",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:pearl"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:foliage",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:skin/_lips"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:foliage",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wax"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:foliage",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wicker"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:foliage",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wood"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:foliage",
+ "occurence_log": 3,
+ "occurrence": 25,
+ "reference_text": "material:solid__organic:type-:wood__tree"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:foliage",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:clutter"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:foliage",
+ "occurence_log": 2,
+ "occurrence": 9,
+ "reference_text": "material:special:type-:i_cannot_tell"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:foliage",
+ "occurence_log": 2,
+ "occurrence": 18,
+ "reference_text": "material:special:type-:not_on_list"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:food",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:fire"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:food",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:non-solid:type-:liquid__nonwater"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:food",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:sky"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:food",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:water"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:food",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:brickwork"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:food",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:cardboard"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:food",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:carpet/rug"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:food",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:ceiling_tile"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:food",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:ceramic"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:food",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:chalkboard_/blackboard"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:food",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:concrete"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:food",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:cork/_corkboard"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:food",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:engineered_stone"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:food",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:fabric/cloth"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:food",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:fiberglass_wool"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:food",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:gemstone/_crystal"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:food",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__manufactured:type-:glass"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:food",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:leather"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:food",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:metal"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:food",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:mirror"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:food",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:paint/_plaster/_enamel"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:food",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:paper"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:food",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:photograph/_painting"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:food",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:plastic__clear"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:food",
+ "occurence_log": 1,
+ "occurrence": 5,
+ "reference_text": "material:solid__manufactured:type-:plastic__nonclear"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:food",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:rubber/_latex"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:food",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:soap"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:food",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:sponge"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:food",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:styrofoam"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:food",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:tile"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:food",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:wallpaper"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:food",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:whiteboard"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:food",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:sand"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:food",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:snow"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:food",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:soil/mud"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:food",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:stone__natural"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:food",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:stone__polished"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:food",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:animal_skin"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:food",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:bone/_teeth/horn"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:food",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__organic:type-:foliage"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:food",
+ "occurence_log": 5,
+ "occurrence": 291,
+ "reference_text": "material:solid__organic:type-:food"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:food",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:fur"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:food",
+ "occurence_log": 1,
+ "occurrence": 2,
+ "reference_text": "material:solid__organic:type-:hair"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:food",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:pearl"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:food",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:skin/_lips"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:food",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wax"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:food",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wicker"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:food",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wood"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:food",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wood__tree"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:food",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:clutter"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:food",
+ "occurence_log": 1,
+ "occurrence": 3,
+ "reference_text": "material:special:type-:i_cannot_tell"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:food",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:not_on_list"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:fur",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:fire"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:fur",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:liquid__nonwater"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:fur",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:sky"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:fur",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:water"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:fur",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:brickwork"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:fur",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:cardboard"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:fur",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:carpet/rug"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:fur",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:ceiling_tile"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:fur",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:ceramic"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:fur",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:chalkboard_/blackboard"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:fur",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:concrete"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:fur",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:cork/_corkboard"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:fur",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:engineered_stone"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:fur",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:fabric/cloth"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:fur",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:fiberglass_wool"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:fur",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:gemstone/_crystal"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:fur",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:glass"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:fur",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:leather"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:fur",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:metal"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:fur",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:mirror"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:fur",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:paint/_plaster/_enamel"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:fur",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:paper"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:fur",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:photograph/_painting"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:fur",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:plastic__clear"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:fur",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__manufactured:type-:plastic__nonclear"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:fur",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:rubber/_latex"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:fur",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:soap"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:fur",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:sponge"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:fur",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:styrofoam"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:fur",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:tile"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:fur",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:wallpaper"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:fur",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:whiteboard"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:fur",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:sand"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:fur",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:snow"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:fur",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:soil/mud"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:fur",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:stone__natural"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:fur",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:stone__polished"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:fur",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:animal_skin"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:fur",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:bone/_teeth/horn"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:fur",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:foliage"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:fur",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:food"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:fur",
+ "occurence_log": 3,
+ "occurrence": 29,
+ "reference_text": "material:solid__organic:type-:fur"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:fur",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:hair"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:fur",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:pearl"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:fur",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:skin/_lips"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:fur",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wax"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:fur",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wicker"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:fur",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wood"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:fur",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wood__tree"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:fur",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:clutter"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:fur",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:i_cannot_tell"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:fur",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:not_on_list"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:hair",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:fire"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:hair",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:liquid__nonwater"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:hair",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:sky"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:hair",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:water"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:hair",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:brickwork"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:hair",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:cardboard"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:hair",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:carpet/rug"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:hair",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:ceiling_tile"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:hair",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:ceramic"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:hair",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:chalkboard_/blackboard"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:hair",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:concrete"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:hair",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:cork/_corkboard"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:hair",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:engineered_stone"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:hair",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__manufactured:type-:fabric/cloth"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:hair",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:fiberglass_wool"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:hair",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:gemstone/_crystal"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:hair",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:glass"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:hair",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__manufactured:type-:leather"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:hair",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:metal"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:hair",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:mirror"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:hair",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:paint/_plaster/_enamel"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:hair",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:paper"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:hair",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:photograph/_painting"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:hair",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:plastic__clear"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:hair",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__manufactured:type-:plastic__nonclear"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:hair",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:rubber/_latex"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:hair",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:soap"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:hair",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:sponge"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:hair",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:styrofoam"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:hair",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:tile"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:hair",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:wallpaper"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:hair",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:whiteboard"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:hair",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:sand"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:hair",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:snow"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:hair",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:soil/mud"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:hair",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:stone__natural"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:hair",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:stone__polished"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:hair",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:animal_skin"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:hair",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:bone/_teeth/horn"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:hair",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:foliage"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:hair",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:food"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:hair",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:fur"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:hair",
+ "occurence_log": 8,
+ "occurrence": 3964,
+ "reference_text": "material:solid__organic:type-:hair"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:hair",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:pearl"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:hair",
+ "occurence_log": 2,
+ "occurrence": 11,
+ "reference_text": "material:solid__organic:type-:skin/_lips"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:hair",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wax"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:hair",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wicker"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:hair",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wood"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:hair",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wood__tree"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:hair",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:clutter"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:hair",
+ "occurence_log": 2,
+ "occurrence": 16,
+ "reference_text": "material:special:type-:i_cannot_tell"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:hair",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:not_on_list"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:pearl",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:fire"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:pearl",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:liquid__nonwater"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:pearl",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:sky"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:pearl",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:water"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:pearl",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:brickwork"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:pearl",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:cardboard"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:pearl",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:carpet/rug"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:pearl",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:ceiling_tile"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:pearl",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:ceramic"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:pearl",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:chalkboard_/blackboard"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:pearl",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:concrete"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:pearl",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:cork/_corkboard"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:pearl",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:engineered_stone"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:pearl",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:fabric/cloth"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:pearl",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:fiberglass_wool"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:pearl",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:gemstone/_crystal"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:pearl",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:glass"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:pearl",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:leather"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:pearl",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__manufactured:type-:metal"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:pearl",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:mirror"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:pearl",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:paint/_plaster/_enamel"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:pearl",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:paper"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:pearl",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:photograph/_painting"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:pearl",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:plastic__clear"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:pearl",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:plastic__nonclear"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:pearl",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:rubber/_latex"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:pearl",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:soap"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:pearl",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:sponge"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:pearl",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:styrofoam"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:pearl",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:tile"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:pearl",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:wallpaper"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:pearl",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:whiteboard"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:pearl",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:sand"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:pearl",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:snow"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:pearl",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:soil/mud"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:pearl",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:stone__natural"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:pearl",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:stone__polished"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:pearl",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:animal_skin"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:pearl",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:bone/_teeth/horn"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:pearl",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:foliage"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:pearl",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:food"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:pearl",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:fur"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:pearl",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:hair"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:pearl",
+ "occurence_log": 2,
+ "occurrence": 7,
+ "reference_text": "material:solid__organic:type-:pearl"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:pearl",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:skin/_lips"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:pearl",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wax"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:pearl",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wicker"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:pearl",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wood"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:pearl",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wood__tree"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:pearl",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:clutter"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:pearl",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:i_cannot_tell"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:pearl",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:not_on_list"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:skin/_lips",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:fire"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:skin/_lips",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:liquid__nonwater"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:skin/_lips",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:sky"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:skin/_lips",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:water"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:skin/_lips",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:brickwork"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:skin/_lips",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:cardboard"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:skin/_lips",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:carpet/rug"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:skin/_lips",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:ceiling_tile"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:skin/_lips",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:ceramic"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:skin/_lips",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:chalkboard_/blackboard"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:skin/_lips",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:concrete"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:skin/_lips",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:cork/_corkboard"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:skin/_lips",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:engineered_stone"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:skin/_lips",
+ "occurence_log": 2,
+ "occurrence": 7,
+ "reference_text": "material:solid__manufactured:type-:fabric/cloth"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:skin/_lips",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:fiberglass_wool"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:skin/_lips",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:gemstone/_crystal"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:skin/_lips",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:glass"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:skin/_lips",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__manufactured:type-:leather"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:skin/_lips",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:metal"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:skin/_lips",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:mirror"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:skin/_lips",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__manufactured:type-:paint/_plaster/_enamel"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:skin/_lips",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:paper"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:skin/_lips",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:photograph/_painting"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:skin/_lips",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:plastic__clear"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:skin/_lips",
+ "occurence_log": 1,
+ "occurrence": 3,
+ "reference_text": "material:solid__manufactured:type-:plastic__nonclear"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:skin/_lips",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:rubber/_latex"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:skin/_lips",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:soap"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:skin/_lips",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:sponge"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:skin/_lips",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:styrofoam"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:skin/_lips",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:tile"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:skin/_lips",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:wallpaper"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:skin/_lips",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:whiteboard"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:skin/_lips",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:sand"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:skin/_lips",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:snow"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:skin/_lips",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:soil/mud"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:skin/_lips",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:stone__natural"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:skin/_lips",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:stone__polished"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:skin/_lips",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__organic:type-:animal_skin"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:skin/_lips",
+ "occurence_log": 1,
+ "occurrence": 6,
+ "reference_text": "material:solid__organic:type-:bone/_teeth/horn"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:skin/_lips",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:foliage"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:skin/_lips",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:food"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:skin/_lips",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__organic:type-:fur"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:skin/_lips",
+ "occurence_log": 2,
+ "occurrence": 19,
+ "reference_text": "material:solid__organic:type-:hair"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:skin/_lips",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:pearl"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:skin/_lips",
+ "occurence_log": 8,
+ "occurrence": 4901,
+ "reference_text": "material:solid__organic:type-:skin/_lips"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:skin/_lips",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wax"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:skin/_lips",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wicker"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:skin/_lips",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wood"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:skin/_lips",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wood__tree"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:skin/_lips",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:clutter"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:skin/_lips",
+ "occurence_log": 3,
+ "occurrence": 22,
+ "reference_text": "material:special:type-:i_cannot_tell"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:skin/_lips",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:not_on_list"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wax",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:non-solid:type-:fire"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wax",
+ "occurence_log": 1,
+ "occurrence": 2,
+ "reference_text": "material:non-solid:type-:liquid__nonwater"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wax",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:sky"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wax",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:water"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wax",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:brickwork"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wax",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:cardboard"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wax",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:carpet/rug"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wax",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:ceiling_tile"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wax",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:ceramic"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wax",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:chalkboard_/blackboard"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wax",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:concrete"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wax",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:cork/_corkboard"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wax",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:engineered_stone"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wax",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:fabric/cloth"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wax",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:fiberglass_wool"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wax",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:gemstone/_crystal"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wax",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:glass"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wax",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:leather"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wax",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:metal"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wax",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:mirror"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wax",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:paint/_plaster/_enamel"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wax",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:paper"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wax",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:photograph/_painting"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wax",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:plastic__clear"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wax",
+ "occurence_log": 3,
+ "occurrence": 22,
+ "reference_text": "material:solid__manufactured:type-:plastic__nonclear"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wax",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:rubber/_latex"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wax",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:soap"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wax",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:sponge"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wax",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:styrofoam"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wax",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:tile"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wax",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:wallpaper"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wax",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:whiteboard"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wax",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:sand"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wax",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:snow"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wax",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:soil/mud"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wax",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:stone__natural"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wax",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:stone__polished"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wax",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:animal_skin"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wax",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:bone/_teeth/horn"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wax",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:foliage"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wax",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:food"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wax",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:fur"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wax",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:hair"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wax",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:pearl"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wax",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:skin/_lips"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wax",
+ "occurence_log": 4,
+ "occurrence": 60,
+ "reference_text": "material:solid__organic:type-:wax"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wax",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wicker"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wax",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wood"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wax",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wood__tree"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wax",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:clutter"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wax",
+ "occurence_log": 2,
+ "occurrence": 17,
+ "reference_text": "material:special:type-:i_cannot_tell"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wax",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:not_on_list"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wicker",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:fire"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wicker",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:liquid__nonwater"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wicker",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:sky"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wicker",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:water"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wicker",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:brickwork"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wicker",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:cardboard"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wicker",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:carpet/rug"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wicker",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:ceiling_tile"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wicker",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:ceramic"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wicker",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:chalkboard_/blackboard"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wicker",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:concrete"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wicker",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:cork/_corkboard"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wicker",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:engineered_stone"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wicker",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:fabric/cloth"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wicker",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:fiberglass_wool"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wicker",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:gemstone/_crystal"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wicker",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:glass"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wicker",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:leather"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wicker",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:metal"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wicker",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:mirror"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wicker",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:paint/_plaster/_enamel"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wicker",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:paper"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wicker",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:photograph/_painting"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wicker",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__manufactured:type-:plastic__clear"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wicker",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__manufactured:type-:plastic__nonclear"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wicker",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:rubber/_latex"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wicker",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:soap"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wicker",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:sponge"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wicker",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:styrofoam"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wicker",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:tile"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wicker",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:wallpaper"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wicker",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:whiteboard"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wicker",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:sand"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wicker",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:snow"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wicker",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:soil/mud"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wicker",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:stone__natural"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wicker",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:stone__polished"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wicker",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:animal_skin"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wicker",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:bone/_teeth/horn"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wicker",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:foliage"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wicker",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:food"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wicker",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:fur"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wicker",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:hair"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wicker",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:pearl"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wicker",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:skin/_lips"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wicker",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wax"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wicker",
+ "occurence_log": 4,
+ "occurrence": 61,
+ "reference_text": "material:solid__organic:type-:wicker"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wicker",
+ "occurence_log": 1,
+ "occurrence": 4,
+ "reference_text": "material:solid__organic:type-:wood"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wicker",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wood__tree"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wicker",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:clutter"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wicker",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:i_cannot_tell"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wicker",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:not_on_list"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:fire"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:liquid__nonwater"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:sky"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:water"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:brickwork"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood",
+ "occurence_log": 1,
+ "occurrence": 5,
+ "reference_text": "material:solid__manufactured:type-:cardboard"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood",
+ "occurence_log": 1,
+ "occurrence": 4,
+ "reference_text": "material:solid__manufactured:type-:carpet/rug"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__manufactured:type-:ceiling_tile"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:ceramic"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__manufactured:type-:chalkboard_/blackboard"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__manufactured:type-:concrete"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:cork/_corkboard"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__manufactured:type-:engineered_stone"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood",
+ "occurence_log": 2,
+ "occurrence": 13,
+ "reference_text": "material:solid__manufactured:type-:fabric/cloth"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:fiberglass_wool"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:gemstone/_crystal"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood",
+ "occurence_log": 2,
+ "occurrence": 11,
+ "reference_text": "material:solid__manufactured:type-:glass"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood",
+ "occurence_log": 1,
+ "occurrence": 5,
+ "reference_text": "material:solid__manufactured:type-:leather"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood",
+ "occurence_log": 3,
+ "occurrence": 48,
+ "reference_text": "material:solid__manufactured:type-:metal"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:mirror"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood",
+ "occurence_log": 5,
+ "occurrence": 341,
+ "reference_text": "material:solid__manufactured:type-:paint/_plaster/_enamel"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood",
+ "occurence_log": 1,
+ "occurrence": 3,
+ "reference_text": "material:solid__manufactured:type-:paper"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood",
+ "occurence_log": 1,
+ "occurrence": 5,
+ "reference_text": "material:solid__manufactured:type-:photograph/_painting"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:plastic__clear"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood",
+ "occurence_log": 3,
+ "occurrence": 37,
+ "reference_text": "material:solid__manufactured:type-:plastic__nonclear"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__manufactured:type-:rubber/_latex"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:soap"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__manufactured:type-:sponge"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:styrofoam"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood",
+ "occurence_log": 2,
+ "occurrence": 8,
+ "reference_text": "material:solid__manufactured:type-:tile"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:wallpaper"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:whiteboard"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:sand"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:snow"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:soil/mud"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:stone__natural"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood",
+ "occurence_log": 2,
+ "occurrence": 19,
+ "reference_text": "material:solid__natural:type-:stone__polished"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__organic:type-:animal_skin"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:bone/_teeth/horn"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:foliage"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:food"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:fur"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:hair"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:pearl"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:skin/_lips"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wax"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood",
+ "occurence_log": 2,
+ "occurrence": 15,
+ "reference_text": "material:solid__organic:type-:wicker"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood",
+ "occurence_log": 8,
+ "occurrence": 4009,
+ "reference_text": "material:solid__organic:type-:wood"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wood__tree"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:clutter"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood",
+ "occurence_log": 4,
+ "occurrence": 67,
+ "reference_text": "material:special:type-:i_cannot_tell"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:special:type-:not_on_list"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood__tree",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:fire"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood__tree",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:liquid__nonwater"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood__tree",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:non-solid:type-:sky"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood__tree",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:water"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood__tree",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:brickwork"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood__tree",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:cardboard"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood__tree",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:carpet/rug"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood__tree",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:ceiling_tile"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood__tree",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:ceramic"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood__tree",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:chalkboard_/blackboard"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood__tree",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:concrete"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood__tree",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:cork/_corkboard"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood__tree",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:engineered_stone"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood__tree",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:fabric/cloth"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood__tree",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:fiberglass_wool"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood__tree",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:gemstone/_crystal"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood__tree",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__manufactured:type-:glass"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood__tree",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:leather"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood__tree",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:metal"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood__tree",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:mirror"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood__tree",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__manufactured:type-:paint/_plaster/_enamel"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood__tree",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:paper"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood__tree",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:photograph/_painting"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood__tree",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:plastic__clear"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood__tree",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:plastic__nonclear"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood__tree",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:rubber/_latex"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood__tree",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:soap"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood__tree",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:sponge"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood__tree",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:styrofoam"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood__tree",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:tile"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood__tree",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:wallpaper"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood__tree",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:whiteboard"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood__tree",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:sand"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood__tree",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:snow"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood__tree",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:soil/mud"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood__tree",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__natural:type-:stone__natural"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood__tree",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:stone__polished"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood__tree",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:animal_skin"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood__tree",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:bone/_teeth/horn"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood__tree",
+ "occurence_log": 3,
+ "occurrence": 29,
+ "reference_text": "material:solid__organic:type-:foliage"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood__tree",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:food"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood__tree",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:fur"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood__tree",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:hair"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood__tree",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:pearl"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood__tree",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:skin/_lips"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood__tree",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wax"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood__tree",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wicker"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood__tree",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wood"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood__tree",
+ "occurence_log": 3,
+ "occurrence": 43,
+ "reference_text": "material:solid__organic:type-:wood__tree"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood__tree",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:clutter"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood__tree",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:i_cannot_tell"
+ },
+ {
+ "annotation_text": "material:solid__organic:type-:wood__tree",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:not_on_list"
+ },
+ {
+ "annotation_text": "material:special:type-:clutter",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:fire"
+ },
+ {
+ "annotation_text": "material:special:type-:clutter",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:liquid__nonwater"
+ },
+ {
+ "annotation_text": "material:special:type-:clutter",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:sky"
+ },
+ {
+ "annotation_text": "material:special:type-:clutter",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:water"
+ },
+ {
+ "annotation_text": "material:special:type-:clutter",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:brickwork"
+ },
+ {
+ "annotation_text": "material:special:type-:clutter",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:cardboard"
+ },
+ {
+ "annotation_text": "material:special:type-:clutter",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:carpet/rug"
+ },
+ {
+ "annotation_text": "material:special:type-:clutter",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:ceiling_tile"
+ },
+ {
+ "annotation_text": "material:special:type-:clutter",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__manufactured:type-:ceramic"
+ },
+ {
+ "annotation_text": "material:special:type-:clutter",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:chalkboard_/blackboard"
+ },
+ {
+ "annotation_text": "material:special:type-:clutter",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:concrete"
+ },
+ {
+ "annotation_text": "material:special:type-:clutter",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:cork/_corkboard"
+ },
+ {
+ "annotation_text": "material:special:type-:clutter",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:engineered_stone"
+ },
+ {
+ "annotation_text": "material:special:type-:clutter",
+ "occurence_log": 1,
+ "occurrence": 2,
+ "reference_text": "material:solid__manufactured:type-:fabric/cloth"
+ },
+ {
+ "annotation_text": "material:special:type-:clutter",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:fiberglass_wool"
+ },
+ {
+ "annotation_text": "material:special:type-:clutter",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:gemstone/_crystal"
+ },
+ {
+ "annotation_text": "material:special:type-:clutter",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:glass"
+ },
+ {
+ "annotation_text": "material:special:type-:clutter",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:leather"
+ },
+ {
+ "annotation_text": "material:special:type-:clutter",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__manufactured:type-:metal"
+ },
+ {
+ "annotation_text": "material:special:type-:clutter",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:mirror"
+ },
+ {
+ "annotation_text": "material:special:type-:clutter",
+ "occurence_log": 1,
+ "occurrence": 2,
+ "reference_text": "material:solid__manufactured:type-:paint/_plaster/_enamel"
+ },
+ {
+ "annotation_text": "material:special:type-:clutter",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__manufactured:type-:paper"
+ },
+ {
+ "annotation_text": "material:special:type-:clutter",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:photograph/_painting"
+ },
+ {
+ "annotation_text": "material:special:type-:clutter",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__manufactured:type-:plastic__clear"
+ },
+ {
+ "annotation_text": "material:special:type-:clutter",
+ "occurence_log": 1,
+ "occurrence": 2,
+ "reference_text": "material:solid__manufactured:type-:plastic__nonclear"
+ },
+ {
+ "annotation_text": "material:special:type-:clutter",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:rubber/_latex"
+ },
+ {
+ "annotation_text": "material:special:type-:clutter",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:soap"
+ },
+ {
+ "annotation_text": "material:special:type-:clutter",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:sponge"
+ },
+ {
+ "annotation_text": "material:special:type-:clutter",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:styrofoam"
+ },
+ {
+ "annotation_text": "material:special:type-:clutter",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:tile"
+ },
+ {
+ "annotation_text": "material:special:type-:clutter",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:wallpaper"
+ },
+ {
+ "annotation_text": "material:special:type-:clutter",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:whiteboard"
+ },
+ {
+ "annotation_text": "material:special:type-:clutter",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:sand"
+ },
+ {
+ "annotation_text": "material:special:type-:clutter",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:snow"
+ },
+ {
+ "annotation_text": "material:special:type-:clutter",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:soil/mud"
+ },
+ {
+ "annotation_text": "material:special:type-:clutter",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:stone__natural"
+ },
+ {
+ "annotation_text": "material:special:type-:clutter",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:stone__polished"
+ },
+ {
+ "annotation_text": "material:special:type-:clutter",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:animal_skin"
+ },
+ {
+ "annotation_text": "material:special:type-:clutter",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:bone/_teeth/horn"
+ },
+ {
+ "annotation_text": "material:special:type-:clutter",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:foliage"
+ },
+ {
+ "annotation_text": "material:special:type-:clutter",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:food"
+ },
+ {
+ "annotation_text": "material:special:type-:clutter",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:fur"
+ },
+ {
+ "annotation_text": "material:special:type-:clutter",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:hair"
+ },
+ {
+ "annotation_text": "material:special:type-:clutter",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:pearl"
+ },
+ {
+ "annotation_text": "material:special:type-:clutter",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:skin/_lips"
+ },
+ {
+ "annotation_text": "material:special:type-:clutter",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wax"
+ },
+ {
+ "annotation_text": "material:special:type-:clutter",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wicker"
+ },
+ {
+ "annotation_text": "material:special:type-:clutter",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__organic:type-:wood"
+ },
+ {
+ "annotation_text": "material:special:type-:clutter",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wood__tree"
+ },
+ {
+ "annotation_text": "material:special:type-:clutter",
+ "occurence_log": 2,
+ "occurrence": 9,
+ "reference_text": "material:special:type-:clutter"
+ },
+ {
+ "annotation_text": "material:special:type-:clutter",
+ "occurence_log": 3,
+ "occurrence": 28,
+ "reference_text": "material:special:type-:i_cannot_tell"
+ },
+ {
+ "annotation_text": "material:special:type-:clutter",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:not_on_list"
+ },
+ {
+ "annotation_text": "material:special:type-:i_cannot_tell",
+ "occurence_log": 1,
+ "occurrence": 2,
+ "reference_text": "material:non-solid:type-:fire"
+ },
+ {
+ "annotation_text": "material:special:type-:i_cannot_tell",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:non-solid:type-:liquid__nonwater"
+ },
+ {
+ "annotation_text": "material:special:type-:i_cannot_tell",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:non-solid:type-:sky"
+ },
+ {
+ "annotation_text": "material:special:type-:i_cannot_tell",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:non-solid:type-:water"
+ },
+ {
+ "annotation_text": "material:special:type-:i_cannot_tell",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__manufactured:type-:brickwork"
+ },
+ {
+ "annotation_text": "material:special:type-:i_cannot_tell",
+ "occurence_log": 1,
+ "occurrence": 5,
+ "reference_text": "material:solid__manufactured:type-:cardboard"
+ },
+ {
+ "annotation_text": "material:special:type-:i_cannot_tell",
+ "occurence_log": 1,
+ "occurrence": 6,
+ "reference_text": "material:solid__manufactured:type-:carpet/rug"
+ },
+ {
+ "annotation_text": "material:special:type-:i_cannot_tell",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:ceiling_tile"
+ },
+ {
+ "annotation_text": "material:special:type-:i_cannot_tell",
+ "occurence_log": 3,
+ "occurrence": 36,
+ "reference_text": "material:solid__manufactured:type-:ceramic"
+ },
+ {
+ "annotation_text": "material:special:type-:i_cannot_tell",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:chalkboard_/blackboard"
+ },
+ {
+ "annotation_text": "material:special:type-:i_cannot_tell",
+ "occurence_log": 1,
+ "occurrence": 5,
+ "reference_text": "material:solid__manufactured:type-:concrete"
+ },
+ {
+ "annotation_text": "material:special:type-:i_cannot_tell",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:cork/_corkboard"
+ },
+ {
+ "annotation_text": "material:special:type-:i_cannot_tell",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:engineered_stone"
+ },
+ {
+ "annotation_text": "material:special:type-:i_cannot_tell",
+ "occurence_log": 4,
+ "occurrence": 116,
+ "reference_text": "material:solid__manufactured:type-:fabric/cloth"
+ },
+ {
+ "annotation_text": "material:special:type-:i_cannot_tell",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__manufactured:type-:fiberglass_wool"
+ },
+ {
+ "annotation_text": "material:special:type-:i_cannot_tell",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__manufactured:type-:gemstone/_crystal"
+ },
+ {
+ "annotation_text": "material:special:type-:i_cannot_tell",
+ "occurence_log": 5,
+ "occurrence": 214,
+ "reference_text": "material:solid__manufactured:type-:glass"
+ },
+ {
+ "annotation_text": "material:special:type-:i_cannot_tell",
+ "occurence_log": 3,
+ "occurrence": 28,
+ "reference_text": "material:solid__manufactured:type-:leather"
+ },
+ {
+ "annotation_text": "material:special:type-:i_cannot_tell",
+ "occurence_log": 4,
+ "occurrence": 138,
+ "reference_text": "material:solid__manufactured:type-:metal"
+ },
+ {
+ "annotation_text": "material:special:type-:i_cannot_tell",
+ "occurence_log": 1,
+ "occurrence": 3,
+ "reference_text": "material:solid__manufactured:type-:mirror"
+ },
+ {
+ "annotation_text": "material:special:type-:i_cannot_tell",
+ "occurence_log": 5,
+ "occurrence": 202,
+ "reference_text": "material:solid__manufactured:type-:paint/_plaster/_enamel"
+ },
+ {
+ "annotation_text": "material:special:type-:i_cannot_tell",
+ "occurence_log": 4,
+ "occurrence": 57,
+ "reference_text": "material:solid__manufactured:type-:paper"
+ },
+ {
+ "annotation_text": "material:special:type-:i_cannot_tell",
+ "occurence_log": 1,
+ "occurrence": 3,
+ "reference_text": "material:solid__manufactured:type-:photograph/_painting"
+ },
+ {
+ "annotation_text": "material:special:type-:i_cannot_tell",
+ "occurence_log": 2,
+ "occurrence": 14,
+ "reference_text": "material:solid__manufactured:type-:plastic__clear"
+ },
+ {
+ "annotation_text": "material:special:type-:i_cannot_tell",
+ "occurence_log": 5,
+ "occurrence": 356,
+ "reference_text": "material:solid__manufactured:type-:plastic__nonclear"
+ },
+ {
+ "annotation_text": "material:special:type-:i_cannot_tell",
+ "occurence_log": 2,
+ "occurrence": 13,
+ "reference_text": "material:solid__manufactured:type-:rubber/_latex"
+ },
+ {
+ "annotation_text": "material:special:type-:i_cannot_tell",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:soap"
+ },
+ {
+ "annotation_text": "material:special:type-:i_cannot_tell",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__manufactured:type-:sponge"
+ },
+ {
+ "annotation_text": "material:special:type-:i_cannot_tell",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:styrofoam"
+ },
+ {
+ "annotation_text": "material:special:type-:i_cannot_tell",
+ "occurence_log": 2,
+ "occurrence": 9,
+ "reference_text": "material:solid__manufactured:type-:tile"
+ },
+ {
+ "annotation_text": "material:special:type-:i_cannot_tell",
+ "occurence_log": 1,
+ "occurrence": 2,
+ "reference_text": "material:solid__manufactured:type-:wallpaper"
+ },
+ {
+ "annotation_text": "material:special:type-:i_cannot_tell",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__manufactured:type-:whiteboard"
+ },
+ {
+ "annotation_text": "material:special:type-:i_cannot_tell",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:sand"
+ },
+ {
+ "annotation_text": "material:special:type-:i_cannot_tell",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:snow"
+ },
+ {
+ "annotation_text": "material:special:type-:i_cannot_tell",
+ "occurence_log": 1,
+ "occurrence": 2,
+ "reference_text": "material:solid__natural:type-:soil/mud"
+ },
+ {
+ "annotation_text": "material:special:type-:i_cannot_tell",
+ "occurence_log": 1,
+ "occurrence": 4,
+ "reference_text": "material:solid__natural:type-:stone__natural"
+ },
+ {
+ "annotation_text": "material:special:type-:i_cannot_tell",
+ "occurence_log": 1,
+ "occurrence": 3,
+ "reference_text": "material:solid__natural:type-:stone__polished"
+ },
+ {
+ "annotation_text": "material:special:type-:i_cannot_tell",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__organic:type-:animal_skin"
+ },
+ {
+ "annotation_text": "material:special:type-:i_cannot_tell",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:bone/_teeth/horn"
+ },
+ {
+ "annotation_text": "material:special:type-:i_cannot_tell",
+ "occurence_log": 2,
+ "occurrence": 11,
+ "reference_text": "material:solid__organic:type-:foliage"
+ },
+ {
+ "annotation_text": "material:special:type-:i_cannot_tell",
+ "occurence_log": 1,
+ "occurrence": 4,
+ "reference_text": "material:solid__organic:type-:food"
+ },
+ {
+ "annotation_text": "material:special:type-:i_cannot_tell",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__organic:type-:fur"
+ },
+ {
+ "annotation_text": "material:special:type-:i_cannot_tell",
+ "occurence_log": 2,
+ "occurrence": 14,
+ "reference_text": "material:solid__organic:type-:hair"
+ },
+ {
+ "annotation_text": "material:special:type-:i_cannot_tell",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:pearl"
+ },
+ {
+ "annotation_text": "material:special:type-:i_cannot_tell",
+ "occurence_log": 2,
+ "occurrence": 18,
+ "reference_text": "material:solid__organic:type-:skin/_lips"
+ },
+ {
+ "annotation_text": "material:special:type-:i_cannot_tell",
+ "occurence_log": 1,
+ "occurrence": 6,
+ "reference_text": "material:solid__organic:type-:wax"
+ },
+ {
+ "annotation_text": "material:special:type-:i_cannot_tell",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__organic:type-:wicker"
+ },
+ {
+ "annotation_text": "material:special:type-:i_cannot_tell",
+ "occurence_log": 4,
+ "occurrence": 54,
+ "reference_text": "material:solid__organic:type-:wood"
+ },
+ {
+ "annotation_text": "material:special:type-:i_cannot_tell",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wood__tree"
+ },
+ {
+ "annotation_text": "material:special:type-:i_cannot_tell",
+ "occurence_log": 1,
+ "occurrence": 6,
+ "reference_text": "material:special:type-:clutter"
+ },
+ {
+ "annotation_text": "material:special:type-:i_cannot_tell",
+ "occurence_log": 9,
+ "occurrence": 9983,
+ "reference_text": "material:special:type-:i_cannot_tell"
+ },
+ {
+ "annotation_text": "material:special:type-:i_cannot_tell",
+ "occurence_log": 2,
+ "occurrence": 19,
+ "reference_text": "material:special:type-:not_on_list"
+ },
+ {
+ "annotation_text": "material:special:type-:not_on_list",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:non-solid:type-:fire"
+ },
+ {
+ "annotation_text": "material:special:type-:not_on_list",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:liquid__nonwater"
+ },
+ {
+ "annotation_text": "material:special:type-:not_on_list",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:sky"
+ },
+ {
+ "annotation_text": "material:special:type-:not_on_list",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:non-solid:type-:water"
+ },
+ {
+ "annotation_text": "material:special:type-:not_on_list",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:brickwork"
+ },
+ {
+ "annotation_text": "material:special:type-:not_on_list",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:cardboard"
+ },
+ {
+ "annotation_text": "material:special:type-:not_on_list",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:carpet/rug"
+ },
+ {
+ "annotation_text": "material:special:type-:not_on_list",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:ceiling_tile"
+ },
+ {
+ "annotation_text": "material:special:type-:not_on_list",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:ceramic"
+ },
+ {
+ "annotation_text": "material:special:type-:not_on_list",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:chalkboard_/blackboard"
+ },
+ {
+ "annotation_text": "material:special:type-:not_on_list",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__manufactured:type-:concrete"
+ },
+ {
+ "annotation_text": "material:special:type-:not_on_list",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:cork/_corkboard"
+ },
+ {
+ "annotation_text": "material:special:type-:not_on_list",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:engineered_stone"
+ },
+ {
+ "annotation_text": "material:special:type-:not_on_list",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:fabric/cloth"
+ },
+ {
+ "annotation_text": "material:special:type-:not_on_list",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:fiberglass_wool"
+ },
+ {
+ "annotation_text": "material:special:type-:not_on_list",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:gemstone/_crystal"
+ },
+ {
+ "annotation_text": "material:special:type-:not_on_list",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:glass"
+ },
+ {
+ "annotation_text": "material:special:type-:not_on_list",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:leather"
+ },
+ {
+ "annotation_text": "material:special:type-:not_on_list",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__manufactured:type-:metal"
+ },
+ {
+ "annotation_text": "material:special:type-:not_on_list",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:mirror"
+ },
+ {
+ "annotation_text": "material:special:type-:not_on_list",
+ "occurence_log": 1,
+ "occurrence": 2,
+ "reference_text": "material:solid__manufactured:type-:paint/_plaster/_enamel"
+ },
+ {
+ "annotation_text": "material:special:type-:not_on_list",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:paper"
+ },
+ {
+ "annotation_text": "material:special:type-:not_on_list",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:photograph/_painting"
+ },
+ {
+ "annotation_text": "material:special:type-:not_on_list",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:plastic__clear"
+ },
+ {
+ "annotation_text": "material:special:type-:not_on_list",
+ "occurence_log": 1,
+ "occurrence": 2,
+ "reference_text": "material:solid__manufactured:type-:plastic__nonclear"
+ },
+ {
+ "annotation_text": "material:special:type-:not_on_list",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:rubber/_latex"
+ },
+ {
+ "annotation_text": "material:special:type-:not_on_list",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:soap"
+ },
+ {
+ "annotation_text": "material:special:type-:not_on_list",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:sponge"
+ },
+ {
+ "annotation_text": "material:special:type-:not_on_list",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:styrofoam"
+ },
+ {
+ "annotation_text": "material:special:type-:not_on_list",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__manufactured:type-:tile"
+ },
+ {
+ "annotation_text": "material:special:type-:not_on_list",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:wallpaper"
+ },
+ {
+ "annotation_text": "material:special:type-:not_on_list",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__manufactured:type-:whiteboard"
+ },
+ {
+ "annotation_text": "material:special:type-:not_on_list",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:sand"
+ },
+ {
+ "annotation_text": "material:special:type-:not_on_list",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:snow"
+ },
+ {
+ "annotation_text": "material:special:type-:not_on_list",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:soil/mud"
+ },
+ {
+ "annotation_text": "material:special:type-:not_on_list",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:stone__natural"
+ },
+ {
+ "annotation_text": "material:special:type-:not_on_list",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__natural:type-:stone__polished"
+ },
+ {
+ "annotation_text": "material:special:type-:not_on_list",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:animal_skin"
+ },
+ {
+ "annotation_text": "material:special:type-:not_on_list",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:bone/_teeth/horn"
+ },
+ {
+ "annotation_text": "material:special:type-:not_on_list",
+ "occurence_log": 0,
+ "occurrence": 1,
+ "reference_text": "material:solid__organic:type-:foliage"
+ },
+ {
+ "annotation_text": "material:special:type-:not_on_list",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:food"
+ },
+ {
+ "annotation_text": "material:special:type-:not_on_list",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:fur"
+ },
+ {
+ "annotation_text": "material:special:type-:not_on_list",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:hair"
+ },
+ {
+ "annotation_text": "material:special:type-:not_on_list",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:pearl"
+ },
+ {
+ "annotation_text": "material:special:type-:not_on_list",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:skin/_lips"
+ },
+ {
+ "annotation_text": "material:special:type-:not_on_list",
+ "occurence_log": 1,
+ "occurrence": 2,
+ "reference_text": "material:solid__organic:type-:wax"
+ },
+ {
+ "annotation_text": "material:special:type-:not_on_list",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wicker"
+ },
+ {
+ "annotation_text": "material:special:type-:not_on_list",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wood"
+ },
+ {
+ "annotation_text": "material:special:type-:not_on_list",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:solid__organic:type-:wood__tree"
+ },
+ {
+ "annotation_text": "material:special:type-:not_on_list",
+ "occurence_log": 0,
+ "occurrence": 0,
+ "reference_text": "material:special:type-:clutter"
+ },
+ {
+ "annotation_text": "material:special:type-:not_on_list",
+ "occurence_log": 3,
+ "occurrence": 48,
+ "reference_text": "material:special:type-:i_cannot_tell"
+ },
+ {
+ "annotation_text": "material:special:type-:not_on_list",
+ "occurence_log": 3,
+ "occurrence": 47,
+ "reference_text": "material:special:type-:not_on_list"
+ }
+ ]
+ },
+ "encoding": {
+ "color": {
+ "condition": {"test": "datum['occurrence'] == 0", "value": "white"},
+ "field": "occurrence",
+ "scale": {"scheme": "bluepurple"},
+ "type": "quantitative"
+ },
+ "tooltip": [
+ {"field": "annotation_text", "title": "ann", "type": "nominal"},
+ {"field": "reference_text", "title": "ref", "type": "nominal"},
+ {"field": "occurrence", "title": "occurrence", "type": "quantitative"}
+ ],
+ "x": {
+ "axis": {"labels": false},
+ "field": "annotation_text",
+ "type": "nominal"
+ },
+ "y": {
+ "axis": {"labels": false},
+ "field": "reference_text",
+ "type": "nominal"
+ }
+ },
+ "height": {"step": 8},
+ "mark": "rect",
+ "width": {"step": 8}
+}
\ No newline at end of file
diff --git a/public/favicon.png b/public/favicon.png
new file mode 100644
index 0000000..7e6f5eb
Binary files /dev/null and b/public/favicon.png differ
diff --git a/public/global.css b/public/global.css
new file mode 100644
index 0000000..f64c675
--- /dev/null
+++ b/public/global.css
@@ -0,0 +1,56 @@
+/*
+ * For licensing see accompanying LICENSE file.
+ *
+ * Copyright (C) 2022 Apple Inc. All Rights Reserved.
+ */
+
+html {
+ display: block;
+}
+
+body{
+ padding: 0;
+ margin: 0;
+ font-size: 13px;
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
+}
+* {
+ box-sizing: border-box;
+}
+table, th, td {
+ border-collapse: collapse;
+}
+
+h1 {
+ margin: 1em 0 1em 0;
+}
+
+h2 {
+ margin:2em 0 1em 0;
+}
+
+h3, h4, h5, h6 {
+ margin: 2em 0 1em 0;
+}
+
+h1 {
+ font-size: 3em;
+}
+h2 {
+ font-size: 2em;
+}
+
+.box {
+ margin: 0 0 1em 0;
+ padding: 2em;
+ border: 1px solid #ccc;
+ border-radius: 5px;
+ text-align: center;
+ min-width: 550px
+}
+
+.box > div {
+ margin: 0 auto;
+ text-align: left;
+}
+
diff --git a/public/index.html b/public/index.html
new file mode 100644
index 0000000..694b69a
--- /dev/null
+++ b/public/index.html
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+ Neo: Hierarchical Confusion Matrix
+
+
+
+
+
+
+
+
+
+
diff --git a/rollup.config.js b/rollup.config.js
new file mode 100644
index 0000000..dbb561b
--- /dev/null
+++ b/rollup.config.js
@@ -0,0 +1,85 @@
+import autoPreprocess from 'svelte-preprocess';
+import commonjs from '@rollup/plugin-commonjs';
+import css from 'rollup-plugin-css-only';
+import json from '@rollup/plugin-json';
+import livereload from 'rollup-plugin-livereload';
+import pkg from './package.json';
+import resolve from '@rollup/plugin-node-resolve';
+import { Server } from 'http';
+import svelte from 'rollup-plugin-svelte';
+import { terser } from 'rollup-plugin-terser';
+import typescript from '@rollup/plugin-typescript';
+
+const copyright = `// ${pkg.name} v${pkg.version} Copyright ${(new Date).getFullYear()} ${pkg.author.name}`;
+
+const production = !process.env.ROLLUP_WATCH;
+
+export default [
+ // App
+ {
+ input: 'src/app.ts',
+ output: {
+ banner: copyright,
+ sourcemap: !production,
+ format: 'iife',
+ name: 'app',
+ file: 'public/app.js',
+ },
+ plugins: [
+ svelte({
+ preprocess: autoPreprocess(),
+ compilerOptions: {
+ dev: !production,
+ },
+ }),
+ css({ output: 'bundle.css' }),
+ typescript({
+ noEmitOnError: false,
+ sourceMap: !production,
+ }),
+ json(),
+ resolve({
+ browser: true,
+ dedupe: ['svelte'],
+ }),
+ commonjs(),
+ !production && Server(),
+ !production && livereload('public'),
+ production && terser({ output: { preamble: copyright } }),
+ ],
+ watch: {
+ clearScreen: false,
+ },
+ },
+ // Library
+ {
+ input: 'src/lib.ts',
+ output: {
+ banner: copyright,
+ sourcemap: !production,
+ format: 'umd',
+ name: 'confMat',
+ file: 'public/confMat.js',
+ },
+ plugins: [
+ svelte({
+ preprocess: autoPreprocess(),
+ emitCss: false,
+ compilerOptions: {
+ dev: !production,
+ },
+ }),
+ typescript({
+ noEmitOnError: false,
+ sourceMap: !production,
+ }),
+ json(),
+ resolve({
+ browser: true,
+ dedupe: ['svelte'],
+ }),
+ commonjs(),
+ terser({ output: { preamble: copyright } }),
+ ],
+ },
+];
diff --git a/src/app.ts b/src/app.ts
new file mode 100644
index 0000000..7769590
--- /dev/null
+++ b/src/app.ts
@@ -0,0 +1,108 @@
+/*
+ * For licensing see accompanying LICENSE file.
+ *
+ * Copyright (C) 2022 Apple Inc. All Rights Reserved.
+ */
+
+import { csv, json, synth, vega, vegaCompressed } from './loaders';
+import App from './components/App.svelte';
+import type { Confusion } from './confusions';
+import { defaults } from './specification';
+import type { Spec } from './specification';
+
+type Loader = () => Promise>;
+
+type Example = {
+ description: string;
+ loader: Loader;
+ spec: Spec;
+}
+
+const examples: Array = [
+ {
+ description: 'Fruit',
+ loader: () => json('data/fruit.json'),
+ spec: {
+ ...defaults,
+ classes: ['fruit'],
+ normalization: 'total',
+ },
+ },
+ {
+ description: 'Beverages',
+ loader: () => vega('data/beverages.json'),
+ spec: {
+ ...defaults,
+ classes: ['beverage'],
+ normalization: 'total',
+ },
+ },
+ {
+ description: 'Synthetic',
+ loader: async () => synth(),
+ spec: {
+ ...defaults,
+ classes: ['vehicle'],
+ normalization: 'total',
+ },
+ },
+ {
+ description: 'Synthetic (nested, filtered)',
+ loader: async () => synth(),
+ spec: {
+ ...defaults,
+ classes: ['vehicle', 'state'],
+ filter: ['vehicle:motorized'],
+ normalization: 'total',
+ },
+ },
+ {
+ description: 'Synthetic (conditioning)',
+ loader: async () => synth(),
+ spec: {
+ ...defaults,
+ classes: ['vehicle', 'animal'],
+ where: { qualifier: 'actual', label: 'state', is: 'state:moving' },
+ normalization: 'total',
+ },
+ },
+ {
+ description: 'Case Study 1 (App Prediction)',
+ loader: () => csv('data/chi-paper/case-study-1.csv'),
+ spec: {
+ ...defaults,
+ classes: ['root'],
+ measures: ['accuracy', 'precision', 'recall'],
+ encoding: 'color',
+ normalization: 'total',
+ },
+ },
+ {
+ description: 'Case Study 2 (ImageNet)',
+ loader: () => vegaCompressed('data/chi-paper/case-study-2.json'),
+ spec: {
+ ...defaults,
+ classes: ['root'],
+ measures: ['precision', 'recall', 'countObserved'],
+ encoding: 'color',
+ normalization: 'total',
+ collapsed: ['', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shade', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:lepidopterous i:butterfly:danaid-danaid b', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:housing-lodging:dwelling-home-d', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:receptacle', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:measure', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:mastiff', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:spiny-finned fi:percoid fish-pe', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:blind-screen:window blind', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:floor cover-flo:rug-carpet-carp', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:meter', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:monitor-monitor', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:ganoid-ganoid f', 'root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:apple:eating apple-de', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:plant-flora-pla:vascular plant-:spermatophyte-p:angiosperm-flow:flower:orchid-orchidac', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:pointer-Spanish', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:landing-landing', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:sofa-couch-loun:convertible-sof', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:game', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:article:ware:tableware', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:institution:penal instituti', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:gallinule-marsh', 'root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :ingredient-fixi:flavorer-flavou:condiment:sauce:spaghetti sauce', 'root:entity:physical entity:matter:substance:food-nutrient:fare', 'root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :ingredient-fixi:flavorer-flavou:condiment:dip', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:optical device:lens-lense-lens:converging lens', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:bulldog-English', 'root:entity:abstraction-abs:communication:signal-signalin:visual signal:light', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:firearm-piece-s:autoloader-self', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:wagon-waggon:cart', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:writing impleme:pen', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:movable barrier', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:homopterous ins', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:knife', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:rail:coot', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:attire-garb-dre', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:roof', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:area', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:apparel-wearing:workwear', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:screen-cover-co', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:crocodilian rep:alligator-gator', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:cuculiform bird', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:measuring stick', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:footwear', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:footwear:hosiery-hose', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:support:structural memb:upright-vertica:post', 'root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:berry', 'root:entity:physical entity:matter:substance:food-nutrient:beverage-drink-:coffee-java', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:shorebird-shore', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:springer spanie', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:pipe', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:fungus:basidiomycete-b', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:ride', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:scientific inst:magnifier:microscope:light microscop:hand glass-simp', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:boat', 'root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-:towel', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:viper', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:aircraft:heavier-than-ai:airplane-aeropl', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:winder', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:public transpor:train-railroad ', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:aquatic mammal:pinniped mammal', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled ', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:firearm-piece-s:autoloader-self:automatic firea:automatic rifle', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:cap', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:creation:product-product', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:cleaning implem', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:bird of prey-ra', 'root:entity:physical entity:object-physical:whole-unit', 'root:entity:physical entity:matter:solid', 'root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:squash', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:finch:bunting', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:system:communication s:telecommunicati', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:drill', 'root:entity:physical entity:object-physical:geological form:natural elevati:ridge:reef', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle:jug', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:rodent-gnawer', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:person-individu:peer-equal-matc:associate:participant', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:padding-cushion:cushion', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:elapid-elapid s:cobra', 'root:entity:abstraction-abs', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:salamander', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:handwear-hand w', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:plant-flora-pla:vascular plant-:spermatophyte-p:angiosperm-flow:flower', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:Old World monke', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:sandglass', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:shirt', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:white goods', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:wild sheep:mountain sheep', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:percussion inst', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:beating-reed in', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:strengthener-re:brace', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:swine', 'root:entity:abstraction-abs:communication:sign', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:cabinet', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bag', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:article', 'root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:lagomorph-gnawi:leporid-leporid:rabbit-coney-co', 'root:entity:physical entity:object-physical:geological form:natural depress', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:coraciiform bir', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:archosaur-archo', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:titmouse-tit', 'root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :ingredient-fixi', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh:Belgian sheepdo', 'root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:stew', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:piano-pianofort', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:hat-chapeau-lid', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:wirehair-wireha', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:swan', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:aquatic mammal:cetacean-cetace:whale:toothed whale:dolphin', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:optical device:lens-lense-lens', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:poodle-poodle d', 'root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:seed:oilseed-oil-ric', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:public transpor:train-railroad :passenger train', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:pachyderm', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cosmetic', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:shoe', 'root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:entree-main cou', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:cartilaginous f:elasmobranch-se:shark:requiem shark', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:constrictor:boa:python', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac', 'root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:seed:grain-caryopsis', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:retriever', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:article:ware:tableware:cutlery-eating ', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :armored vehicle', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:antelope', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:lamp', 'root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:squash:summer squash', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:supporting stru', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:support:structural memb', 'root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:loaf of bread-l', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:bicycle-bike-wh', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:colubrid snake-', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:clip', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:control-control', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:goat-caprine an', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:machine-simple ', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:elapid-elapid s', 'root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:dessert-sweet-a:pudding-pud', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:bullterrier-bul', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum:spectacles-spec', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:creation:product-product:work-piece of w:publication', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:aquatic mammal:cetacean-cetace', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:seabird-sea bir:sphenisciform s:penguin', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:archosaur-archo:dinosaur', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloth covering:dressing-medica:bandage-patch:adhesive bandag', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:supporting stru:support', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:ape:anthropoid ape', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:constrictor', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate ', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:outerwear-overc', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:weight-free wei', 'root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:cartilaginous f', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:cephalopod-ceph', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:agamid-agamid l', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:gallinaceous bi:game bird:phasianid', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:connection-conn:attachment-bond:ligament', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:womans clothing', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:gear-parapherna', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:spiny-finned fi:percoid fish-pe:butterfly fish', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:litter', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :locomotive-engi', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:lifting device', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:corvine bird', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:column-pillar', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:coat', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:aquatic mammal:sea cow-sirenia', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:plant-flora-pla:vascular plant-', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:timer', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:boat:small boat', 'root:entity:physical entity:object-physical:geological form:natural elevati:ridge', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:lagomorph-gnawi:leporid-leporid', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:sofa-couch-loun', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:lobster:true lobster', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool:ax-axe', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:housing-lodging', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:eraser', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:analog computer', 'root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:bun-roll', 'root:entity:physical entity:matter', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:breathing devic', 'root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device', 'root:entity:physical entity:matter:substance:food-nutrient', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:tank-storage ta:reservoir', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dish', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:soft-finned fis', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:blower', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:lemur', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:wall unit', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:strengthener-re', 'root:entity:physical entity', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:shelter:tent-collapsibl', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:malacostracan c', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:bovine', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:apparatus-setup', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shield:plate-scale-she:armor plate-arm:helmet', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:schnauzer', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:shorebird-shore:sandpiper', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:house:residence', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:trap:web-entanglemen', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:parrot:cockatoo', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:lepidopterous i', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:cartilaginous f:elasmobranch-se:shark', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:van', 'root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :concoction-mixt', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter:canopy', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:motorcycle-bike:minibike-motorb', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:monkey:New World monke', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:handwear-hand w:glove', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:gallinaceous bi:game bird:phasianid:pheasant:peafowl-bird of', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:seabird-sea bir:pelagic bird-oc', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:photographic eq', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:ball', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:toy spaniel', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:neckwear', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:outerwear-overc:gown-robe', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:plant-flora-pla:vascular plant-:spermatophyte-p:angiosperm-flow:flower:orchid-orchidac:ladys slipper-l', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:place of worshi:shrine', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:soft-finned fis:salmonid', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:blind-screen', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:sled dog-sledge', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg:helmet', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloth covering:dressing-medica:bandage-patch', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:seabird-sea bir', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:coffee maker', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment:game:puzzle', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel:water spaniel', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:goat-caprine an:wild goat', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:aircraft:lighter-than-ai', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute:personal comput:portable comput', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:person-individu:explorer-advent', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:crab', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:beating-reed in:double-reed ins', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:machine-simple :wheel', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:plant-flora-pla:vascular plant-:spermatophyte-p', 'root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:salamander:newt-triton', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:case', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:food fish', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:supporting stru:framework:rack', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:navigational in:compass', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:hymenopterous i', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi:beating-reed in:single-reed ins', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:car-auto-automo', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:institution:penal instituti:correctional in', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:coat:raincoat-waterp', 'root:entity', 'root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:seed', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:place of worshi', 'root:entity:physical entity:object-physical:whole-unit:natural object', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:venomous lizard', 'root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:lepidopterous i:butterfly:nymphalid-nymph', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:creation:product-product:work-piece of w', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod', 'root:entity:physical entity:object-physical:part-portion:piece', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:passenger ship', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:heater-warmer', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:constrictor:boa', 'root:entity:abstraction-abs:communication:signal-signalin', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:sailing vessel-', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:lamp:lantern', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:screen', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:spitz', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:metatherian:marsupial-pouch:kangaroo', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:creation', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:table', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:skirt', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:applicator-appl', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:domestic cat-ho', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:house:residence:religious resid', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:Old World buffa', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:shaker', 'root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:cruciferous veg', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:support', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pan-cooking pan', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:rocket-projecti', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloth covering', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick:staff', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:audio system-so:reproducer:stereo-stereoph', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:scientific inst:magnifier:telescope-scope:astronomical te', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:person-individu:contestant', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:reflector', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:scientific inst:magnifier:telescope-scope', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:elapid-elapid s:mamba:black mamba-Den', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:wirehair-wireha:Welsh terrier', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:archosaur-archo:dinosaur:ornithischian-o', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:scientific inst:magnifier', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:garden tool-law', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:bar:lever', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:person-individu:peer-equal-matc', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:parrot:lory', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:medical instrum', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:waterfowl-water:anseriform bird:duck', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:sweater-jumper', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:cargo ship-carg', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:theater-theatre', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:sailing vessel-:sailboat-sailin', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:apparatus-setup:duplicator-copi', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:coelenterate-cn:anthozoan-actin', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:warship-war ves', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:protective garm', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:drinking vessel:mug', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:gecko', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:acoustic device', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc:gastropod-univa', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:filter', 'root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing:rail fence', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:camel', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:bar:lever:key', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:scientific inst', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:support:rack-stand', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:cap', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:bridge-span', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:gear-parapherna:rig', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:fox', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:public transpor', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:top-cover', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:basin', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:power tool:power saw-saw-s', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed', 'root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:solanaceous veg', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:acarine', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:terrier:fox terrier', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:gallinaceous bi:game bird:grouse', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:finch', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:setter', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:bin', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru', 'root:entity:physical entity:matter:substance', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:decoration-orna:adornment:jewelry-jewelle', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:surface', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:aquatic mammal', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:basket-handbask', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:car-railcar-rai', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard ', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:shop-store', 'root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:snack food', 'root:entity:physical entity:object-physical:geological form:shore', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:foxhound', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:stick', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:person-individu:peer-equal-matc:associate', 'root:entity:physical entity:matter:substance:material-stuff', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:gear-parapherna:kit-outfit', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:system', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:handcart-pushca', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:lacertid lizard', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:aircraft', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:bench', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil', 'root:entity:abstraction-abs:attribute:shape-form', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cosmetic:makeup-make-up-', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:big cat-cat', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:waterfowl-water:anseriform bird:duck:sea duck:merganser-fish ', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:swimsuit-swimwe', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:basketball equi', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:iguanid-iguanid', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:aquatic mammal:pinniped mammal:seal:eared seal', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:footwear:hosiery-hose:tights-leotards', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:crustacean:decapod crustac:lobster', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:heron', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electrical devi', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:gallinule-marsh:purple gallinul', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:cartilaginous f:elasmobranch-se:shark:mackerel shark', 'root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:soup', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:game equipment', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:ape:anthropoid ape:great ape-pongi', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:crocodilian rep', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dish:bowl', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:viper:pit viper:rattlesnake-rat', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:jar', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:photographic eq:camera-photogra', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:farm machine', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:drinking vessel', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:scientific inst:magnifier:microscope:light microscop', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:rail', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:procyonid', 'root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:mixed drink:punch', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:musteline mamma', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:spiny-finned fi:scorpaenoid-sco:scorpaenid-scor', 'root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:dessert-sweet-a:frozen dessert', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:tank-storage ta', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:plant-flora-pla:vascular plant-:spermatophyte-p:angiosperm-flow', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:arch', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:guitar', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:gymnastic appar', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:armor-armour:body armor-body', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:greyhound', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism', 'root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:snack food:sandwich', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:bedroom furnitu:bed', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:movable barrier:door', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:woodwind-woodwi', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:wolfhound', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:house', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:baseball equipm', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:pachyderm:elephant', 'root:entity:abstraction-abs:communication:signal-signalin:visual signal', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil', 'root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food ', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:cooker', 'root:entity:physical entity:matter:solid:food-solid food', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:brake', 'root:entity:abstraction-abs:attribute:shape-form:round shape:sphere:ball-globe-orb:globule', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:sheep', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:lamellicorn bee:scarabaeid beet', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:viverrine-viver', 'root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:cruciferous veg:cabbage-chou', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc:van:passenger van', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu', 'root:entity:physical entity:matter:substance:agent:drug', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:shorebird-shore:snipe', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:surface:horizontal surf:platform', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput', 'root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf:cracker', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:rodent-gnawer:squirrel', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:mask:face mask', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul', 'root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:wine-vino', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:anguid lizard', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wolf', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:waterfowl-water:anseriform bird:duck:sea duck', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:person-individu:explorer-advent:diver-frogman-u', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:gallinaceous bi:game bird', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:bowed stringed ', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:savings bank-co', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:textile machine', 'root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:defensive struc', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:rodent-gnawer:squirrel:tree squirrel', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:excavation:pool:cistern', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle:lamellicorn bee', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:truck-motortruc', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:instrument of e', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:odonate', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:chest of drawer', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:odd-toed ungula', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra', 'root:entity:physical entity:matter:substance:material-stuff:paper', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:aquatic mammal:cetacean-cetace:whale:baleen whale-wh', 'root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :starches:bread-breadstuf', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shield', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:mechanical devi:pump', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum', 'root:entity:physical entity:object-physical:part-portion', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:wrapping-wrap-w:jacket', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:printer-printin', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:memory device-s:magnetic disk-m', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:metatherian:marsupial-pouch:phalanger-oposs', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:aircraft:heavier-than-ai', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:sports equipmen:golf equipment', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:trap', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:seabird-sea bir:pelecaniform se', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:neckwear:necktie-tie', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:dispenser', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:archosaur-archo:dinosaur:ornithischian-o:ceratopsian-hor', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:turner-food tur', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:tower', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:glass-drinking ', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:heron:egret', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:scarf', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:salamander:ambystomid-amby', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:metatherian', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:rotating mechan:circle-round', 'root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:footwear-footge:boot', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:fence-fencing', 'root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:root vegetable:potato-white po', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:phasmid-phasmid', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:lock', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:soft-finned fis:cypriniform fis:cyprinid-cyprin', 'root:entity:physical entity:object-physical:geological form:natural elevati:mountain-mount', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:telephone-phone', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:reflector:mirror', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:public transpor:bus-autobus-coa', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:sports implemen', 'root:entity:physical entity:matter:substance:food-nutrient:feed-provender:fodder', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:footwear:hosiery-hose:stocking', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:plaything-toy', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:opener:bottle opener', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:military vehicl', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:supporting stru:framework', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:wagon-waggon', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel:bottle', 'root:entity:physical entity:object-physical:geological form:natural elevati', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:gallinaceous bi:game bird:phasianid:pheasant', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:frog-toad-toad ', 'root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:apple', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:system:communication s', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloth covering:bedclothes-bed ', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:odd-toed ungula:equine-equid', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:spiny-finned fi', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance:home appliance-:kitchen applian:oven', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods:durables-durabl:appliance', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid:chelonian-chelo:turtle:sea turtle-mari', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:box:strongbox-deedb', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa', 'root', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:package-parcel', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:audio system-so:reproducer', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:bedroom furnitu', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:coelenterate-cn:anthozoan-actin:coral', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shield:plate-scale-she', 'root:entity:abstraction-abs:attribute:shape-form:round shape', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:boat:motorboat-power', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:cloth covering:dressing-medica', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:can-tin-tin can', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum:light-light sou', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:slot machine-co', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:creation:product-product:work-piece of w:publication:magazine-mag', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:decoration-orna:adornment', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:metatherian:marsupial-pouch', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:mollusk-mollusc', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out:cloak', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:spiny-finned fi:scorpaenoid-sco', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:bird of prey-ra:hawk', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:coelenterate-cn', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:dipterous insec', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:navigational in', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:coelenterate-cn:anthozoan-actin:coral:stony coral-mad', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:sweater-jumper:pullover-slipov', 'root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:solanaceous veg:pepper', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:floor cover-flo', 'root:entity:physical entity:matter:substance:agent:drug:drug of abuse-s:alcohol-alcohol:mixed drink', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:surface:horizontal surf', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:neuropteron-neu', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:shepherd dog-sh', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electronic devi', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:armor-armour', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:ape:anthropoid ape:lesser ape', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:gallinaceous bi', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building comple', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shelter', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:firearm-piece-s:pistol-handgun-', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:aquatic mammal:cetacean-cetace:whale', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electrical devi:transducer:electro-acousti', 'root:entity:physical entity:matter:substance:food-nutrient:feed-provender', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:viper:pit viper', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:padding-cushion', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:wrapping-wrap-w', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:nightwear-sleep', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument', 'root:entity:abstraction-abs:communication', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:bear', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:person-individu', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:utensil:kitchen utensil:cooking utensil:pot', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:blind-screen:curtain-drape-d', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building comple:plant-works-ind', 'root:entity:physical entity:object-physical', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:place of busine:mercantile esta:marketplace-mar', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:calculator-calc', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:headdress-headg', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:connection-conn', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:edentate:sloth-tree slot', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:decoration-orna', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:rodent-gnawer:cavy', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:teiid lizard-te', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:griffon-Brussel', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:movable barrier:gate', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a:motorcycle-bike', 'root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course:dessert-sweet-a', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:outbuilding:shed', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:sled-sledge-sle', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:shield:plate-scale-she:armor plate-arm', 'root:entity:physical entity:object-physical:geological form', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:rotating mechan:circle-round:disk-disc', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:arachnid-arachn:spider', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:Sennenhunde', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:spiny-finned fi:percoid fish-pe:damselfish-demo', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:snake-serpent-o:elapid-elapid s:mamba', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:brake:brake system-br:hydraulic brake', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:corgi-Welsh cor', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:power tool', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:oar', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:undergarment-un', 'root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:solanaceous veg:pepper:sweet pepper', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:container:vessel', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:bird of prey-ra:owl-bird of Min', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:telephone-phone:radiotelephone-', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:support:structural memb:upright-vertica', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:electronic equi:audio system-so', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:dictyopterous i', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian:frog-toad-toad :true frog-ranid', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:obstruction-obs:barrier:grate-grating', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:outbuilding', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:prototherian:monotreme-egg-l', 'root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish:snack food:sandwich:hamburger-beefb', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:wild dog', 'root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :ingredient-fixi:flavorer-flavou', 'root:entity:physical entity:matter:substance:material-stuff:paper:tissue-tissue p', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building-edific:farm building', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:feline-felid:cat-true cat:wildcat', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:ratite-ratite b', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:hand tool:opener', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:baby bed-babys ', 'root:entity:physical entity:object-physical:geological form:spring-fountain', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:fastener-fasten:pin', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:person-individu:contestant:player-particip', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:apodiform bird', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:excavation:pool', 'root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:root vegetable', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:writing impleme', 'root:entity:abstraction-abs:attribute:shape-form:round shape:sphere', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :tracked vehicle', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair:chair of state', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:spacecraft-ball', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:fungus', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:optical device', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:thrush', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:rescue equipmen', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine:computer-comput:digital compute', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:mask', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:vest-waistcoat', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:beetle', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:bird of prey-ra:eagle-bird of J', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:firearm-piece-s:autoloader-self:automatic firea', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate:ape', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electronic devi:display-video d', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:connection-conn:attachment-bond', 'root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:womans clothing:dress-frock', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:saurian:lizard:chameleon-chama', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:top-cover:cap', 'root:entity:abstraction-abs:attribute', 'root:entity:physical entity:matter:substance:food-nutrient:beverage-drink-', 'root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit:citrus-citrus f', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:sporting dog-gu:spaniel', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:diapsid-diapsid:crocodilian rep:crocodile', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:watch-ticker', 'root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :ingredient-fixi:flavorer-flavou:condiment:sauce', 'root:entity:physical entity:object-physical:part-portion:piece:piece of cloth-', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:defensive struc:fortification-m', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:stork', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:amphibian', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:office furnitur', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:source of illum', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:furnishing:furniture-piece:seat:chair', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:shelter', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:fan', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:hunting dog:hound-hound dog:coonhound', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:brass-brass ins', 'root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:seed:grain-caryopsis:kernel', 'root:entity:physical entity:object-physical:whole-unit:living thing-an', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:robe', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:primate', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:equipment:gear-parapherna:rig:drill rig-drill', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:bar', 'root:entity:physical entity:object-physical:geological form:natural elevati:ridge:bar', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:article:ware', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment:overgarment-out', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:boat:sea boat', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:keyboard', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:memory device-s', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:passerine-passe:oscine-oscine b:thrush:nightingale-Lus', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:weapon-arm-weap:gun:firearm-piece-s', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:machine', 'root:entity:physical entity:matter:solid:food-solid food:produce-green g:vegetable-veggi:squash:winter squash', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:cartilaginous f:elasmobranch-se', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:wild sheep', 'root:entity:physical entity:matter:substance:food-nutrient:foodstuff-food :ingredient-fixi:flavorer-flavou:condiment', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:lepidopterous i:butterfly:pierid-pierid b', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:article:ware:tableware:cutlery-eating :spoon', 'root:entity:physical entity:matter:solid:food-solid food:produce-green g', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:rod', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:measuring instr:timepiece-timek:clock', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:signboard-sign', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:brake:brake system-br', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:cartilaginous f:elasmobranch-se:ray', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:craft:vessel-watercra:ship:warship-war ves:submersible-sub', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:optical instrum', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:soft-finned fis:cypriniform fis', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:orthopterous in', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:uniform', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:spiny-finned fi:plectognath-ple', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:seabird-sea bir:sphenisciform s', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:protective cove:sheath', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:aquatic vertebr:fish:bony fish:teleost fish-te:soft-finned fis:salmonid:salmon', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:self-propelled :motor vehicle-a', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:fabric-cloth-ma', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:mechanism:rotating mechan', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:plant-flora-pla', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:worm', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:echinoderm', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:electrical devi:transducer', 'root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:course', 'root:entity:physical entity:matter:substance:food-nutrient:nutriment-nouri:dish', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:shorebird-shore:plover:turnstone', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:even-toed ungul:ruminant:bovid:bovine:cattle-cows-kin', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:garment', 'root:entity:physical entity:matter:substance:agent', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:toy dog-toy:toy spaniel:English toy spa', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:tool:cutting impleme:cutter-cutlery-:edge tool', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:reptile-reptili:anapsid-anapsid', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:runner', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:wading bird-wad:shorebird-shore:plover', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:edentate', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:implement:sharpener', 'root:entity:abstraction-abs:attribute:shape-form:round shape:sphere:ball-globe-orb', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:parrot', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:toiletry-toilet:cream-ointment-', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:waterfowl-water', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:aquatic mammal:pinniped mammal:seal', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:prototherian', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:carnivore:canine-canid:dog-domestic do:working dog:watchdog-guard :pinscher', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :invertebrate:arthropod:insect:lepidopterous i:butterfly', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:apparel-wearing', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:excavation', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:ungulate-hoofed:odd-toed ungula:equine-equid:horse-Equus cab', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:lagomorph-gnawi', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:airfoil-aerofoi', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:floor cover-flo:mat', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:memorial-monume', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:restraint-const:safety belt-lif', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:keyboard instru', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:establishment:institution', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:aquatic bird:waterfowl-water:anseriform bird', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:wind instrument:free-reed instr', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:instrument:scientific inst:magnifier:microscope', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:mammal-mammalia:placental-place:aquatic mammal:cetacean-cetace:whale:toothed whale', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:commodity-trade:consumer goods', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:conveyance-tran:vehicle:wheeled vehicle:trailer-house t', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:piciform bird', 'root:entity:physical entity:object-physical:whole-unit:living thing-an:organism-being:animal-animate :chordate:vertebrate-cran:bird:cuculiform bird:cuckoo', 'root:entity:physical entity:object-physical:whole-unit:natural object:plant part-plan:plant organ:reproductive st:fruit:edible fruit', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:structure-const:building comple:plant-works-ind:factory-mill-ma', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:covering:clothing-articl:attire-garb-dre:hairpiece-false', 'root:entity:physical entity:object-physical:whole-unit:artifact-artefa:instrumentality:device:musical instrum:stringed instru:chordophone'],
+ },
+ },
+ {
+ description: 'Case Study 3 (Toxicity)',
+ loader: () => json('data/chi-paper/case-study-3.json'),
+ spec: {
+ ...defaults,
+ classes: ['toxic_mild'],
+ measures: ['accuracy', 'countObserved', 'countActual', 'precision', 'recall', 'falsePositives', 'falseNegatives'],
+ encoding: 'color',
+ normalization: 'total',
+ },
+ },
+];
+
+new App({
+ target: document.body,
+ props: { examples },
+});
diff --git a/src/components/App.svelte b/src/components/App.svelte
new file mode 100644
index 0000000..056f350
--- /dev/null
+++ b/src/components/App.svelte
@@ -0,0 +1,181 @@
+
+
+
+
+
+
+
+
+
+ {#if specVisible}
+
+
+
+ Specification All the configuration and state of the confusion matrix is stored in an easily shareable JSON format. Changing values in the textarea updates the visualization.
+ {
+ $spec = JSON.parse(textarea.value);
+ console.log($spec);
+ }}>Update
+
+
+ {/if}
+
+ {#await confusionPromise}
+
...waiting
+ {:then confusions}
+
+ {:catch error}
+
{error.message}
+ {/await}
+
diff --git a/src/components/CellBlank.svelte b/src/components/CellBlank.svelte
new file mode 100644
index 0000000..eea2ac8
--- /dev/null
+++ b/src/components/CellBlank.svelte
@@ -0,0 +1,40 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/src/components/CellColor.svelte b/src/components/CellColor.svelte
new file mode 100644
index 0000000..2b2d9f0
--- /dev/null
+++ b/src/components/CellColor.svelte
@@ -0,0 +1,48 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/components/CellSquare.svelte b/src/components/CellSquare.svelte
new file mode 100644
index 0000000..76423c0
--- /dev/null
+++ b/src/components/CellSquare.svelte
@@ -0,0 +1,64 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/components/CellStat.svelte b/src/components/CellStat.svelte
new file mode 100644
index 0000000..ca4033c
--- /dev/null
+++ b/src/components/CellStat.svelte
@@ -0,0 +1,28 @@
+
+
+
+
+
+
+
+{statistic[1]}
+
+
+
+
diff --git a/src/components/CellZero.svelte b/src/components/CellZero.svelte
new file mode 100644
index 0000000..3e1018f
--- /dev/null
+++ b/src/components/CellZero.svelte
@@ -0,0 +1,53 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/components/Label.svelte b/src/components/Label.svelte
new file mode 100644
index 0000000..fd07751
--- /dev/null
+++ b/src/components/Label.svelte
@@ -0,0 +1,103 @@
+
+
+
+
+
+
+{#if node.isLeaf()}
+
+ {truncate(node.data.name)}
+
+{:else if $spec.collapsed.includes(node.data.id)}
+ {
+ const index = $spec.collapsed.indexOf(node.data.id);
+ if (index > -1) {
+ $spec.collapsed.splice(index, 1);
+ $spec = $spec;
+ }
+ }}
+ class={$currentCell && $currentCell[direction] === node ? 'label active' : 'label'}>
+ {'>'}
+ {truncate(node.data.name)}
+
+{:else}
+
+ {
+ $spec.collapsed.push(node.data.id);
+ $spec = $spec;
+ }}>
+ ⋁
+
+ {truncate(node.data.name)}
+
+
+ {#if $spec.filter?.includes(node.data.id)}
+ {
+ const filterSet = new Set($spec.filter);
+ filterSet.delete(node.data.id);
+ $spec.filter = [...filterSet];
+ $spec = $spec;
+ }}>
+ ❌
+
+ {:else}
+ {
+ if (!$spec.filter || $spec.filter.length === 0) {
+ $spec.filter = [node.data.id];
+ } else {
+ const filterSet = new Set($spec.filter);
+ filterSet.add(node.data.id);
+ $spec.filter = [...filterSet];
+ }
+ $spec = $spec;
+ }}>
+ 🔎
+
+ {/if}
+
+{/if}
diff --git a/src/components/LegendColor.svelte b/src/components/LegendColor.svelte
new file mode 100644
index 0000000..e801552
--- /dev/null
+++ b/src/components/LegendColor.svelte
@@ -0,0 +1,47 @@
+
+
+
+
+
+
+
+
+ {#each [...Array(steps).keys()] as s}
+
+ {/each}
+
+
+
+
+
+{#each ticks as tick,i}
+ {format(tick, 1)}
+{/each}
\ No newline at end of file
diff --git a/src/components/LegendSize.svelte b/src/components/LegendSize.svelte
new file mode 100644
index 0000000..67260a7
--- /dev/null
+++ b/src/components/LegendSize.svelte
@@ -0,0 +1,49 @@
+
+
+
+
+
+
+{#each ticks as tick,i}
+
+
+ {format(tick, 1)}
+{/each}
\ No newline at end of file
diff --git a/src/components/Matrix.svelte b/src/components/Matrix.svelte
new file mode 100644
index 0000000..4da4e77
--- /dev/null
+++ b/src/components/Matrix.svelte
@@ -0,0 +1,224 @@
+
+
+
+
+
+
+
+ {#if $currentCell}
+ {$currentCell[0].data.name.substring(0, 21)} was labeled as {$currentCell[1].data.name.substring(0, 21)}
+ in {matrix.frequency($currentCell[0], $currentCell[1])} instances.
+ {:else}Hover over cells to show more information.{/if}
+
+
+
+
+
+
+ {#if $spec.filter?.length > 0}
+ {'< go back'}
+ {/if}
+
+
+ {$spec.normalization === 'total' ? 'Counts' : `${$spec.normalization} Probabilities`}
+
+ {#if $spec.encoding === 'color'}
+
+ {:else if $spec.encoding === 'size'}
+
+ {/if}
+
+
+
+
+ {#if highlightRow}
+
+ {/if}
+ {#if highlightCol}
+
+ {/if}
+
+
+ Observed
+ {#each layout as { node: predict, pos: predictPos }}
+
+
+
+
+
+ {/each}
+
+
+ Actual
+
+ {#each layout as { node: actual, pos: actualPos, span }}
+
+ {#if span > 0}
+ $currentCell && n.data.id === $currentCell[0].data.id) ? "black" : "#cccccc"} />
+ {/if}
+
+
+ {/each}
+
+
+
+ {#each layout as { node: actual, pos: actualPos }}
+
+ {#each layout as { node: predict, pos: predictPos }}
+ {#if !isFrontier(predict) || !isFrontier(actual)}
+
+ {:else if matrix.frequency(actual, predict) === 0}
+
+ {:else if $spec.encoding === 'color'}
+
+ {:else if $spec.encoding === 'size'}
+
+ {/if}
+ {/each}
+
+ {/each}
+
+
+
+ {#each columns as statistic, i}
+
+ {statistic.name()}
+ {#each layout as { node: row, pos: rowPos }}
+
+
+
+ {/each}
+
+ {/each}
+
+
+
diff --git a/src/components/MatrixWithUI.svelte b/src/components/MatrixWithUI.svelte
new file mode 100644
index 0000000..9a26049
--- /dev/null
+++ b/src/components/MatrixWithUI.svelte
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/components/UIOptions.svelte b/src/components/UIOptions.svelte
new file mode 100644
index 0000000..945ff8d
--- /dev/null
+++ b/src/components/UIOptions.svelte
@@ -0,0 +1,68 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/components/UIShelf.svelte b/src/components/UIShelf.svelte
new file mode 100644
index 0000000..d0833a9
--- /dev/null
+++ b/src/components/UIShelf.svelte
@@ -0,0 +1,197 @@
+
+
+
+
+
+
+Dimensions
+
+
+ {#each active as d, i}
+
+ deactivate(d)}>{d}
+ 0 ? 'activeArrow' : 'inactiveArrow'} on:click={() => moveLeft(i)}>◁
+ moveRight(i)}>▷
+
+ {/each}
+ {#each inactive as d}
+ {#if where?.label !== d}
+
+ activate(d)}>{d} activate
+
+ {/if}
+ {/each}
+
+
+ Shelf
+ Enable and disable different dimensions of the data. The order of dimension defines the nesting level.
+
+
+
+
+
+ {#if where}
+
+ {
+ $spec.where.qualifier = qualifierRef.value;
+ $spec = $spec;
+ }}>
+ actual
+ observed
+
+
+
+ {where.label}
+ removeWhere(0)}>×
+
+
+ {
+ $spec.where.is = isRef.value;
+ $spec = $spec;
+ }}>
+ {#each options(confusions, where.label) as opt}
+ {opt}
+ {/each}
+
+
+ {:else}
+ {#if inactive.length > 0}
+ {#each inactive as label, i}
+
+ {
+ $spec.where = {qualifier: 'actual', label, is: options(confusions, label)[0]};
+ $spec = $spec;
+ }}>{label}
+
+ {/each}
+ {:else}
+
All dimensions are already in use.
+ {/if}
+ {/if}
+
+
+ Where
+ Condition the confusion matrix on the value of a given label.
+
+
diff --git a/src/components/stores.js b/src/components/stores.js
new file mode 100644
index 0000000..f8995a0
--- /dev/null
+++ b/src/components/stores.js
@@ -0,0 +1,10 @@
+/*
+ * For licensing see accompanying LICENSE file.
+ *
+ * Copyright (C) 2022 Apple Inc. All Rights Reserved.
+ */
+
+import { writable } from 'svelte/store';
+
+export const currentCell = writable(null);
+export const spec = writable(null);
diff --git a/src/confusions.ts b/src/confusions.ts
new file mode 100644
index 0000000..877d4de
--- /dev/null
+++ b/src/confusions.ts
@@ -0,0 +1,259 @@
+/*
+ * For licensing see accompanying LICENSE file.
+ *
+ * Copyright (C) 2022 Apple Inc. All Rights Reserved.
+ */
+
+import type { Condition, Spec } from './specification';
+import { Entry, Matrix } from './matrix';
+import { rollup, sum } from 'd3-array';
+import { cloneDeep } from 'lodash';
+import ndarray from 'ndarray';
+import { Node } from './node';
+import { parseTagString as parse } from './parser';
+
+// TODO: Add testcases to these methods!
+// TODO: Consider working on strings as long as possible to get rid of `replacer` and `revivier`.
+// Ideally, we would want to have this backed by some more elaborate (database-like) system,
+// that provides these operations as queries.
+
+type Path = string;
+
+/** Captures a single confusion. */
+export interface Confusion {
+ actual: Array;
+ observed: Array;
+ count: number;
+}
+
+function topLevel(path: Path): string {
+ return path.split(':')[0];
+}
+
+export function dimensions(confusions: Array): Set {
+ const labelNames = new Set();
+ for (const { actual, observed } of confusions) {
+ for (const l of actual) {
+ labelNames.add(topLevel(l));
+ }
+ for (const l of observed) {
+ labelNames.add(topLevel(l));
+ }
+ }
+ return labelNames;
+}
+
+export function paths(node: Node): Set {
+ const result: Set = new Set();
+ const curr: Array = [];
+ node.fullorder(
+ n => curr.push(n.data),
+ n => {
+ if (n.isLeaf()) {
+ result.add(curr.join(':'));
+ }
+ curr.pop();
+ },
+ );
+ return result;
+}
+
+export function options(confusions: Array, label: string): Array {
+ const options: Set = new Set();
+ for (const { actual, observed } of confusions) {
+ const foundA = actual.find(l => topLevel(l) === label);
+ if (foundA) {
+ options.add(foundA);
+ }
+ const foundB = observed.find(l => topLevel(l) === label);
+ if (foundB) {
+ options.add(foundB);
+ }
+ }
+ return [...options];
+}
+
+function addMissingLabels(confusions: Array): void {
+ const labels = new Set();
+ for (const { actual, observed } of confusions) {
+ actual.forEach(p => labels.add(topLevel(p)));
+ observed.forEach(p => labels.add(topLevel(p)));
+ }
+ for (const { actual, observed } of confusions) {
+ for (const l of labels) {
+ if (!actual.find(c => topLevel(c) === l)) {
+ actual.push(`${l}:none`);
+ }
+ if (!observed.find(c => topLevel(c) === l)) {
+ observed.push(`${l}:none`);
+ }
+ }
+ }
+}
+
+function hasPathFromRoot(full: string, sub: string): boolean {
+ return full.includes(`${sub}:`) || (full === sub);
+}
+
+function filter(
+ confusions: Array,
+ filters: Array,
+): Array {
+ return confusions.filter(c => {
+ return filters.some(s => c.actual.some(p => hasPathFromRoot(p, s)))
+ && filters.some(s => c.actual.some(p => hasPathFromRoot(p, s)));
+ });
+}
+
+function condition(confusions: Array, cond: Condition): Array {
+ const newConfs = confusions.filter(c => c[cond.qualifier].some(l => l.includes(cond.is)));
+ for (const c of newConfs) {
+ c[cond.qualifier] = c[cond.qualifier].filter(l => !l.includes(cond.label));
+ }
+ return newConfs.filter(c => c.actual.length !== 0 && c.observed.length !== 0);
+}
+
+function marginalize(confusions: Array, keep: string): Map> {
+ const mmap: Map> = rollup(
+ confusions,
+ v => sum(v, d => d.count),
+ (d: Confusion) => d.actual.find(p => topLevel(p) === keep) ?? 'none',
+ (d: Confusion) => d.observed.find(p => topLevel(p) === keep) ?? 'none',
+ );
+ return mmap;
+}
+
+export function nest(paths: Array, parent: string, sub: string): void {
+ const parentIndex = paths.findIndex(p => topLevel(p) === parent);
+ const subIndex = paths.findIndex(p => topLevel(p) === sub);
+ if (subIndex > -1) {
+ paths[parentIndex] = paths[parentIndex].concat(`:${paths[subIndex]}`);
+ paths.splice(subIndex, 1);
+ }
+}
+
+export function linearize(paths: Array): Array {
+ const root = new Node('root');
+ paths.forEach(p => parse(p).forEach(l => root.merge(l)));
+ for (const label of root.children) {
+ label.preorder(n => {
+ if (n.children.length > 1) {
+ n.children = [
+ new Node(`{${n.leaves()
+ .map(c => c.data)
+ .join(',')}}`),
+ ];
+ }
+ });
+ }
+ return root.children.map(c => stringify(c));
+}
+
+export function stringify(choices: Node): string {
+ const result = [];
+ choices.preorder(n => result.push(n.data));
+ return result.join(':');
+}
+
+// TODO: Could become part of `Node` as a `pruneWith` function.
+export function prune(root: Entry): void {
+ root.postorder(n => {
+ if (n.children.length === 1 && n.children[0].isLeaf()) {
+ n.data.name = `${n.data.name}:${n.children[0].data.name}`;
+ n.children = [];
+ }
+ });
+}
+
+// TODO: Don't export this and write test for the complete pipeline.
+export function buildHierarchy(labels: Array): Entry {
+ const paths = labels.map(str => {
+ const levels = str.split(':');
+ const tl = new Node({ name: levels[0], id: levels[0], start: 0, end: 0 });
+ let curr = tl;
+ for (let i = 1; i < levels.length; ++i) {
+ const tmp = new Node({
+ name: levels[i],
+ id: curr.data.id.concat(`:${levels[i]}`),
+ start: 0,
+ end: 0,
+ });
+ curr.children.push(tmp);
+ curr = tmp;
+ }
+ return tl;
+ });
+
+ const root = paths.reduce(
+ (acc, p) => acc.merge(p, (a, b) => a.data.id === b.data.id),
+ new Node({ name: 'root', id: 'root', start: 0, end: 0 }),
+ );
+
+ return addRangeIndex(root);
+}
+
+export function addRangeIndex(root: Entry): Entry {
+ let leafCounter = 0;
+ root.postorder(n => {
+ if (n.isLeaf()) {
+ const range = { start: leafCounter, end: leafCounter + 1 };
+ n.data = { ...n.data, ...range };
+ leafCounter++;
+ } else {
+ const start = n.children[0].data.start;
+ const end = n.children[n.children.length - 1].data.end;
+ const range = { start, end };
+ n.data = { ...n.data, ...range };
+ }
+ });
+ return root;
+}
+
+export function buildMatrix(spec: Spec, confusions: Array): Matrix {
+ let cloned = cloneDeep(confusions);
+ addMissingLabels(cloned);
+
+ // Condition
+ if (spec.where && spec.where instanceof Array) {
+ throw new Error('Multiple conditions are currently not supported.');
+ } else if (spec.where && !(spec.where instanceof Array)) {
+ cloned = condition(cloned, spec.where);
+ }
+
+ // Filter
+ if (spec.filter && spec.filter.length > 0) {
+ cloned = filter(cloned, spec.filter);
+ }
+
+ // Powerset
+ for (const { actual, observed } of cloned) {
+ linearize(actual);
+ linearize(observed);
+ }
+
+ // Nest
+ for (let i = 1; i < spec.classes.length; ++i) {
+ for (const conf of cloned) {
+ nest(conf.actual, spec.classes[0], spec.classes[i]);
+ nest(conf.observed, spec.classes[0], spec.classes[i]);
+ }
+ }
+
+ // Marginalize
+ const map = marginalize(cloned, spec.classes[0]);
+
+ const hierarchy = buildHierarchy([...map.keys()]);
+ const entries = hierarchy.leaves();
+ const shape = [entries.length, entries.length];
+ const freqs = ndarray(new Int32Array(shape.reduce((acc, x) => acc * x, 1)), shape);
+
+ entries.forEach((actual, i) => {
+ entries.forEach((observed, j) => {
+ freqs.set(i, j, map.get(actual.data.id).get(observed.data.id));
+ });
+ });
+
+ prune(hierarchy.children[0]);
+
+ return new Matrix(freqs, hierarchy.children[0]); // TODO: Get rid of unneeded nesting
+}
diff --git a/src/layout.ts b/src/layout.ts
new file mode 100644
index 0000000..b254b15
--- /dev/null
+++ b/src/layout.ts
@@ -0,0 +1,83 @@
+/*
+ * For licensing see accompanying LICENSE file.
+ *
+ * Copyright (C) 2022 Apple Inc. All Rights Reserved.
+ */
+
+import type { Node, PredFn } from './node';
+
+export interface LayoutedNode {
+ node: Node;
+ pos: [number, number];
+ span: number;
+}
+
+export function layoutCompact(pred: PredFn, hierarchy: Node): Array> {
+ const currPos = [0, 0];
+ const numChilds = new Map();
+ const layout = [];
+ const isBottom = (node: Node): boolean => node.isLeaf() || !pred(node);
+ hierarchy.fullorder(
+ n => { // pre-order
+ layout.push({ node: n, pos: [currPos[0], currPos[1]] });
+ currPos[0] += 1;
+
+ if (isBottom(n)) {
+ numChilds.set(n, 1);
+ }
+ },
+ n => { // post-order
+ if (!isBottom(n)) {
+ const nc = n.children.reduce((acc, c) => acc + numChilds.get(c), 0);
+ numChilds.set(n, nc);
+ }
+ currPos[0] -= 1;
+
+ if (isBottom(n)) {
+ currPos[1] += 1;
+ }
+ },
+ pred,
+ );
+ layout.forEach(l => {
+ l.span = numChilds.get(l.node);
+ return l;
+ });
+ return layout;
+}
+
+export function layoutClassic(pred: PredFn, hierarchy: Node): Array> {
+ const currPos = [0, 0];
+ const numDescend = new Map();
+ const layout = [];
+ const isBottom = (node: Node): boolean => node.isLeaf() || !pred(node);
+ hierarchy.fullorder(
+ n => { // pre-order
+ layout.push({ node: n, pos: [currPos[0], currPos[1]] });
+ currPos[0] += 1;
+ currPos[1] += 1;
+
+ if (isBottom(n)) {
+ numDescend.set(n, 0);
+ }
+ },
+ n => { // post-order
+ if (!isBottom(n)) {
+ const nc = n.children.length
+ + n.children.reduce((acc, c) => acc + numDescend.get(c), 0);
+ numDescend.set(n, nc);
+ }
+ currPos[0] -= 1;
+ },
+ pred,
+ );
+ layout.forEach(l => {
+ l.span = numDescend.get(l.node);
+ return l;
+ });
+ return layout;
+}
+
+export function flip(layout: Array>): Array> {
+ return layout.map(({ node, pos, span }) => ({ node, pos: [pos[1], pos[0]], span }));
+}
diff --git a/src/lib.ts b/src/lib.ts
new file mode 100644
index 0000000..c658641
--- /dev/null
+++ b/src/lib.ts
@@ -0,0 +1,74 @@
+/*
+ * For licensing see accompanying LICENSE file.
+ *
+ * Copyright (C) 2022 Apple Inc. All Rights Reserved.
+ */
+
+import type { Confusion } from './confusions';
+import { defaults } from './specification';
+import Matrix from './components/Matrix.svelte';
+import MatrixWithUI from './components/MatrixWithUI.svelte';
+import type { Spec } from './specification';
+import { spec as specStore } from './components/stores.js';
+
+export function embed(
+ id: string,
+ spec: Spec,
+ confusions: Array,
+): void {
+ const ref = document.getElementById(id);
+ if (!ref) {
+ console.warn(`Could not find container "${id}"`);
+ }
+
+ specStore.set({ ...defaults, ...spec });
+
+ new MatrixWithUI({
+ target: ref,
+ props: { confusions },
+ });
+}
+
+export function embedElement(
+ element: HTMLElement,
+ spec: Spec,
+ confusions: Array,
+): void {
+ specStore.set({ ...defaults, ...spec });
+
+ new MatrixWithUI({
+ target: element,
+ props: { confusions },
+ });
+}
+
+export function embedWithoutUI(
+ id: string,
+ spec: Spec,
+ confusions: Array,
+): void {
+ const ref = document.getElementById(id);
+ if (!ref) {
+ console.warn(`Could not find container "${id}"`);
+ }
+
+ specStore.set({ ...defaults, ...spec });
+
+ new Matrix({
+ target: ref,
+ props: { confusions },
+ });
+}
+
+export function embedElementWithoutUI(
+ element: HTMLElement,
+ spec: Spec,
+ confusions: Array,
+): void {
+ specStore.set({ ...defaults, ...spec });
+
+ new Matrix({
+ target: element,
+ props: { confusions },
+ });
+}
diff --git a/src/loaders/csv.ts b/src/loaders/csv.ts
new file mode 100644
index 0000000..ec43689
--- /dev/null
+++ b/src/loaders/csv.ts
@@ -0,0 +1,28 @@
+/*
+ * For licensing see accompanying LICENSE file.
+ *
+ * Copyright (C) 2022 Apple Inc. All Rights Reserved.
+ */
+
+import { Confusion, stringify } from '../confusions';
+import { csvParse } from 'd3-dsv';
+import { parseTagString as parse } from '../parser';
+
+interface ConfusionInterface {
+ 'Ground Truth': string;
+ 'Prediction': string;
+ 'Count': string;
+}
+
+export async function csv(filename: string): Promise> {
+ const response = await fetch(filename);
+ const text = await response.text();
+ const data: Array = csvParse(text);
+
+ return data.map(d => ({
+ // TODO: Find a better solution than adding virtual nodes
+ actual: parse(d['Ground Truth']).map(l => `root:${stringify(l)}`),
+ observed: parse(d.Prediction).map(l => `root:${stringify(l)}`),
+ count: Number(d.Count),
+ }));
+}
diff --git a/src/loaders/index.ts b/src/loaders/index.ts
new file mode 100644
index 0000000..5628603
--- /dev/null
+++ b/src/loaders/index.ts
@@ -0,0 +1,11 @@
+/*
+ * For licensing see accompanying LICENSE file.
+ *
+ * Copyright (C) 2022 Apple Inc. All Rights Reserved.
+ */
+
+export { csv } from './csv';
+export { vega } from './vega';
+export { synth } from './synth';
+export { vegaCompressed } from './vega-compressed';
+export { json } from './json';
diff --git a/src/loaders/json.ts b/src/loaders/json.ts
new file mode 100644
index 0000000..52d65a5
--- /dev/null
+++ b/src/loaders/json.ts
@@ -0,0 +1,16 @@
+/*
+ * For licensing see accompanying LICENSE file.
+ *
+ * Copyright (C) 2022 Apple Inc. All Rights Reserved.
+ */
+
+import type { Confusion } from '../confusions';
+
+// TODO: Write test case
+export async function json(filename: string): Promise> {
+ const response = await fetch(filename);
+ const json = await response.json();
+ const data = json.data.values;
+
+ return data;
+}
diff --git a/src/loaders/synth.ts b/src/loaders/synth.ts
new file mode 100644
index 0000000..380b2f2
--- /dev/null
+++ b/src/loaders/synth.ts
@@ -0,0 +1,41 @@
+/*
+ * For licensing see accompanying LICENSE file.
+ *
+ * Copyright (C) 2022 Apple Inc. All Rights Reserved.
+ */
+
+import type { Confusion } from '../confusions';
+import { powerset } from '../setops';
+
+function allChoices(): Array> {
+ const vehicles = [
+ 'vehicle:motorized:car',
+ 'vehicle:motorized:motorcycle',
+ 'vehicle:airplane',
+ ];
+ const states = [
+ 'state:parked',
+ 'state:moving',
+ ];
+ const animals = [
+ 'animal:flying:bird',
+ 'animal:walking:cat',
+ ];
+
+ return powerset([...vehicles, ...states, ...animals]);
+}
+
+export function synth(): Array {
+ const choices = allChoices();
+ const result: Array = [];
+ for (const actual of choices) {
+ for (const observed of choices) {
+ result.push({
+ actual: [...actual],
+ observed: [...observed],
+ count: Math.floor(Math.random() * 2),
+ });
+ }
+ }
+ return result;
+}
diff --git a/src/loaders/vega-compressed.ts b/src/loaders/vega-compressed.ts
new file mode 100644
index 0000000..3205b19
--- /dev/null
+++ b/src/loaders/vega-compressed.ts
@@ -0,0 +1,27 @@
+/*
+ * For licensing see accompanying LICENSE file.
+ *
+ * Copyright (C) 2022 Apple Inc. All Rights Reserved.
+ */
+
+import { Confusion, stringify } from '../confusions';
+import { parseTagString as parse } from '../parser';
+
+interface ConfusionInterface {
+ rt: string; // eslint-disable-line camelcase
+ at: string; // eslint-disable-line camelcase
+ oc: number;
+}
+
+// TODO: Write test case
+export async function vegaCompressed(filename: string): Promise> {
+ const response = await fetch(filename);
+ const json = await response.json();
+ const data = json.data.values;
+
+ return data.map((d: ConfusionInterface): Confusion => ({
+ actual: parse(d.rt).map(l => stringify(l)),
+ observed: parse(d.at).map(l => stringify(l)),
+ count: d.oc,
+ }));
+}
diff --git a/src/loaders/vega.ts b/src/loaders/vega.ts
new file mode 100644
index 0000000..b766bb2
--- /dev/null
+++ b/src/loaders/vega.ts
@@ -0,0 +1,29 @@
+/*
+ * For licensing see accompanying LICENSE file.
+ *
+ * Copyright (C) 2022 Apple Inc. All Rights Reserved.
+ */
+
+import { Confusion, stringify } from '../confusions';
+import { parseTagString as parse } from '../parser';
+
+interface ConfusionInterface {
+ reference_text: string; // eslint-disable-line camelcase
+ annotation_text: string; // eslint-disable-line camelcase
+ occurrence: number;
+}
+
+// TODO: Write test case
+export async function vega(filename: string): Promise> {
+ const response = await fetch(filename);
+ const json = await response.json();
+ const data = json.data.values;
+
+ return data.map((d: ConfusionInterface): Confusion => {
+ return {
+ actual: parse(d.reference_text).map(l => stringify(l)),
+ observed: parse(d.annotation_text).map(l => stringify(l)),
+ count: d.occurrence,
+ };
+ });
+}
diff --git a/src/matrix.ts b/src/matrix.ts
new file mode 100644
index 0000000..090fe36
--- /dev/null
+++ b/src/matrix.ts
@@ -0,0 +1,101 @@
+/*
+ * For licensing see accompanying LICENSE file.
+ *
+ * Copyright (C) 2022 Apple Inc. All Rights Reserved.
+ */
+
+import type { NdArray } from 'ndarray';
+import type { Node } from './node';
+import ops from 'ndarray-ops';
+
+export interface RangeIndex {
+ start: number;
+ end: number;
+}
+
+export interface Data {
+ id: string;
+ name: string;
+}
+
+export type Entry = Node;
+
+// TODO: use `ndarray-sum` to speed up these ops.
+// TODO: Consider using prefix sum;
+export class Matrix {
+ constructor(
+ readonly freqs: NdArray,
+ readonly axis: Entry,
+ ) { }
+
+ slice(actual: RangeIndex, observed: RangeIndex): NdArray {
+ return this.freqs
+ .lo(actual.start, observed.start)
+ .hi(actual.end - actual.start, observed.end - observed.start);
+ }
+
+ classes(): Array {
+ const result = [];
+ this.axis.preorder(n => result.push(n));
+ return result;
+ }
+
+ frequency(actual: Entry, observed: Entry): number {
+ const slice = this.slice(actual.data, observed.data);
+ return ops.sum(slice);
+ }
+
+ total(): number {
+ return ops.sum(this.freqs);
+ }
+
+ totalRow(row: Entry): number {
+ const slice = this.slice(row.data, { start: 0, end: this.freqs.shape[1] });
+ return ops.sum(slice);
+ }
+
+ totalColumn(col: Entry): number {
+ const slice = this.slice({ start: 0, end: this.freqs.shape[0] }, col.data);
+ return ops.sum(slice);
+ }
+
+ truePositives(forClass: Entry): number {
+ return forClass
+ .leaves()
+ .reduce((acc, c) => acc + this.frequency(c, c), 0);
+ }
+
+ falsePositives(forClass: Entry): number {
+ const tpfp = this.totalColumn(forClass);
+ return tpfp - this.truePositives(forClass);
+ }
+
+ trueNegatives(forClass: Entry): number {
+ const completeDiag = this.axis
+ .leaves()
+ .reduce((acc, c) => acc + this.frequency(c, c), 0);
+ return completeDiag - this.truePositives(forClass);
+ }
+
+ falseNegatives(forClass: Entry): number {
+ const tnfn = this.totalRow(forClass);
+ return tnfn - this.truePositives(forClass);
+ }
+}
+
+export function precision(matrix: Matrix, forClass: Entry): number {
+ return matrix.truePositives(forClass) / matrix.totalColumn(forClass);
+}
+
+export function recall(matrix: Matrix, forClass: Entry): number {
+ return matrix.truePositives(forClass) / matrix.totalRow(forClass);
+}
+
+// TODO: This could probably be simplified
+export function accuracy(matrix: Matrix, forClass: Entry): number {
+ const tp = matrix.truePositives(forClass);
+ const tn = matrix.trueNegatives(forClass);
+ const fp = matrix.falsePositives(forClass);
+ const fn = matrix.falseNegatives(forClass);
+ return (tp + tn) / (tp + tn + fp + fn);
+}
diff --git a/src/node.ts b/src/node.ts
new file mode 100644
index 0000000..93f643d
--- /dev/null
+++ b/src/node.ts
@@ -0,0 +1,111 @@
+/*
+ * For licensing see accompanying LICENSE file.
+ *
+ * Copyright (C) 2022 Apple Inc. All Rights Reserved.
+ */
+
+import { nop } from './util';
+
+// I keep on looking this up, so I'll put that here once and for all.
+// Height of a node: longest number of edges to a leaf
+// Depth of a node: number of edges to root
+
+export type PredFn = (n: Node) => boolean;
+export type VisitFn = (n: Node) => void;
+export type IdentityFn = (a: Node, b: Node) => boolean;
+
+function id(a: Node, b: Node): boolean {
+ return a.data === b.data;
+}
+
+export class Node {
+ children?: Array>;
+ constructor(
+ public data: T,
+ ...children: Array>
+ ) {
+ this.data = data;
+ this.children = children ? children : [];
+ }
+
+ isLeaf(): boolean {
+ return this.children.length === 0;
+ }
+
+ fullorder(pre: VisitFn, post: VisitFn, pred?: PredFn): void {
+ pre(this);
+ if (!pred || pred(this)) {
+ for (const c of this.children) {
+ c.fullorder(pre, post, pred);
+ }
+ }
+ post(this);
+ }
+
+ preorder(visit: VisitFn, pred?: PredFn): void {
+ this.fullorder(visit, nop, pred);
+ }
+
+ postorder(visit: VisitFn, pred?: PredFn): void {
+ this.fullorder(nop, visit, pred);
+ }
+
+ leaves(pred?: PredFn): Array> {
+ const leafs = [];
+ this.preorder(
+ n => {
+ if (n.isLeaf() || (pred && !pred(n))) {
+ leafs.push(n);
+ }
+ },
+ pred,
+ );
+ return leafs;
+ }
+
+ merge(other: Node, identity: IdentityFn = id): this {
+ const match = this.children.find(own => identity(own, other));
+ if (match) {
+ other.children.forEach(c => match.merge(c, identity));
+ } else {
+ this.children.push(other);
+ }
+ return this;
+ }
+
+ has(subtree: Node, identity: IdentityFn = id): boolean {
+ const match = this.children.find(own => identity(own, subtree));
+ if (match) {
+ return subtree.children.every(c => match.has(c, identity));
+ } else {
+ return false;
+ }
+ }
+
+ // TODO: Consider a `Path` type here (we don't allow branches)
+ find(node: Node, identity: IdentityFn = id): Node | undefined {
+ if (node.isLeaf()) {
+ return this.children.find(own => identity(own, node));
+ } else {
+ const match = this.children.find(own => identity(own, node));
+ if (match) {
+ return match.find(node.children[0], identity);
+ }
+ }
+ }
+
+ // TODO: Consider a `Path` type here (we don't allow branches)
+ remove(node: Node, identity: IdentityFn = id): Node | undefined {
+ if (node.isLeaf()) {
+ const index = this.children.findIndex(own => identity(own, node));
+ if (index > -1) {
+ return this.children.splice(index, 1)[0];
+ }
+ } else {
+ const match = this.children.find(own => identity(own, node));
+ if (match) {
+ return match.remove(node, identity);
+ }
+ }
+ }
+}
diff --git a/src/parser.ts b/src/parser.ts
new file mode 100644
index 0000000..38e8222
--- /dev/null
+++ b/src/parser.ts
@@ -0,0 +1,125 @@
+/*
+ * For licensing see accompanying LICENSE file.
+ *
+ * Copyright (C) 2022 Apple Inc. All Rights Reserved.
+ */
+
+/**
+ * Labels may use the following grammar:
+ *
+ * ::= | | ":"
+ * ::= ([1-9] | [a-z])+
+ * ::= "[" "," "]"
+ * ::= | ","
+ */
+
+import { Node } from './node';
+
+export function mergeMultiple(parent: Node, others: Array>): void {
+ others.reduce((acc, n) => acc.merge(n), parent);
+}
+
+export function parseTagString(str: string): Array> {
+ const tokens = tokenize(str);
+ const delimiter = new Set([',', ':', '[', ']']);
+
+ let i = 0;
+
+ function eat(char): void {
+ if (tokens[i] !== char) {
+ throw new Error(`Expected "${char}, got ${tokens[i]}".`);
+ }
+ i++;
+ }
+
+ function parseCategoryColon(): Array> {
+ if (tokens[i + 1] === ':') {
+ const n = new Node(parseText());
+ eat(':');
+ mergeMultiple(n, parsePath());
+ return [n];
+ }
+ }
+
+ function parsePath(): Array> {
+ return parseCategoryColon()
+ ?? parseMulti()
+ ?? parseEntity();
+ }
+
+ function parseText(): string {
+ if (tokens[i] && !delimiter.has(tokens[i])) {
+ const value = tokens[i];
+ i++;
+ return value;
+ }
+ }
+
+ function parseEntity(): Array> {
+ const text = parseText();
+ if (text) {
+ return [new Node(text)];
+ }
+ }
+
+ function parseMulti(): Array> {
+ if (tokens[i] === '[') {
+ eat('[');
+ const nodes = parsePath();
+ eat(',');
+ nodes.push(...parseList());
+ eat(']');
+ return nodes;
+ }
+ }
+
+ function parseListComma(): Array> {
+ if (tokens[i + 1] === ',') {
+ const nodes = parsePath();
+ eat(',');
+ nodes.push(...parseList());
+ return nodes;
+ }
+ }
+
+ function parseList(): Array> {
+ return parseListComma()
+ ?? parsePath();
+ }
+
+ return parsePath();
+}
+
+// TODO: Write proper tokenizer with classes/enums.
+export function tokenize(str: string): Array {
+ let i = 0;
+ const tokens = [];
+
+ let curr = '';
+ while (i < str.length) {
+ switch (str.charAt(i)) {
+ case ':':
+ if (curr !== '') { tokens.push(curr); curr = ''; }
+ tokens.push(str.charAt(i));
+ break;
+ case ',':
+ if (curr !== '') { tokens.push(curr); curr = ''; }
+ tokens.push(str.charAt(i));
+ break;
+ case '[':
+ if (curr !== '') { tokens.push(curr); curr = ''; }
+ tokens.push(str.charAt(i));
+ break;
+ case ']':
+ if (curr !== '') { tokens.push(curr); curr = ''; }
+ tokens.push(str.charAt(i));
+ break;
+ default: curr += str.charAt(i);
+ }
+ i++;
+ }
+ if (curr !== '') {
+ tokens.push(curr);
+ }
+ return tokens;
+}
diff --git a/src/setops.ts b/src/setops.ts
new file mode 100644
index 0000000..2c7e931
--- /dev/null
+++ b/src/setops.ts
@@ -0,0 +1,23 @@
+/*
+ * For licensing see accompanying LICENSE file.
+ *
+ * Copyright (C) 2022 Apple Inc. All Rights Reserved.
+ */
+
+// TODO: We could use generator functions to explore the full space with constand memory.
+export function powerset(elements: Array): Array> {
+ return elements.reduce((acc: Array>, value: T) => {
+ return acc.concat(acc.map(set => new Set([value, ...set])));
+ }, [new Set()]);
+}
+
+export function nest(parent: Array, sub: Array): Array> {
+ // Prepopulate the array because sub is optional
+ const result = [...parent.map(p => [p])];
+ for (const p of parent) {
+ for (const s of sub) {
+ result.push([p, s]);
+ }
+ }
+ return result;
+}
diff --git a/src/specification.ts b/src/specification.ts
new file mode 100644
index 0000000..026a22f
--- /dev/null
+++ b/src/specification.ts
@@ -0,0 +1,60 @@
+/*
+ * For licensing see accompanying LICENSE file.
+ *
+ * Copyright (C) 2022 Apple Inc. All Rights Reserved.
+ */
+
+// TODO: Support more complex queries later on.
+export interface Condition {
+ qualifier: 'actual' | 'observed';
+ label: string,
+ is: string,
+}
+
+export type Measure = 'count'
+| 'precision'
+| 'recall'
+| 'accuracy'
+| 'countActual'
+| 'countObserved'
+| 'truePositives'
+| 'trueNegatives'
+| 'falsePositives'
+| 'falseNegatives';
+
+export type Normalization = 'total' | 'row' | 'column';
+export type Encoding = 'size' | 'color';
+
+export interface Spec extends Defaults {
+ classes: Array;
+ where?: Condition // TODO: Add multiple conditionals ombined using AND back in.
+ filter?: Array; // Filters are combined using OR.
+}
+
+export interface Defaults {
+ normalization: Normalization;
+ encoding: Encoding;
+ collapsed: Array;
+ measures: Array;
+}
+
+export const defaults: Defaults = {
+ normalization: 'total',
+ encoding: 'color',
+ collapsed: [],
+ measures: [
+ 'precision',
+ 'recall',
+ 'accuracy',
+ // 'countActual',
+ // 'countObserved',
+ // 'truePositives',
+ // 'trueNegatives',
+ // 'falsePositives',
+ // 'falseNegatives',
+ ],
+};
+
+// TODO: Create a state object that takes care of internal representation.
+// Then, we would only need methods to convert between that class and `Spec`.
+// This state object could also hold the data.
diff --git a/src/util.ts b/src/util.ts
new file mode 100644
index 0000000..6968ca3
--- /dev/null
+++ b/src/util.ts
@@ -0,0 +1,9 @@
+/*
+ * For licensing see accompanying LICENSE file.
+ *
+ * Copyright (C) 2022 Apple Inc. All Rights Reserved.
+ */
+
+export function nop(..._args: Array): void {
+ // do nothing
+}
diff --git a/src/view/index.ts b/src/view/index.ts
new file mode 100644
index 0000000..5a59667
--- /dev/null
+++ b/src/view/index.ts
@@ -0,0 +1,41 @@
+/*
+ * For licensing see accompanying LICENSE file.
+ *
+ * Copyright (C) 2022 Apple Inc. All Rights Reserved.
+ */
+
+import { accuracy, Matrix, precision, recall } from '../matrix';
+import { ColumnNormalization, Mapping, RowNormalization } from './mapping';
+import { Count, Probability, Statistic } from './statistics';
+import type { Measure, Normalization } from '../specification';
+import { Total } from './mapping';
+
+export function toStatistic(matrix: Matrix, measure: Measure): Statistic {
+ switch (measure) {
+ case 'precision': return new Probability(matrix, 'Precision', precision);
+ case 'recall': return new Probability(matrix, 'Recall', recall);
+ case 'accuracy': return new Probability(matrix, 'Accuracy', accuracy);
+ case 'countActual': return new Count(matrix, 'Count Actual', (m, e) => m.totalRow(e));
+ case 'countObserved': return new Count(matrix, 'Count Observed', (m, e) => m.totalColumn(e));
+ case 'truePositives': return new Count(matrix, 'True Positives', (m, e) => m.truePositives(e));
+ case 'trueNegatives': return new Count(matrix, 'True Negatives', (m, e) => m.trueNegatives(e));
+ case 'falsePositives': return new Count(matrix, 'False Positives', (m, e) => m.falsePositives(e));
+ case 'falseNegatives': return new Count(matrix, 'False Negatives', (m, e) => m.falseNegatives(e));
+ default: throw new Error(`No such measure: ${measure}.`);
+ }
+}
+
+export function toMapping(
+ matrix: Matrix,
+ collapsed: Set,
+ normalization: Normalization,
+): Mapping {
+ switch (normalization) {
+ case 'total': return new Total(matrix, collapsed);
+ case 'row': return new RowNormalization(matrix);
+ case 'column': return new ColumnNormalization(matrix);
+ default: throw new Error(`No such normalization: ${normalization}.`);
+ }
+}
+
+export { nFormatter as format, Statistic } from './statistics';
diff --git a/src/view/mapping.ts b/src/view/mapping.ts
new file mode 100644
index 0000000..ac375ba
--- /dev/null
+++ b/src/view/mapping.ts
@@ -0,0 +1,79 @@
+/*
+ * For licensing see accompanying LICENSE file.
+ *
+ * Copyright (C) 2022 Apple Inc. All Rights Reserved.
+ */
+
+import type { Entry, Matrix } from '../matrix';
+import { ScaleLinear, scaleLinear } from 'd3-scale';
+
+export interface Mapping {
+ value(actual: Entry, observed: Entry): number,
+ scale(): ScaleLinear,
+}
+
+export class Total {
+ private scaleLin: ScaleLinear;
+ constructor(private matrix: Matrix, collapsed: Set) {
+ const isFrontier = (e: Entry): boolean => e.isLeaf() || collapsed.has(e.data.id);
+ const minmax = [Number.POSITIVE_INFINITY, Number.NEGATIVE_INFINITY];
+ for (const actual of matrix.classes()) {
+ for (const observed of matrix.classes()) {
+ if (isFrontier(actual) && isFrontier(observed)) {
+ const freq = matrix.frequency(actual, observed);
+ minmax[1] = Math.max(minmax[1], freq);
+ if (freq > 0) {
+ minmax[0] = Math.min(minmax[0], freq);
+ }
+ }
+ }
+ }
+ this.scaleLin = scaleLinear().domain(minmax);
+ }
+
+ scale(): ScaleLinear {
+ return this.scaleLin;
+ }
+
+ value(actual: Entry, observed: Entry): number {
+ return this.scaleLin(this.matrix.frequency(actual, observed));
+ }
+}
+
+export class RowNormalization {
+ private scaleMap: Map>;
+ constructor(private matrix: Matrix) {
+ const scaleMap = new Map();
+ for (const row of matrix.classes()) {
+ scaleMap.set(row, scaleLinear().domain([0, matrix.totalRow(row)]));
+ }
+ this.scaleMap = scaleMap;
+ }
+
+ scale(): ScaleLinear {
+ return scaleLinear();
+ }
+
+ value(actual: Entry, observed: Entry): number {
+ return this.scaleMap.get(actual)(this.matrix.frequency(actual, observed));
+ }
+}
+
+export class ColumnNormalization {
+ private scaleMap: Map>;
+ constructor(private matrix: Matrix) {
+ const scaleMap = new Map();
+ for (const row of matrix.classes()) {
+ scaleMap.set(row, scaleLinear().domain([0, matrix.totalColumn(row)]));
+ }
+ this.scaleMap = scaleMap;
+ }
+
+ scale(): ScaleLinear {
+ return scaleLinear();
+ }
+
+ value(actual: Entry, observed: Entry): number {
+ return this.scaleMap.get(observed)(this.matrix.frequency(actual, observed));
+ }
+}
diff --git a/src/view/statistics.ts b/src/view/statistics.ts
new file mode 100644
index 0000000..695f613
--- /dev/null
+++ b/src/view/statistics.ts
@@ -0,0 +1,82 @@
+/*
+ * For licensing see accompanying LICENSE file.
+ *
+ * Copyright (C) 2022 Apple Inc. All Rights Reserved.
+ */
+
+import type { Entry, Matrix } from '../matrix';
+import { ScaleLinear, scaleLinear } from 'd3-scale';
+
+export interface Statistic {
+ name(): string,
+ value(entry: Entry): [normalized: number, valueStr: string],
+}
+
+/** Adapted from https://stackoverflow.com/a/9462382 */
+// TODO: Use d3-format
+export function nFormatter(num: number, digits: number): string {
+ const si = [
+ { value: 1, symbol: '' },
+ { value: 1E3, symbol: 'k' },
+ { value: 1E6, symbol: 'M' },
+ { value: 1E9, symbol: 'G' },
+ { value: 1E12, symbol: 'T' },
+ { value: 1E15, symbol: 'P' },
+ { value: 1E18, symbol: 'E' },
+ ];
+ const rx = /\.0+$|(\.[0-9]*[1-9])0+$/;
+ let i: number;
+ for (i = si.length - 1; i > 0; i--) {
+ if (num >= si[i].value) {
+ break;
+ }
+ }
+ return (num / si[i].value).toFixed(digits).replace(rx, '$1') + si[i].symbol;
+}
+
+export class Probability implements Statistic {
+ constructor(
+ private matrix: Matrix,
+ private desc: string,
+ private fn: (m: Matrix, e: Entry) => number,
+ private digits: number = 2,
+ ) {}
+
+ name(): string {
+ return this.desc;
+ }
+
+ value(entry: Entry): [normalized: number, valueStr: string] {
+ const normalized = this.fn(this.matrix, entry);
+ const valueStr = normalized.toFixed(this.digits);
+ return [normalized, valueStr];
+ }
+}
+
+export class Count implements Statistic {
+ private scale: ScaleLinear;
+ constructor(
+ private matrix: Matrix,
+ private desc: string,
+ private fn: (m: Matrix, e: Entry) => number,
+ ) {
+ const minmax = [Infinity, -Infinity];
+ this.matrix.axis.preorder(n => {
+ const count = fn(matrix, n);
+ minmax[0] = Math.min(minmax[0], count);
+ minmax[1] = Math.max(minmax[1], count);
+ });
+ this.scale = scaleLinear().domain(minmax);
+ }
+
+ name(): string {
+ return this.desc;
+ }
+
+ value(entry: Entry): [normalized: number, valueStr: string] {
+ const count = this.fn(this.matrix, entry);
+ const normalized = this.scale(count);
+ const valueStr = nFormatter(count, 0);
+ return [normalized, valueStr];
+ }
+}
diff --git a/tests/confusions.test.ts b/tests/confusions.test.ts
new file mode 100644
index 0000000..e318402
--- /dev/null
+++ b/tests/confusions.test.ts
@@ -0,0 +1,52 @@
+/*
+ * For licensing see accompanying LICENSE file.
+ *
+ * Copyright (C) 2022 Apple Inc. All Rights Reserved.
+ */
+
+import { buildHierarchy, dimensions, linearize, nest, paths, stringify } from '../src/confusions';
+import { Node } from '../src/node';
+import { synth } from '../src/loaders/synth';
+
+test('Parse and build simple tree', () => {
+ const labels = ['a:b', 'a:c'];
+ const root = buildHierarchy(labels);
+
+ let result = '';
+ root.fullorder(n => result += n.data.name, n => result += n.data.name);
+ expect(result).toBe('rootabbccaroot');
+});
+
+test('Linearize', () => {
+ expect(linearize(['a:b', 'a:c'])).toStrictEqual(['a:{b,c}']);
+ expect(linearize(['a:b', 'x:y'])).toStrictEqual(['a:b', 'x:y']);
+});
+
+test('Nest labels', () => {
+ const labels = ['abc:a', 'xy:x'];
+ nest(labels, 'abc', 'xy');
+ expect(labels).toStrictEqual(['abc:a:xy:x']);
+});
+
+test('Stringify', () => {
+ expect(stringify(new Node('a'))).toStrictEqual('a');
+ expect(stringify(new Node('a', new Node('b')))).toStrictEqual('a:b');
+});
+
+test('Extract dimensions', () => {
+ const dims = dimensions(synth());
+ expect(dims).toStrictEqual(new Set(['state', 'vehicle', 'animal']));
+});
+
+test('Extract path', () => {
+ const root = new Node(
+ 'a',
+ new Node(
+ 'b',
+ new Node('c'),
+ new Node('d'),
+ ),
+ new Node('e'),
+ );
+ expect(paths(root)).toStrictEqual(new Set(['a:b:c', 'a:b:d', 'a:e']));
+});
diff --git a/tests/layout.test.ts b/tests/layout.test.ts
new file mode 100644
index 0000000..941ab72
--- /dev/null
+++ b/tests/layout.test.ts
@@ -0,0 +1,59 @@
+/*
+ * For licensing see accompanying LICENSE file.
+ *
+ * Copyright (C) 2022 Apple Inc. All Rights Reserved.
+ */
+
+import { flip, layoutClassic, layoutCompact } from '../src/layout';
+import { simpleTree } from './node.test';
+
+test('layoutCompactVertical', () => {
+ const positions = [
+ { node: 'a', pos: [0, 0], span: 5 },
+ { node: 'b', pos: [1, 0], span: 2 },
+ { node: 'e', pos: [2, 0], span: 1 },
+ { node: 'f', pos: [2, 1], span: 1 },
+ { node: 'c', pos: [1, 2], span: 1 },
+ { node: 'd', pos: [1, 3], span: 2 },
+ { node: 'g', pos: [2, 3], span: 1 },
+ { node: 'h', pos: [2, 4], span: 1 },
+ ];
+
+ const l = layoutCompact(_ => true, simpleTree());
+ const result = l.map(({ node, pos, span }) => ({ node: node.data, pos, span }));
+ expect(result).toStrictEqual(positions);
+});
+
+test('layoutCompactHorizontal', () => {
+ const positions = [
+ { node: 'a', pos: [0, 0], span: 5 },
+ { node: 'b', pos: [0, 1], span: 2 },
+ { node: 'e', pos: [0, 2], span: 1 },
+ { node: 'f', pos: [1, 2], span: 1 },
+ { node: 'c', pos: [2, 1], span: 1 },
+ { node: 'd', pos: [3, 1], span: 2 },
+ { node: 'g', pos: [3, 2], span: 1 },
+ { node: 'h', pos: [4, 2], span: 1 },
+ ];
+
+ const l = flip(layoutCompact(_ => true, simpleTree()));
+ const result = l.map(({ node, pos, span }) => ({ node: node.data, pos, span }));
+ expect(result).toStrictEqual(positions);
+});
+
+test('layoutClassicalVertical', () => {
+ const positions = [
+ { node: 'a', pos: [0, 0], span: 7 },
+ { node: 'b', pos: [1, 1], span: 2 },
+ { node: 'e', pos: [2, 2], span: 0 },
+ { node: 'f', pos: [2, 3], span: 0 },
+ { node: 'c', pos: [1, 4], span: 0 },
+ { node: 'd', pos: [1, 5], span: 2 },
+ { node: 'g', pos: [2, 6], span: 0 },
+ { node: 'h', pos: [2, 7], span: 0 },
+ ];
+
+ const l = layoutClassic(_ => true, simpleTree());
+ const result = l.map(({ node, pos, span }) => ({ node: node.data, pos, span }));
+ expect(result).toStrictEqual(positions);
+});
diff --git a/tests/matrix.test.ts b/tests/matrix.test.ts
new file mode 100644
index 0000000..1e60c31
--- /dev/null
+++ b/tests/matrix.test.ts
@@ -0,0 +1,77 @@
+/*
+ * For licensing see accompanying LICENSE file.
+ *
+ * Copyright (C) 2022 Apple Inc. All Rights Reserved.
+ */
+
+import { Entry, Matrix } from '../src/matrix';
+import ndarray from 'ndarray';
+import { Node } from '../src/node';
+
+/**
+ * The confusion matrix looks like this:
+ * A B C
+ * A 3 5 2
+ * B 3 4 3
+ * C 1 2 7
+ */
+export function synthMatrix(): Matrix {
+ const freqs = ndarray(new Int32Array(9), [3, 3]);
+ freqs.set(0, 0, 3);
+ freqs.set(0, 1, 5);
+ freqs.set(0, 2, 2);
+ freqs.set(1, 0, 3);
+ freqs.set(1, 1, 4);
+ freqs.set(1, 2, 3);
+ freqs.set(2, 0, 1);
+ freqs.set(2, 1, 2);
+ freqs.set(2, 2, 7);
+
+ const root: Entry = new Node(
+ { name: 'root', id: 'root', start: 0, end: 3 },
+ new Node({ name: 'A', id: 'A', start: 0, end: 1 }),
+ new Node(
+ { name: '[BC]', id: 'A:[BC]', start: 1, end: 3 },
+ new Node({ name: 'B', id: 'A:[BC]:B', start: 1, end: 2 }),
+ new Node({ name: 'C', id: 'A:[BC]:C', start: 2, end: 3 }),
+ ),
+ );
+ return new Matrix(freqs, root);
+}
+
+test('totalCount', () => {
+ expect(synthMatrix().total()).toBe(30);
+});
+
+test('classes', () => {
+ const result = synthMatrix()
+ .classes()
+ .reduce((acc, n) => acc += n.data.name, '');
+ expect(result).toBe('rootA[BC]BC');
+});
+
+test('slice', () => {
+ const matrix = synthMatrix();
+ const slice1 = matrix.slice({ start: 1, end: 3 }, { start: 1, end: 3 });
+ expect(slice1.shape).toStrictEqual([2, 2]);
+ expect(slice1.get(0, 0)).toBe(4);
+ expect(slice1.get(0, 1)).toBe(3);
+ expect(slice1.get(1, 0)).toBe(2);
+ expect(slice1.get(1, 1)).toBe(7);
+
+ const sliceSingle = matrix.slice({ start: 1, end: 2 }, { start: 1, end: 2 });
+ expect(sliceSingle.shape).toStrictEqual([1, 1]);
+ expect(sliceSingle.get(0, 0)).toBe(4);
+});
+
+test('totalRows', () => {
+ const matrix = synthMatrix();
+ const totals = matrix.classes().map(c => matrix.totalRow(c));
+ expect(totals).toStrictEqual([30, 10, 20, 10, 10]);
+});
+
+test('totalColumns', () => {
+ const matrix = synthMatrix();
+ const totals = matrix.classes().map(c => matrix.totalColumn(c));
+ expect(totals).toStrictEqual([30, 7, 23, 11, 12]);
+});
diff --git a/tests/measures.test.ts b/tests/measures.test.ts
new file mode 100644
index 0000000..aba3449
--- /dev/null
+++ b/tests/measures.test.ts
@@ -0,0 +1,66 @@
+/*
+ * For licensing see accompanying LICENSE file.
+ *
+ * Copyright (C) 2022 Apple Inc. All Rights Reserved.
+ */
+
+import { accuracy, precision, recall } from '../src/matrix';
+import { synthMatrix } from './matrix.test';
+
+// TODO: Add test cases for aggregated nodes
+
+test('truePositives', () => {
+ const matrix = synthMatrix();
+ const [a, b, c] = matrix.axis.leaves();
+ expect(matrix.truePositives(a)).toBe(3);
+ expect(matrix.truePositives(b)).toBe(4);
+ expect(matrix.truePositives(c)).toBe(7);
+});
+
+test('falsePositives', () => {
+ const matrix = synthMatrix();
+ const [a, b, c] = matrix.axis.leaves();
+ expect(matrix.falsePositives(a)).toBe(4);
+ expect(matrix.falsePositives(b)).toBe(7);
+ expect(matrix.falsePositives(c)).toBe(5);
+});
+
+test('trueNegatives', () => {
+ const matrix = synthMatrix();
+ const [a, b, c] = matrix.axis.leaves();
+ expect(matrix.trueNegatives(a)).toBe(11);
+ expect(matrix.trueNegatives(b)).toBe(10);
+ expect(matrix.trueNegatives(c)).toBe(7);
+});
+
+test('falseNegatives', () => {
+ const matrix = synthMatrix();
+ const [a, b, c] = matrix.axis.leaves();
+ expect(matrix.falseNegatives(a)).toBe(7);
+ expect(matrix.falseNegatives(b)).toBe(6);
+ expect(matrix.falseNegatives(c)).toBe(3);
+});
+
+test('precision', () => {
+ const matrix = synthMatrix();
+ const [a, b, c] = matrix.axis.leaves();
+ expect(precision(matrix, a)).toBe(3 / 7);
+ expect(precision(matrix, b)).toBe(4 / 11);
+ expect(precision(matrix, c)).toBe(7 / 12);
+});
+
+test('recall', () => {
+ const matrix = synthMatrix();
+ const [a, b, c] = matrix.axis.leaves();
+ expect(recall(matrix, a)).toBe(3 / 10);
+ expect(recall(matrix, b)).toBe(4 / 10);
+ expect(recall(matrix, c)).toBe(7 / 10);
+});
+
+test('accuracy', () => {
+ const matrix = synthMatrix();
+ const [a, b, c] = matrix.axis.leaves();
+ expect(accuracy(matrix, a)).toBe((3 + 11) / (3 + 11 + 7 + 4));
+ expect(accuracy(matrix, b)).toBe((4 + 10) / (4 + 10 + 6 + 7));
+ expect(accuracy(matrix, c)).toBe((7 + 7) / (7 + 7 + 3 + 5));
+});
diff --git a/tests/node.test.ts b/tests/node.test.ts
new file mode 100644
index 0000000..05918c1
--- /dev/null
+++ b/tests/node.test.ts
@@ -0,0 +1,123 @@
+/*
+ * For licensing see accompanying LICENSE file.
+ *
+ * Copyright (C) 2022 Apple Inc. All Rights Reserved.
+ */
+
+import { Node } from '../src/node';
+
+export function simpleTree(): Node {
+ const a = new Node('a');
+ const b = new Node('b');
+ const c = new Node('c');
+ const d = new Node('d');
+ const e = new Node('e');
+ const f = new Node('f');
+ const g = new Node('g');
+ const h = new Node('h');
+ b.children = [e, f];
+ d.children = [g, h];
+ a.children = [b, c, d];
+ return a;
+}
+
+export function walk(node: Node): string {
+ let result = '';
+ node.fullorder(n => result += n.data, n => result += n.data);
+ return result;
+}
+
+test('fullorder', () => {
+ const order = 'abeeffbccdgghhda';
+ expect(walk(simpleTree())).toBe(order);
+});
+
+test('fullorderIf', () => {
+ const order = 'abeeffbccdda';
+ let walk = '';
+ const collapsed = new Set('d');
+ simpleTree().fullorder(n => walk += n.data, n => walk += n.data, n => !collapsed.has(n.data));
+ expect(walk).toBe(order);
+});
+
+test('leaves', () => {
+ let walk = '';
+ simpleTree().leaves()
+ .map(n => walk += n.data);
+ expect(walk).toBe('efcgh');
+
+ const root = new Node('a');
+ walk = '';
+ root.leaves()
+ .map(n => walk += n.data);
+ expect(walk).toBe('a');
+});
+
+test('leavesIf', () => {
+ const order = 'efcd';
+ let walk = '';
+ const collapsed = new Set('d');
+ simpleTree().leaves(n => !collapsed.has(n.data))
+ .map(n => walk += n.data);
+ expect(walk).toBe(order);
+});
+
+test('merge one level', () => {
+ const a = new Node('a', new Node('b'));
+ const c = new Node('c', new Node('d'));
+ a.merge(c);
+ expect(walk(a)).toBe('abbcddca');
+});
+
+test('hasPath', () => {
+ const a = new Node(
+ 'a',
+ new Node('b'),
+ new Node(
+ 'c',
+ new Node('d'),
+ ),
+ );
+
+ expect(a.has(new Node('b'))).toBe(true);
+ expect(a.has(new Node('d'))).toBe(false);
+ expect(a.has(new Node('c', new Node('d')))).toBe(true);
+ expect(a.has(new Node('c', new Node('d'), new Node('e')))).toBe(false);
+ expect(a.has(new Node('c', new Node('d', new Node('e'))))).toBe(false);
+});
+
+test('remove', () => {
+ const a = new Node(
+ 'a',
+ new Node('b'),
+ new Node(
+ 'c',
+ new Node('d'),
+ ),
+ );
+
+ const removed = a.remove(new Node('c'));
+ expect(removed).toStrictEqual(new Node('c', new Node('d')));
+ expect(a).toStrictEqual(new Node('a', new Node('b')));
+
+ const undef = a.remove(new Node('x'));
+ expect(undef).toBe(undefined);
+ expect(a).toStrictEqual(new Node('a', new Node('b')));
+});
+
+test('find', () => {
+ const a = new Node(
+ 'a',
+ new Node('b'),
+ new Node(
+ 'c',
+ new Node('d'),
+ ),
+ );
+
+ const match = a.find(new Node('c'));
+ expect(match).toStrictEqual(new Node('c', new Node('d')));
+
+ const undef = a.find(new Node('x'));
+ expect(undef).toBe(undefined);
+});
diff --git a/tests/parser.test.ts b/tests/parser.test.ts
new file mode 100644
index 0000000..f3838fe
--- /dev/null
+++ b/tests/parser.test.ts
@@ -0,0 +1,48 @@
+/*
+ * For licensing see accompanying LICENSE file.
+ *
+ * Copyright (C) 2022 Apple Inc. All Rights Reserved.
+ */
+
+import { parseTagString, tokenize } from '../src/parser';
+import { Node } from '../src/node';
+
+test('tokenize', () => {
+ let input = 'aber';
+ let tokens = ['aber'];
+ expect(tokenize(input)).toStrictEqual(tokens);
+
+ input = 'a:ber:[c,d]';
+ tokens = ['a', ':', 'ber', ':', '[', 'c', ',', 'd', ']'];
+ expect(tokenize(input)).toStrictEqual(tokens);
+
+ input = '[a:b,c:d]';
+ tokens = ['[', 'a', ':', 'b', ',', 'c', ':', 'd', ']'];
+ expect(tokenize(input)).toStrictEqual(tokens);
+});
+
+test('parseSingleNode', () => {
+ expect(parseTagString('a')).toStrictEqual([new Node('a')]);
+});
+
+test('parseSinglePath', () => {
+ const input = 'a:b:c';
+ const a = new Node('a', new Node('b', new Node('c')));
+ expect(parseTagString(input)).toStrictEqual([a]);
+});
+
+test('parseMulti', () => {
+ const input = '[a:b,c:d]';
+ const result = [
+ new Node('a', new Node('b')),
+ new Node('c', new Node('d')),
+ ];
+ expect(parseTagString(input)).toStrictEqual(result);
+});
+
+test('parseMulti same root', () => {
+ const input = '[a:b,a:c]';
+ const b = new Node('a', new Node('b'));
+ const c = new Node('a', new Node('c'));
+ expect(parseTagString(input)).toStrictEqual([b, c]);
+});
diff --git a/tests/setops.test.ts b/tests/setops.test.ts
new file mode 100644
index 0000000..ca604c8
--- /dev/null
+++ b/tests/setops.test.ts
@@ -0,0 +1,40 @@
+/*
+ * For licensing see accompanying LICENSE file.
+ *
+ * Copyright (C) 2022 Apple Inc. All Rights Reserved.
+ */
+
+import { nest, powerset } from '../src/setops';
+
+test('Powerset', () => {
+ const set = ['a', 'b', 'c'];
+ const pow = [
+ new Set([]),
+ new Set(['a']),
+ new Set(['b']),
+ new Set(['c']),
+ new Set(['a', 'b']),
+ new Set(['a', 'c']),
+ new Set(['b', 'c']),
+ new Set(['a', 'b', 'c']),
+ ];
+ expect(powerset(set)).toHaveLength(pow.length);
+ expect(new Set(powerset(set))).toStrictEqual(new Set(pow));
+});
+
+test('Nest', () => {
+ const abc = ['a', 'b', 'c'];
+ const xy = ['x', 'y'];
+ expect(nest(abc, xy)).toHaveLength(abc.length * xy.length + abc.length);
+ expect(nest(abc, xy)).toStrictEqual([
+ ['a'],
+ ['b'],
+ ['c'],
+ ['a', 'x'],
+ ['a', 'y'],
+ ['b', 'x'],
+ ['b', 'y'],
+ ['c', 'x'],
+ ['c', 'y'],
+ ]);
+});
diff --git a/tests/specification.test.ts b/tests/specification.test.ts
new file mode 100644
index 0000000..e0e6d94
--- /dev/null
+++ b/tests/specification.test.ts
@@ -0,0 +1,54 @@
+/*
+ * For licensing see accompanying LICENSE file.
+ *
+ * Copyright (C) 2022 Apple Inc. All Rights Reserved.
+ */
+
+import { defaults } from '../src/specification';
+import { nop } from '../src/util';
+import type { Spec } from '../src/specification';
+
+test('One category', () => {
+ const spec: Spec = {
+ ...defaults,
+ classes: ['animal'],
+ };
+ nop(spec); // silence warnings
+});
+
+test('Parameters', () => {
+ const spec: Spec = {
+ ...defaults,
+ classes: ['animal'],
+ measures: ['count', 'precision', 'recall', 'accuracy'],
+ encoding: 'color',
+ normalization: 'row',
+ };
+ nop(spec); // silence warnings
+});
+
+test('Subview of one category', () => {
+ const spec: Spec = {
+ ...defaults,
+ classes: ['animal'], filter: ['animal:insects'],
+ };
+ nop(spec); // silence warnings
+});
+
+test('Nesting two labels', () => {
+ const spec: Spec = {
+ ...defaults,
+ classes: ['beverage', 'state'],
+ };
+ nop(spec); // silence warnings
+});
+
+test('Conditioning on a second label with an additional filter', () => {
+ const spec: Spec = {
+ ...defaults,
+ classes: ['beverage'],
+ where: { qualifier: 'actual', label: 'state', is: 'state:open' },
+ filter: ['beverage:soda', 'beverage:water'],
+ };
+ nop(spec); // silence warnings
+});
diff --git a/tsconfig.json b/tsconfig.json
new file mode 100644
index 0000000..2634c3b
--- /dev/null
+++ b/tsconfig.json
@@ -0,0 +1,16 @@
+{
+ "extends": "@tsconfig/svelte/tsconfig.json",
+ "compilerOptions": {
+ "module": "esnext",
+ "target": "ES2020",
+ "types": ["svelte", "jest"],
+ "moduleResolution": "node",
+ "esModuleInterop": true,
+ "isolatedModules": false,
+ "resolveJsonModule": true
+ },
+ "include": [
+ "src/**/*",
+ ],
+ "exclude": ["node_modules/*", "public/*"],
+}
diff --git a/yarn.lock b/yarn.lock
new file mode 100644
index 0000000..7880320
--- /dev/null
+++ b/yarn.lock
@@ -0,0 +1,4456 @@
+# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
+# yarn lockfile v1
+
+
+"@ampproject/remapping@^2.1.0":
+ "integrity" "sha512-hoyByceqwKirw7w3Z7gnIIZC3Wx3J484Y3L/cMpXFbr7d9ZQj2mODrirNzcJa+SM3UlpWXYvKV4RlRpFXlWgXg=="
+ "resolved" "https://npm.apple.com/@ampproject/remapping/-/remapping-2.1.2.tgz"
+ "version" "2.1.2"
+ dependencies:
+ "@jridgewell/trace-mapping" "^0.3.0"
+
+"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.4", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.16.7":
+ "integrity" "sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg=="
+ "resolved" "https://npm.apple.com/@babel/code-frame/-/code-frame-7.16.7.tgz"
+ "version" "7.16.7"
+ dependencies:
+ "@babel/highlight" "^7.16.7"
+
+"@babel/compat-data@^7.16.4":
+ "integrity" "sha512-392byTlpGWXMv4FbyWw3sAZ/FrW/DrwqLGXpy0mbyNe9Taqv1mg9yON5/o0cnr8XYCkFTZbC1eV+c+LAROgrng=="
+ "resolved" "https://npm.apple.com/@babel/compat-data/-/compat-data-7.17.0.tgz"
+ "version" "7.17.0"
+
+"@babel/core@^7.0.0", "@babel/core@^7.0.0-0", "@babel/core@^7.1.0", "@babel/core@^7.10.2", "@babel/core@^7.12.3", "@babel/core@^7.17.5", "@babel/core@^7.7.2", "@babel/core@^7.8.0", "@babel/core@>=7.0.0-beta.0 <8":
+ "integrity" "sha512-/BBMw4EvjmyquN5O+t5eh0+YqB3XXJkYD2cjKpYtWOfFy4lQ4UozNSmxAcWT8r2XtZs0ewG+zrfsqeR15i1ajA=="
+ "resolved" "https://npm.apple.com/@babel/core/-/core-7.17.5.tgz"
+ "version" "7.17.5"
+ dependencies:
+ "@ampproject/remapping" "^2.1.0"
+ "@babel/code-frame" "^7.16.7"
+ "@babel/generator" "^7.17.3"
+ "@babel/helper-compilation-targets" "^7.16.7"
+ "@babel/helper-module-transforms" "^7.16.7"
+ "@babel/helpers" "^7.17.2"
+ "@babel/parser" "^7.17.3"
+ "@babel/template" "^7.16.7"
+ "@babel/traverse" "^7.17.3"
+ "@babel/types" "^7.17.0"
+ "convert-source-map" "^1.7.0"
+ "debug" "^4.1.0"
+ "gensync" "^1.0.0-beta.2"
+ "json5" "^2.1.2"
+ "semver" "^6.3.0"
+
+"@babel/generator@^7.17.3", "@babel/generator@^7.7.2":
+ "integrity" "sha512-+R6Dctil/MgUsZsZAkYgK+ADNSZzJRRy0TvY65T71z/CR854xHQ1EweBYXdfT+HNeN7w0cSJJEzgxZMv40pxsg=="
+ "resolved" "https://npm.apple.com/@babel/generator/-/generator-7.17.3.tgz"
+ "version" "7.17.3"
+ dependencies:
+ "@babel/types" "^7.17.0"
+ "jsesc" "^2.5.1"
+ "source-map" "^0.5.0"
+
+"@babel/helper-annotate-as-pure@^7.16.7":
+ "integrity" "sha512-s6t2w/IPQVTAET1HitoowRGXooX8mCgtuP5195wD/QJPV6wYjpujCGF7JuMODVX2ZAJOf1GT6DT9MHEZvLOFSw=="
+ "resolved" "https://npm.apple.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.16.7.tgz"
+ "version" "7.16.7"
+ dependencies:
+ "@babel/types" "^7.16.7"
+
+"@babel/helper-compilation-targets@^7.16.7":
+ "integrity" "sha512-mGojBwIWcwGD6rfqgRXVlVYmPAv7eOpIemUG3dGnDdCY4Pae70ROij3XmfrH6Fa1h1aiDylpglbZyktfzyo/hA=="
+ "resolved" "https://npm.apple.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.16.7.tgz"
+ "version" "7.16.7"
+ dependencies:
+ "@babel/compat-data" "^7.16.4"
+ "@babel/helper-validator-option" "^7.16.7"
+ "browserslist" "^4.17.5"
+ "semver" "^6.3.0"
+
+"@babel/helper-create-class-features-plugin@^7.16.7":
+ "integrity" "sha512-SogLLSxXm2OkBbSsHZMM4tUi8fUzjs63AT/d0YQIzr6GSd8Hxsbk2KYDX0k0DweAzGMj/YWeiCsorIdtdcW8Eg=="
+ "resolved" "https://npm.apple.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.17.6.tgz"
+ "version" "7.17.6"
+ dependencies:
+ "@babel/helper-annotate-as-pure" "^7.16.7"
+ "@babel/helper-environment-visitor" "^7.16.7"
+ "@babel/helper-function-name" "^7.16.7"
+ "@babel/helper-member-expression-to-functions" "^7.16.7"
+ "@babel/helper-optimise-call-expression" "^7.16.7"
+ "@babel/helper-replace-supers" "^7.16.7"
+ "@babel/helper-split-export-declaration" "^7.16.7"
+
+"@babel/helper-environment-visitor@^7.16.7":
+ "integrity" "sha512-SLLb0AAn6PkUeAfKJCCOl9e1R53pQlGAfc4y4XuMRZfqeMYLE0dM1LMhqbGAlGQY0lfw5/ohoYWAe9V1yibRag=="
+ "resolved" "https://npm.apple.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.16.7.tgz"
+ "version" "7.16.7"
+ dependencies:
+ "@babel/types" "^7.16.7"
+
+"@babel/helper-function-name@^7.16.7":
+ "integrity" "sha512-QfDfEnIUyyBSR3HtrtGECuZ6DAyCkYFp7GHl75vFtTnn6pjKeK0T1DB5lLkFvBea8MdaiUABx3osbgLyInoejA=="
+ "resolved" "https://npm.apple.com/@babel/helper-function-name/-/helper-function-name-7.16.7.tgz"
+ "version" "7.16.7"
+ dependencies:
+ "@babel/helper-get-function-arity" "^7.16.7"
+ "@babel/template" "^7.16.7"
+ "@babel/types" "^7.16.7"
+
+"@babel/helper-get-function-arity@^7.16.7":
+ "integrity" "sha512-flc+RLSOBXzNzVhcLu6ujeHUrD6tANAOU5ojrRx/as+tbzf8+stUCj7+IfRRoAbEZqj/ahXEMsjhOhgeZsrnTw=="
+ "resolved" "https://npm.apple.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.16.7.tgz"
+ "version" "7.16.7"
+ dependencies:
+ "@babel/types" "^7.16.7"
+
+"@babel/helper-hoist-variables@^7.16.7":
+ "integrity" "sha512-m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg=="
+ "resolved" "https://npm.apple.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.7.tgz"
+ "version" "7.16.7"
+ dependencies:
+ "@babel/types" "^7.16.7"
+
+"@babel/helper-member-expression-to-functions@^7.16.7":
+ "integrity" "sha512-VtJ/65tYiU/6AbMTDwyoXGPKHgTsfRarivm+YbB5uAzKUyuPjgZSgAFeG87FCigc7KNHu2Pegh1XIT3lXjvz3Q=="
+ "resolved" "https://npm.apple.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.16.7.tgz"
+ "version" "7.16.7"
+ dependencies:
+ "@babel/types" "^7.16.7"
+
+"@babel/helper-module-imports@^7.16.7":
+ "integrity" "sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg=="
+ "resolved" "https://npm.apple.com/@babel/helper-module-imports/-/helper-module-imports-7.16.7.tgz"
+ "version" "7.16.7"
+ dependencies:
+ "@babel/types" "^7.16.7"
+
+"@babel/helper-module-transforms@^7.16.7":
+ "integrity" "sha512-2ULmRdqoOMpdvkbT8jONrZML/XALfzxlb052bldftkicAUy8AxSCkD5trDPQcwHNmolcl7wP6ehNqMlyUw6AaA=="
+ "resolved" "https://npm.apple.com/@babel/helper-module-transforms/-/helper-module-transforms-7.17.6.tgz"
+ "version" "7.17.6"
+ dependencies:
+ "@babel/helper-environment-visitor" "^7.16.7"
+ "@babel/helper-module-imports" "^7.16.7"
+ "@babel/helper-simple-access" "^7.16.7"
+ "@babel/helper-split-export-declaration" "^7.16.7"
+ "@babel/helper-validator-identifier" "^7.16.7"
+ "@babel/template" "^7.16.7"
+ "@babel/traverse" "^7.17.3"
+ "@babel/types" "^7.17.0"
+
+"@babel/helper-optimise-call-expression@^7.16.7":
+ "integrity" "sha512-EtgBhg7rd/JcnpZFXpBy0ze1YRfdm7BnBX4uKMBd3ixa3RGAE002JZB66FJyNH7g0F38U05pXmA5P8cBh7z+1w=="
+ "resolved" "https://npm.apple.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.16.7.tgz"
+ "version" "7.16.7"
+ dependencies:
+ "@babel/types" "^7.16.7"
+
+"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.16.7", "@babel/helper-plugin-utils@^7.8.0":
+ "integrity" "sha512-Qg3Nk7ZxpgMrsox6HreY1ZNKdBq7K72tDSliA6dCl5f007jR4ne8iD5UzuNnCJH2xBf2BEEVGr+/OL6Gdp7RxA=="
+ "resolved" "https://npm.apple.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.16.7.tgz"
+ "version" "7.16.7"
+
+"@babel/helper-replace-supers@^7.16.7":
+ "integrity" "sha512-y9vsWilTNaVnVh6xiJfABzsNpgDPKev9HnAgz6Gb1p6UUwf9NepdlsV7VXGCftJM+jqD5f7JIEubcpLjZj5dBw=="
+ "resolved" "https://npm.apple.com/@babel/helper-replace-supers/-/helper-replace-supers-7.16.7.tgz"
+ "version" "7.16.7"
+ dependencies:
+ "@babel/helper-environment-visitor" "^7.16.7"
+ "@babel/helper-member-expression-to-functions" "^7.16.7"
+ "@babel/helper-optimise-call-expression" "^7.16.7"
+ "@babel/traverse" "^7.16.7"
+ "@babel/types" "^7.16.7"
+
+"@babel/helper-simple-access@^7.16.7":
+ "integrity" "sha512-ZIzHVyoeLMvXMN/vok/a4LWRy8G2v205mNP0XOuf9XRLyX5/u9CnVulUtDgUTama3lT+bf/UqucuZjqiGuTS1g=="
+ "resolved" "https://npm.apple.com/@babel/helper-simple-access/-/helper-simple-access-7.16.7.tgz"
+ "version" "7.16.7"
+ dependencies:
+ "@babel/types" "^7.16.7"
+
+"@babel/helper-split-export-declaration@^7.16.7":
+ "integrity" "sha512-xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw=="
+ "resolved" "https://npm.apple.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.7.tgz"
+ "version" "7.16.7"
+ dependencies:
+ "@babel/types" "^7.16.7"
+
+"@babel/helper-validator-identifier@^7.16.7":
+ "integrity" "sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw=="
+ "resolved" "https://npm.apple.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz"
+ "version" "7.16.7"
+
+"@babel/helper-validator-option@^7.16.7":
+ "integrity" "sha512-TRtenOuRUVo9oIQGPC5G9DgK4743cdxvtOw0weQNpZXaS16SCBi5MNjZF8vba3ETURjZpTbVn7Vvcf2eAwFozQ=="
+ "resolved" "https://npm.apple.com/@babel/helper-validator-option/-/helper-validator-option-7.16.7.tgz"
+ "version" "7.16.7"
+
+"@babel/helpers@^7.17.2":
+ "integrity" "sha512-0Qu7RLR1dILozr/6M0xgj+DFPmi6Bnulgm9M8BVa9ZCWxDqlSnqt3cf8IDPB5m45sVXUZ0kuQAgUrdSFFH79fQ=="
+ "resolved" "https://npm.apple.com/@babel/helpers/-/helpers-7.17.2.tgz"
+ "version" "7.17.2"
+ dependencies:
+ "@babel/template" "^7.16.7"
+ "@babel/traverse" "^7.17.0"
+ "@babel/types" "^7.17.0"
+
+"@babel/highlight@^7.16.7":
+ "integrity" "sha512-5FnTQLSLswEj6IkgVw5KusNUUFY9ZGqe/TRFnP/BKYHYgfh7tc+C7mwiy95/yNP7Dh9x580Vv8r7u7ZfTBFxdw=="
+ "resolved" "https://npm.apple.com/@babel/highlight/-/highlight-7.16.10.tgz"
+ "version" "7.16.10"
+ dependencies:
+ "@babel/helper-validator-identifier" "^7.16.7"
+ "chalk" "^2.0.0"
+ "js-tokens" "^4.0.0"
+
+"@babel/parser@^7.1.0", "@babel/parser@^7.14.7", "@babel/parser@^7.16.7", "@babel/parser@^7.17.3":
+ "integrity" "sha512-7yJPvPV+ESz2IUTPbOL+YkIGyCqOyNIzdguKQuJGnH7bg1WTIifuM21YqokFt/THWh1AkCRn9IgoykTRCBVpzA=="
+ "resolved" "https://npm.apple.com/@babel/parser/-/parser-7.17.3.tgz"
+ "version" "7.17.3"
+
+"@babel/plugin-syntax-async-generators@^7.8.4":
+ "integrity" "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw=="
+ "resolved" "https://npm.apple.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz"
+ "version" "7.8.4"
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.8.0"
+
+"@babel/plugin-syntax-bigint@^7.8.3":
+ "integrity" "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg=="
+ "resolved" "https://npm.apple.com/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz"
+ "version" "7.8.3"
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.8.0"
+
+"@babel/plugin-syntax-class-properties@^7.8.3":
+ "integrity" "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA=="
+ "resolved" "https://npm.apple.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz"
+ "version" "7.12.13"
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.12.13"
+
+"@babel/plugin-syntax-import-meta@^7.8.3":
+ "integrity" "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g=="
+ "resolved" "https://npm.apple.com/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz"
+ "version" "7.10.4"
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.10.4"
+
+"@babel/plugin-syntax-json-strings@^7.8.3":
+ "integrity" "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA=="
+ "resolved" "https://npm.apple.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz"
+ "version" "7.8.3"
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.8.0"
+
+"@babel/plugin-syntax-logical-assignment-operators@^7.8.3":
+ "integrity" "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig=="
+ "resolved" "https://npm.apple.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz"
+ "version" "7.10.4"
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.10.4"
+
+"@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3":
+ "integrity" "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ=="
+ "resolved" "https://npm.apple.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz"
+ "version" "7.8.3"
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.8.0"
+
+"@babel/plugin-syntax-numeric-separator@^7.8.3":
+ "integrity" "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug=="
+ "resolved" "https://npm.apple.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz"
+ "version" "7.10.4"
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.10.4"
+
+"@babel/plugin-syntax-object-rest-spread@^7.8.3":
+ "integrity" "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA=="
+ "resolved" "https://npm.apple.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz"
+ "version" "7.8.3"
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.8.0"
+
+"@babel/plugin-syntax-optional-catch-binding@^7.8.3":
+ "integrity" "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q=="
+ "resolved" "https://npm.apple.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz"
+ "version" "7.8.3"
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.8.0"
+
+"@babel/plugin-syntax-optional-chaining@^7.8.3":
+ "integrity" "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg=="
+ "resolved" "https://npm.apple.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz"
+ "version" "7.8.3"
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.8.0"
+
+"@babel/plugin-syntax-top-level-await@^7.8.3":
+ "integrity" "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw=="
+ "resolved" "https://npm.apple.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz"
+ "version" "7.14.5"
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.14.5"
+
+"@babel/plugin-syntax-typescript@^7.16.7", "@babel/plugin-syntax-typescript@^7.7.2":
+ "integrity" "sha512-YhUIJHHGkqPgEcMYkPCKTyGUdoGKWtopIycQyjJH8OjvRgOYsXsaKehLVPScKJWAULPxMa4N1vCe6szREFlZ7A=="
+ "resolved" "https://npm.apple.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.16.7.tgz"
+ "version" "7.16.7"
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.16.7"
+
+"@babel/plugin-transform-typescript@^7.16.7":
+ "integrity" "sha512-bHdQ9k7YpBDO2d0NVfkj51DpQcvwIzIusJ7mEUaMlbZq3Kt/U47j24inXZHQ5MDiYpCs+oZiwnXyKedE8+q7AQ=="
+ "resolved" "https://npm.apple.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.16.8.tgz"
+ "version" "7.16.8"
+ dependencies:
+ "@babel/helper-create-class-features-plugin" "^7.16.7"
+ "@babel/helper-plugin-utils" "^7.16.7"
+ "@babel/plugin-syntax-typescript" "^7.16.7"
+
+"@babel/preset-typescript@^7.16.7":
+ "integrity" "sha512-WbVEmgXdIyvzB77AQjGBEyYPZx+8tTsO50XtfozQrkW8QB2rLJpH2lgx0TRw5EJrBxOZQ+wCcyPVQvS8tjEHpQ=="
+ "resolved" "https://npm.apple.com/@babel/preset-typescript/-/preset-typescript-7.16.7.tgz"
+ "version" "7.16.7"
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.16.7"
+ "@babel/helper-validator-option" "^7.16.7"
+ "@babel/plugin-transform-typescript" "^7.16.7"
+
+"@babel/template@^7.16.7", "@babel/template@^7.3.3":
+ "integrity" "sha512-I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w=="
+ "resolved" "https://npm.apple.com/@babel/template/-/template-7.16.7.tgz"
+ "version" "7.16.7"
+ dependencies:
+ "@babel/code-frame" "^7.16.7"
+ "@babel/parser" "^7.16.7"
+ "@babel/types" "^7.16.7"
+
+"@babel/traverse@^7.16.7", "@babel/traverse@^7.17.0", "@babel/traverse@^7.17.3", "@babel/traverse@^7.7.2":
+ "integrity" "sha512-5irClVky7TxRWIRtxlh2WPUUOLhcPN06AGgaQSB8AEwuyEBgJVuJ5imdHm5zxk8w0QS5T+tDfnDxAlhWjpb7cw=="
+ "resolved" "https://npm.apple.com/@babel/traverse/-/traverse-7.17.3.tgz"
+ "version" "7.17.3"
+ dependencies:
+ "@babel/code-frame" "^7.16.7"
+ "@babel/generator" "^7.17.3"
+ "@babel/helper-environment-visitor" "^7.16.7"
+ "@babel/helper-function-name" "^7.16.7"
+ "@babel/helper-hoist-variables" "^7.16.7"
+ "@babel/helper-split-export-declaration" "^7.16.7"
+ "@babel/parser" "^7.17.3"
+ "@babel/types" "^7.17.0"
+ "debug" "^4.1.0"
+ "globals" "^11.1.0"
+
+"@babel/types@^7.0.0", "@babel/types@^7.16.7", "@babel/types@^7.17.0", "@babel/types@^7.3.0", "@babel/types@^7.3.3":
+ "integrity" "sha512-TmKSNO4D5rzhL5bjWFcVHHLETzfQ/AmbKpKPOSjlP0WoHZ6L911fgoOKY4Alp/emzG4cHJdyN49zpgkbXFEHHw=="
+ "resolved" "https://npm.apple.com/@babel/types/-/types-7.17.0.tgz"
+ "version" "7.17.0"
+ dependencies:
+ "@babel/helper-validator-identifier" "^7.16.7"
+ "to-fast-properties" "^2.0.0"
+
+"@bcoe/v8-coverage@^0.2.3":
+ "integrity" "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw=="
+ "resolved" "https://npm.apple.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz"
+ "version" "0.2.3"
+
+"@eslint/eslintrc@^1.2.0":
+ "integrity" "sha512-igm9SjJHNEJRiUnecP/1R5T3wKLEJ7pL6e2P+GUSfCd0dGjPYYZve08uzw8L2J8foVHFz+NGu12JxRcU2gGo6w=="
+ "resolved" "https://npm.apple.com/@eslint/eslintrc/-/eslintrc-1.2.0.tgz"
+ "version" "1.2.0"
+ dependencies:
+ "ajv" "^6.12.4"
+ "debug" "^4.3.2"
+ "espree" "^9.3.1"
+ "globals" "^13.9.0"
+ "ignore" "^4.0.6"
+ "import-fresh" "^3.2.1"
+ "js-yaml" "^4.1.0"
+ "minimatch" "^3.0.4"
+ "strip-json-comments" "^3.1.1"
+
+"@humanwhocodes/config-array@^0.9.2":
+ "integrity" "sha512-UXOuFCGcwciWckOpmfKDq/GyhlTf9pN/BzG//x8p8zTOFEcGuA68ANXheFS0AGvy3qgZqLBUkMs7hqzqCKOVwA== sha1-aL5VxzcCMAnfxf4kXVEYG7ZHaRQ="
+ "resolved" "https://npm.apple.com/@humanwhocodes/config-array/-/config-array-0.9.2.tgz"
+ "version" "0.9.2"
+ dependencies:
+ "@humanwhocodes/object-schema" "^1.2.1"
+ "debug" "^4.1.1"
+ "minimatch" "^3.0.4"
+
+"@humanwhocodes/object-schema@^1.2.1":
+ "integrity" "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA== sha1-tSBSnsIdjllFoYUd/Rwy6U45/0U="
+ "resolved" "https://npm.apple.com/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz"
+ "version" "1.2.1"
+
+"@istanbuljs/load-nyc-config@^1.0.0":
+ "integrity" "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ== sha1-/T2x1Z7PfPEh6AZQu4ZxL5tV7O0="
+ "resolved" "https://npm.apple.com/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz"
+ "version" "1.1.0"
+ dependencies:
+ "camelcase" "^5.3.1"
+ "find-up" "^4.1.0"
+ "get-package-type" "^0.1.0"
+ "js-yaml" "^3.13.1"
+ "resolve-from" "^5.0.0"
+
+"@istanbuljs/schema@^0.1.2":
+ "integrity" "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA== sha1-5F44TkuOwWvOL9kDr3hFD2v37Jg="
+ "resolved" "https://npm.apple.com/@istanbuljs/schema/-/schema-0.1.3.tgz"
+ "version" "0.1.3"
+
+"@jest/console@^27.5.1":
+ "integrity" "sha512-kZ/tNpS3NXn0mlXXXPNuDZnb4c0oZ20r4K5eemM2k30ZC3G0T02nXUvyhf5YdbXWHPEJLc9qGLxEZ216MdL+Zg=="
+ "resolved" "https://npm.apple.com/@jest/console/-/console-27.5.1.tgz"
+ "version" "27.5.1"
+ dependencies:
+ "@jest/types" "^27.5.1"
+ "@types/node" "*"
+ "chalk" "^4.0.0"
+ "jest-message-util" "^27.5.1"
+ "jest-util" "^27.5.1"
+ "slash" "^3.0.0"
+
+"@jest/core@^27.5.1":
+ "integrity" "sha512-AK6/UTrvQD0Cd24NSqmIA6rKsu0tKIxfiCducZvqxYdmMisOYAsdItspT+fQDQYARPf8XgjAFZi0ogW2agH5nQ=="
+ "resolved" "https://npm.apple.com/@jest/core/-/core-27.5.1.tgz"
+ "version" "27.5.1"
+ dependencies:
+ "@jest/console" "^27.5.1"
+ "@jest/reporters" "^27.5.1"
+ "@jest/test-result" "^27.5.1"
+ "@jest/transform" "^27.5.1"
+ "@jest/types" "^27.5.1"
+ "@types/node" "*"
+ "ansi-escapes" "^4.2.1"
+ "chalk" "^4.0.0"
+ "emittery" "^0.8.1"
+ "exit" "^0.1.2"
+ "graceful-fs" "^4.2.9"
+ "jest-changed-files" "^27.5.1"
+ "jest-config" "^27.5.1"
+ "jest-haste-map" "^27.5.1"
+ "jest-message-util" "^27.5.1"
+ "jest-regex-util" "^27.5.1"
+ "jest-resolve" "^27.5.1"
+ "jest-resolve-dependencies" "^27.5.1"
+ "jest-runner" "^27.5.1"
+ "jest-runtime" "^27.5.1"
+ "jest-snapshot" "^27.5.1"
+ "jest-util" "^27.5.1"
+ "jest-validate" "^27.5.1"
+ "jest-watcher" "^27.5.1"
+ "micromatch" "^4.0.4"
+ "rimraf" "^3.0.0"
+ "slash" "^3.0.0"
+ "strip-ansi" "^6.0.0"
+
+"@jest/environment@^27.5.1":
+ "integrity" "sha512-/WQjhPJe3/ghaol/4Bq480JKXV/Rfw8nQdN7f41fM8VDHLcxKXou6QyXAh3EFr9/bVG3x74z1NWDkP87EiY8gA=="
+ "resolved" "https://npm.apple.com/@jest/environment/-/environment-27.5.1.tgz"
+ "version" "27.5.1"
+ dependencies:
+ "@jest/fake-timers" "^27.5.1"
+ "@jest/types" "^27.5.1"
+ "@types/node" "*"
+ "jest-mock" "^27.5.1"
+
+"@jest/fake-timers@^27.5.1":
+ "integrity" "sha512-/aPowoolwa07k7/oM3aASneNeBGCmGQsc3ugN4u6s4C/+s5M64MFo/+djTdiwcbQlRfFElGuDXWzaWj6QgKObQ=="
+ "resolved" "https://npm.apple.com/@jest/fake-timers/-/fake-timers-27.5.1.tgz"
+ "version" "27.5.1"
+ dependencies:
+ "@jest/types" "^27.5.1"
+ "@sinonjs/fake-timers" "^8.0.1"
+ "@types/node" "*"
+ "jest-message-util" "^27.5.1"
+ "jest-mock" "^27.5.1"
+ "jest-util" "^27.5.1"
+
+"@jest/globals@^27.5.1":
+ "integrity" "sha512-ZEJNB41OBQQgGzgyInAv0UUfDDj3upmHydjieSxFvTRuZElrx7tXg/uVQ5hYVEwiXs3+aMsAeEc9X7xiSKCm4Q=="
+ "resolved" "https://npm.apple.com/@jest/globals/-/globals-27.5.1.tgz"
+ "version" "27.5.1"
+ dependencies:
+ "@jest/environment" "^27.5.1"
+ "@jest/types" "^27.5.1"
+ "expect" "^27.5.1"
+
+"@jest/reporters@^27.5.1":
+ "integrity" "sha512-cPXh9hWIlVJMQkVk84aIvXuBB4uQQmFqZiacloFuGiP3ah1sbCxCosidXFDfqG8+6fO1oR2dTJTlsOy4VFmUfw=="
+ "resolved" "https://npm.apple.com/@jest/reporters/-/reporters-27.5.1.tgz"
+ "version" "27.5.1"
+ dependencies:
+ "@bcoe/v8-coverage" "^0.2.3"
+ "@jest/console" "^27.5.1"
+ "@jest/test-result" "^27.5.1"
+ "@jest/transform" "^27.5.1"
+ "@jest/types" "^27.5.1"
+ "@types/node" "*"
+ "chalk" "^4.0.0"
+ "collect-v8-coverage" "^1.0.0"
+ "exit" "^0.1.2"
+ "glob" "^7.1.2"
+ "graceful-fs" "^4.2.9"
+ "istanbul-lib-coverage" "^3.0.0"
+ "istanbul-lib-instrument" "^5.1.0"
+ "istanbul-lib-report" "^3.0.0"
+ "istanbul-lib-source-maps" "^4.0.0"
+ "istanbul-reports" "^3.1.3"
+ "jest-haste-map" "^27.5.1"
+ "jest-resolve" "^27.5.1"
+ "jest-util" "^27.5.1"
+ "jest-worker" "^27.5.1"
+ "slash" "^3.0.0"
+ "source-map" "^0.6.0"
+ "string-length" "^4.0.1"
+ "terminal-link" "^2.0.0"
+ "v8-to-istanbul" "^8.1.0"
+
+"@jest/source-map@^27.5.1":
+ "integrity" "sha512-y9NIHUYF3PJRlHk98NdC/N1gl88BL08aQQgu4k4ZopQkCw9t9cV8mtl3TV8b/YCB8XaVTFrmUTAJvjsntDireg=="
+ "resolved" "https://npm.apple.com/@jest/source-map/-/source-map-27.5.1.tgz"
+ "version" "27.5.1"
+ dependencies:
+ "callsites" "^3.0.0"
+ "graceful-fs" "^4.2.9"
+ "source-map" "^0.6.0"
+
+"@jest/test-result@^27.5.1":
+ "integrity" "sha512-EW35l2RYFUcUQxFJz5Cv5MTOxlJIQs4I7gxzi2zVU7PJhOwfYq1MdC5nhSmYjX1gmMmLPvB3sIaC+BkcHRBfag=="
+ "resolved" "https://npm.apple.com/@jest/test-result/-/test-result-27.5.1.tgz"
+ "version" "27.5.1"
+ dependencies:
+ "@jest/console" "^27.5.1"
+ "@jest/types" "^27.5.1"
+ "@types/istanbul-lib-coverage" "^2.0.0"
+ "collect-v8-coverage" "^1.0.0"
+
+"@jest/test-sequencer@^27.5.1":
+ "integrity" "sha512-LCheJF7WB2+9JuCS7VB/EmGIdQuhtqjRNI9A43idHv3E4KltCTsPsLxvdaubFHSYwY/fNjMWjl6vNRhDiN7vpQ=="
+ "resolved" "https://npm.apple.com/@jest/test-sequencer/-/test-sequencer-27.5.1.tgz"
+ "version" "27.5.1"
+ dependencies:
+ "@jest/test-result" "^27.5.1"
+ "graceful-fs" "^4.2.9"
+ "jest-haste-map" "^27.5.1"
+ "jest-runtime" "^27.5.1"
+
+"@jest/transform@^27.5.1":
+ "integrity" "sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw=="
+ "resolved" "https://npm.apple.com/@jest/transform/-/transform-27.5.1.tgz"
+ "version" "27.5.1"
+ dependencies:
+ "@babel/core" "^7.1.0"
+ "@jest/types" "^27.5.1"
+ "babel-plugin-istanbul" "^6.1.1"
+ "chalk" "^4.0.0"
+ "convert-source-map" "^1.4.0"
+ "fast-json-stable-stringify" "^2.0.0"
+ "graceful-fs" "^4.2.9"
+ "jest-haste-map" "^27.5.1"
+ "jest-regex-util" "^27.5.1"
+ "jest-util" "^27.5.1"
+ "micromatch" "^4.0.4"
+ "pirates" "^4.0.4"
+ "slash" "^3.0.0"
+ "source-map" "^0.6.1"
+ "write-file-atomic" "^3.0.0"
+
+"@jest/types@^27.5.1":
+ "integrity" "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw=="
+ "resolved" "https://npm.apple.com/@jest/types/-/types-27.5.1.tgz"
+ "version" "27.5.1"
+ dependencies:
+ "@types/istanbul-lib-coverage" "^2.0.0"
+ "@types/istanbul-reports" "^3.0.0"
+ "@types/node" "*"
+ "@types/yargs" "^16.0.0"
+ "chalk" "^4.0.0"
+
+"@jridgewell/resolve-uri@^3.0.3":
+ "integrity" "sha512-VPeQ7+wH0itvQxnG+lIzWgkysKIr3L9sslimFW55rHMdGu/qCQ5z5h9zq4gI8uBtqkpHhsF4Z/OwExufUCThew=="
+ "resolved" "https://npm.apple.com/@jridgewell/resolve-uri/-/resolve-uri-3.0.5.tgz"
+ "version" "3.0.5"
+
+"@jridgewell/sourcemap-codec@^1.4.10":
+ "integrity" "sha512-Fg32GrJo61m+VqYSdRSjRXMjQ06j8YIYfcTqndLYVAaHmroZHLJZCydsWBOTDqXS2v+mjxohBWEMfg97GXmYQg=="
+ "resolved" "https://npm.apple.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.11.tgz"
+ "version" "1.4.11"
+
+"@jridgewell/trace-mapping@^0.3.0":
+ "integrity" "sha512-vFv9ttIedivx0ux3QSjhgtCVjPZd5l46ZOMDSCwnH1yUO2e964gO8LZGyv2QkqcgR6TnBU1v+1IFqmeoG+0UJQ=="
+ "resolved" "https://npm.apple.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.4.tgz"
+ "version" "0.3.4"
+ dependencies:
+ "@jridgewell/resolve-uri" "^3.0.3"
+ "@jridgewell/sourcemap-codec" "^1.4.10"
+
+"@nodelib/fs.scandir@2.1.5":
+ "integrity" "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== sha1-dhnC6yGyVIP20WdUi0z9WnSIw9U="
+ "resolved" "https://npm.apple.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz"
+ "version" "2.1.5"
+ dependencies:
+ "@nodelib/fs.stat" "2.0.5"
+ "run-parallel" "^1.1.9"
+
+"@nodelib/fs.stat@^2.0.2", "@nodelib/fs.stat@2.0.5":
+ "integrity" "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== sha1-W9Jir5Tp0lvR5xsF3u1Eh2oiLos="
+ "resolved" "https://npm.apple.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz"
+ "version" "2.0.5"
+
+"@nodelib/fs.walk@^1.2.3":
+ "integrity" "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== sha1-6Vc36LtnRt3t9pxVaVNJTxlv5po="
+ "resolved" "https://npm.apple.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz"
+ "version" "1.2.8"
+ dependencies:
+ "@nodelib/fs.scandir" "2.1.5"
+ "fastq" "^1.6.0"
+
+"@polka/url@^1.0.0-next.20":
+ "integrity" "sha512-a5Sab1C4/icpTZVzZc5Ghpz88yQtGOyNqYXcZgOssB2uuAr+wF/MvN6bgtW32q7HHrvBki+BsZ0OuNv6EV3K9g=="
+ "resolved" "https://npm.apple.com/@polka/url/-/url-1.0.0-next.21.tgz"
+ "version" "1.0.0-next.21"
+
+"@rollup/plugin-commonjs@^21.0.2":
+ "integrity" "sha512-d/OmjaLVO4j/aQX69bwpWPpbvI3TJkQuxoAk7BH8ew1PyoMBLTOuvJTjzG8oEoW7drIIqB0KCJtfFLu/2GClWg=="
+ "resolved" "https://npm.apple.com/@rollup/plugin-commonjs/-/plugin-commonjs-21.0.2.tgz"
+ "version" "21.0.2"
+ dependencies:
+ "@rollup/pluginutils" "^3.1.0"
+ "commondir" "^1.0.1"
+ "estree-walker" "^2.0.1"
+ "glob" "^7.1.6"
+ "is-reference" "^1.2.1"
+ "magic-string" "^0.25.7"
+ "resolve" "^1.17.0"
+
+"@rollup/plugin-json@^4.1.0":
+ "integrity" "sha512-yfLbTdNS6amI/2OpmbiBoW12vngr5NW2jCJVZSBEz+H5KfUJZ2M7sDjk0U6GOOdCWFVScShte29o9NezJ53TPw== sha1-VOCYZ65pY8WThE2L16nHGClElvM="
+ "resolved" "https://npm.apple.com/@rollup/plugin-json/-/plugin-json-4.1.0.tgz"
+ "version" "4.1.0"
+ dependencies:
+ "@rollup/pluginutils" "^3.0.8"
+
+"@rollup/plugin-node-resolve@^13.1.3":
+ "integrity" "sha512-BdxNk+LtmElRo5d06MGY4zoepyrXX1tkzX2hrnPEZ53k78GuOMWLqmJDGIIOPwVRIFZrLQOo+Yr6KtCuLIA0AQ=="
+ "resolved" "https://npm.apple.com/@rollup/plugin-node-resolve/-/plugin-node-resolve-13.1.3.tgz"
+ "version" "13.1.3"
+ dependencies:
+ "@rollup/pluginutils" "^3.1.0"
+ "@types/resolve" "1.17.1"
+ "builtin-modules" "^3.1.0"
+ "deepmerge" "^4.2.2"
+ "is-module" "^1.0.0"
+ "resolve" "^1.19.0"
+
+"@rollup/plugin-typescript@^8.3.1":
+ "integrity" "sha512-84rExe3ICUBXzqNX48WZV2Jp3OddjTMX97O2Py6D1KJaGSwWp0mDHXj+bCGNJqWHIEKDIT2U0sDjhP4czKi6cA=="
+ "resolved" "https://npm.apple.com/@rollup/plugin-typescript/-/plugin-typescript-8.3.1.tgz"
+ "version" "8.3.1"
+ dependencies:
+ "@rollup/pluginutils" "^3.1.0"
+ "resolve" "^1.17.0"
+
+"@rollup/pluginutils@^3.0.8", "@rollup/pluginutils@^3.1.0":
+ "integrity" "sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg== sha1-cGtFJO5tyLEDs8mVUz5a1oDAK5s="
+ "resolved" "https://npm.apple.com/@rollup/pluginutils/-/pluginutils-3.1.0.tgz"
+ "version" "3.1.0"
+ dependencies:
+ "@types/estree" "0.0.39"
+ "estree-walker" "^1.0.1"
+ "picomatch" "^2.2.2"
+
+"@rollup/pluginutils@4":
+ "integrity" "sha512-ROn4qvkxP9SyPeHaf7uQC/GPFY6L/OWy9+bd9AwcjOAWQwxRscoEyAUD8qCY5o5iL4jqQwoLk2kaTKJPb/HwzQ== sha1-7VghwV5eBeMoFvX7nsYHzfWnV1E="
+ "resolved" "https://npm.apple.com/@rollup/pluginutils/-/pluginutils-4.1.2.tgz"
+ "version" "4.1.2"
+ dependencies:
+ "estree-walker" "^2.0.1"
+ "picomatch" "^2.2.2"
+
+"@sinonjs/commons@^1.7.0":
+ "integrity" "sha512-xkNcLAn/wZaX14RPlwizcKicDk9G3F8m2nU3L7Ukm5zBgTwiT0wsoFAHx9Jq56fJA1z/7uKGtCRu16sOUCLIHQ=="
+ "resolved" "https://npm.apple.com/@sinonjs/commons/-/commons-1.8.3.tgz"
+ "version" "1.8.3"
+ dependencies:
+ "type-detect" "4.0.8"
+
+"@sinonjs/fake-timers@^8.0.1":
+ "integrity" "sha512-OAPJUAtgeINhh/TAlUID4QTs53Njm7xzddaVlEs/SXwgtiD1tW22zAB/W1wdqfrpmikgaWQ9Fw6Ws+hsiRm5Vg=="
+ "resolved" "https://npm.apple.com/@sinonjs/fake-timers/-/fake-timers-8.1.0.tgz"
+ "version" "8.1.0"
+ dependencies:
+ "@sinonjs/commons" "^1.7.0"
+
+"@tootallnate/once@1":
+ "integrity" "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw=="
+ "resolved" "https://npm.apple.com/@tootallnate/once/-/once-1.1.2.tgz"
+ "version" "1.1.2"
+
+"@tsconfig/svelte@^3.0.0":
+ "integrity" "sha512-pYrtLtOwku/7r1i9AMONsJMVYAtk3hzOfiGNekhtq5tYBGA7unMve8RvUclKLMT3PrihvJqUmzsRGh0RP84hKg== sha1-sG4FkgnwTEFN4AafLw4nltl5/G8="
+ "resolved" "https://npm.apple.com/@tsconfig/svelte/-/svelte-3.0.0.tgz"
+ "version" "3.0.0"
+
+"@types/babel__core@^7.0.0", "@types/babel__core@^7.1.14":
+ "integrity" "sha512-S7unDjm/C7z2A2R9NzfKCK1I+BAALDtxEmsJBwlB3EzNfb929ykjL++1CK9LO++EIp2fQrC8O+BwjKvz6UeDyQ=="
+ "resolved" "https://npm.apple.com/@types/babel__core/-/babel__core-7.1.18.tgz"
+ "version" "7.1.18"
+ dependencies:
+ "@babel/parser" "^7.1.0"
+ "@babel/types" "^7.0.0"
+ "@types/babel__generator" "*"
+ "@types/babel__template" "*"
+ "@types/babel__traverse" "*"
+
+"@types/babel__generator@*":
+ "integrity" "sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg=="
+ "resolved" "https://npm.apple.com/@types/babel__generator/-/babel__generator-7.6.4.tgz"
+ "version" "7.6.4"
+ dependencies:
+ "@babel/types" "^7.0.0"
+
+"@types/babel__template@*":
+ "integrity" "sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g=="
+ "resolved" "https://npm.apple.com/@types/babel__template/-/babel__template-7.4.1.tgz"
+ "version" "7.4.1"
+ dependencies:
+ "@babel/parser" "^7.1.0"
+ "@babel/types" "^7.0.0"
+
+"@types/babel__traverse@*", "@types/babel__traverse@^7.0.4", "@types/babel__traverse@^7.0.6":
+ "integrity" "sha512-K2waXdXBi2302XUdcHcR1jCeU0LL4TD9HRs/gk0N2Xvrht+G/BfJa4QObBQZfhMdxiCpV3COl5Nfq4uKTeTnJA=="
+ "resolved" "https://npm.apple.com/@types/babel__traverse/-/babel__traverse-7.14.2.tgz"
+ "version" "7.14.2"
+ dependencies:
+ "@babel/types" "^7.3.0"
+
+"@types/cwise-compiler@*":
+ "integrity" "sha512-rVRSR9hktu9hiUMQurWnDii1vnNoHTBu/Tjf9YMlfaGyrpY8skfz7q2jmXa4MdJgQ7r1W3NNLKEBv6ayXlpqUg== sha1-570kSw9EN0KaD/jgaq0IljPZl6o="
+ "resolved" "https://npm.apple.com/@types/cwise-compiler/-/cwise-compiler-1.1.4.tgz"
+ "version" "1.1.4"
+ dependencies:
+ "@types/cwise-parser" "*"
+ "@types/ndarray" "*"
+
+"@types/cwise-parser@*":
+ "integrity" "sha512-+0C9uznudexJL/I38gQLEz6mdnObPBx313xDJmRRlZ40MOMfOKJIW1ws62rj+Nt2jltETRRTxAJLeZJO4sytJw== sha1-wJnmug9Z+z854ECmUhK7rMOBtcQ="
+ "resolved" "https://npm.apple.com/@types/cwise-parser/-/cwise-parser-1.0.1.tgz"
+ "version" "1.0.1"
+
+"@types/cwise@^1.0.4":
+ "integrity" "sha512-ODlc0Cv5BI7//4ekyc3AD/nBezLMyrg6+SXFarHEAG8iGXNS6IBXHU6p/zH/pxmddYqXW3OfrzEqohM7wgJlGw== sha1-LuAFKnWmI9nHGc0bzHHgMk4jN9w="
+ "resolved" "https://npm.apple.com/@types/cwise/-/cwise-1.0.4.tgz"
+ "version" "1.0.4"
+ dependencies:
+ "@types/cwise-compiler" "*"
+ "@types/ndarray" "*"
+
+"@types/d3-array@^3.0.2":
+ "integrity" "sha512-5mjGjz6XOXKOCdTajXTZ/pMsg236RdiwKPrRPWAEf/2S/+PzwY+LLYShUpeysWaMvsdS7LArh6GdUefoxpchsQ== sha1-ccNbyoNmpA0bj86Sea+kp3+wBl0="
+ "resolved" "https://npm.apple.com/@types/d3-array/-/d3-array-3.0.2.tgz"
+ "version" "3.0.2"
+
+"@types/d3-dsv@^3.0.0":
+ "integrity" "sha512-o0/7RlMl9p5n6FQDptuJVMxDf/7EDEv2SYEO/CwdG2tr1hTfUVi0Iavkk2ax+VpaQ/1jVhpnj5rq1nj8vwhn2A== sha1-88YfsRe9ST7A6BSFb+uAShTPwxE="
+ "resolved" "https://npm.apple.com/@types/d3-dsv/-/d3-dsv-3.0.0.tgz"
+ "version" "3.0.0"
+
+"@types/d3-scale@^4.0.2":
+ "integrity" "sha512-Yk4htunhPAwN0XGlIwArRomOjdoBFXC3+kCxK2Ubg7I9shQlVSJy/pG/Ht5ASN+gdMIalpk8TJ5xV74jFsetLA== sha1-Qb4kESavRjBSTq2csQCKsvDybmk="
+ "resolved" "https://npm.apple.com/@types/d3-scale/-/d3-scale-4.0.2.tgz"
+ "version" "4.0.2"
+ dependencies:
+ "@types/d3-time" "*"
+
+"@types/d3-time@*":
+ "integrity" "sha512-sZLCdHvBUcNby1cB6Fd3ZBrABbjz3v1Vm90nysCQ6Vt7vd6e/h9Lt7SiJUoEX0l4Dzc7P5llKyhqSi1ycSf1Hg== sha1-4awPPp4ZUTU2H6Gh1i95XYfm6Bk="
+ "resolved" "https://npm.apple.com/@types/d3-time/-/d3-time-3.0.0.tgz"
+ "version" "3.0.0"
+
+"@types/estree@*", "@types/estree@0.0.39":
+ "integrity" "sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw== sha1-4Xfmme4bjCLSMXTKqnQiZEOJUJ8="
+ "resolved" "https://npm.apple.com/@types/estree/-/estree-0.0.39.tgz"
+ "version" "0.0.39"
+
+"@types/graceful-fs@^4.1.2":
+ "integrity" "sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw=="
+ "resolved" "https://npm.apple.com/@types/graceful-fs/-/graceful-fs-4.1.5.tgz"
+ "version" "4.1.5"
+ dependencies:
+ "@types/node" "*"
+
+"@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0", "@types/istanbul-lib-coverage@^2.0.1":
+ "integrity" "sha512-sz7iLqvVUg1gIedBOvlkxPlc8/uVzyS5OwGz1cKjXzkl3FpL3al0crU8YGU1WoHkxn0Wxbw5tyi6hvzJKNzFsw== sha1-S6jdtyAiH0MuRDvV+RF/0iz9R2I="
+ "resolved" "https://npm.apple.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.3.tgz"
+ "version" "2.0.3"
+
+"@types/istanbul-lib-report@*":
+ "integrity" "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg== sha1-wUwk8Y6oGQwRjudWK3/5mjZVJoY="
+ "resolved" "https://npm.apple.com/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz"
+ "version" "3.0.0"
+ dependencies:
+ "@types/istanbul-lib-coverage" "*"
+
+"@types/istanbul-reports@^3.0.0":
+ "integrity" "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw== sha1-kVP+mLuivVZaY63ZQ21vDX+EaP8="
+ "resolved" "https://npm.apple.com/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz"
+ "version" "3.0.1"
+ dependencies:
+ "@types/istanbul-lib-report" "*"
+
+"@types/jest@^27.0.0", "@types/jest@^27.4.1":
+ "integrity" "sha512-23iPJADSmicDVrWk+HT58LMJtzLAnB2AgIzplQuq/bSrGaxCrlvRFjGbXmamnnk/mAmCdLStiGqggu28ocUyiw=="
+ "resolved" "https://npm.apple.com/@types/jest/-/jest-27.4.1.tgz"
+ "version" "27.4.1"
+ dependencies:
+ "jest-matcher-utils" "^27.0.0"
+ "pretty-format" "^27.0.0"
+
+"@types/json-schema@^7.0.9":
+ "integrity" "sha512-qcUXuemtEu+E5wZSJHNxUXeCZhAfXKQ41D+duX+VYPde7xyEVZci+/oXKJL13tnRs9lR2pr4fod59GT6/X1/yQ=="
+ "resolved" "https://npm.apple.com/@types/json-schema/-/json-schema-7.0.9.tgz"
+ "version" "7.0.9"
+
+"@types/lodash@^4.14.179":
+ "integrity" "sha512-uwc1x90yCKqGcIOAT6DwOSuxnrAbpkdPsUOZtwrXb4D/6wZs+6qG7QnIawDuZWg0sWpxl+ltIKCaLoMlna678w=="
+ "resolved" "https://npm.apple.com/@types/lodash/-/lodash-4.14.179.tgz"
+ "version" "4.14.179"
+
+"@types/ndarray@*", "@types/ndarray@^1.0.11":
+ "integrity" "sha512-hOZVTN24zDHwCHaW7mF9n1vHJt83fZhNZ0YYRBwQGhA96yBWWDPTDDlqJatagHIOJB0a4xoNkNc+t/Cxd+6qUA== sha1-p4cwrB/RDqAc2mlU26ezv0+hJvQ="
+ "resolved" "https://npm.apple.com/@types/ndarray/-/ndarray-1.0.11.tgz"
+ "version" "1.0.11"
+
+"@types/node@*", "@types/node@^17.0.21":
+ "integrity" "sha512-DBZCJbhII3r90XbQxI8Y9IjjiiOGlZ0Hr32omXIZvwwZ7p4DMMXGrKXVyPfuoBOri9XNtL0UK69jYIBIsRX3QQ=="
+ "resolved" "https://npm.apple.com/@types/node/-/node-17.0.21.tgz"
+ "version" "17.0.21"
+
+"@types/prettier@^2.1.5":
+ "integrity" "sha512-ReVR2rLTV1kvtlWFyuot+d1pkpG2Fw/XKE3PDAdj57rbM97ttSp9JZ2UsP+2EHTylra9cUf6JA7tGwW1INzUrA=="
+ "resolved" "https://npm.apple.com/@types/prettier/-/prettier-2.4.4.tgz"
+ "version" "2.4.4"
+
+"@types/pug@^2.0.4":
+ "integrity" "sha512-LOnASQoeNZMkzexRuyqcBBDZ6rS+rQxUMkmj5A0PkhhiSZivLIuz6Hxyr1mkGoEZEkk66faROmpMi4fFkrKsBA== sha1-abxwCTTdRzx6uXJwvS26zv5WIjE="
+ "resolved" "https://npm.apple.com/@types/pug/-/pug-2.0.5.tgz"
+ "version" "2.0.5"
+
+"@types/resolve@1.17.1":
+ "integrity" "sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw== sha1-Ov1q2JZ8d+Q3bFmKgt3Vj0bsRdY="
+ "resolved" "https://npm.apple.com/@types/resolve/-/resolve-1.17.1.tgz"
+ "version" "1.17.1"
+ dependencies:
+ "@types/node" "*"
+
+"@types/sass@^1.16.0":
+ "integrity" "sha512-BPdoIt1lfJ6B7rw35ncdwBZrAssjcwzI5LByIrYs+tpXlj/CAkuVdRsgZDdP4lq5EjyWzwxZCqAoFyHKFwp32g== sha1-hrsBaOnogdfa3m66FsntbSXcL2g="
+ "resolved" "https://npm.apple.com/@types/sass/-/sass-1.43.1.tgz"
+ "version" "1.43.1"
+ dependencies:
+ "@types/node" "*"
+
+"@types/stack-utils@^2.0.0":
+ "integrity" "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw=="
+ "resolved" "https://npm.apple.com/@types/stack-utils/-/stack-utils-2.0.1.tgz"
+ "version" "2.0.1"
+
+"@types/yargs-parser@*":
+ "integrity" "sha512-7tFImggNeNBVMsn0vLrpn1H1uPrUBdnARPTpZoitY37ZrdJREzf7I16tMrlK3hen349gr1NYh8CmZQa7CTG6Aw== sha1-O5ziSJkZ2eT+pDm3aRarw0st8Sk="
+ "resolved" "https://npm.apple.com/@types/yargs-parser/-/yargs-parser-20.2.1.tgz"
+ "version" "20.2.1"
+
+"@types/yargs@^16.0.0":
+ "integrity" "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw== sha1-JqrZjdLCo45CEIbqmtQrnlFkKXc="
+ "resolved" "https://npm.apple.com/@types/yargs/-/yargs-16.0.4.tgz"
+ "version" "16.0.4"
+ dependencies:
+ "@types/yargs-parser" "*"
+
+"@typescript-eslint/eslint-plugin@^5.0.0", "@typescript-eslint/eslint-plugin@^5.14.0":
+ "integrity" "sha512-ir0wYI4FfFUDfLcuwKzIH7sMVA+db7WYen47iRSaCGl+HMAZI9fpBwfDo45ZALD3A45ZGyHWDNLhbg8tZrMX4w=="
+ "resolved" "https://npm.apple.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.14.0.tgz"
+ "version" "5.14.0"
+ dependencies:
+ "@typescript-eslint/scope-manager" "5.14.0"
+ "@typescript-eslint/type-utils" "5.14.0"
+ "@typescript-eslint/utils" "5.14.0"
+ "debug" "^4.3.2"
+ "functional-red-black-tree" "^1.0.1"
+ "ignore" "^5.1.8"
+ "regexpp" "^3.2.0"
+ "semver" "^7.3.5"
+ "tsutils" "^3.21.0"
+
+"@typescript-eslint/parser@^5.0.0", "@typescript-eslint/parser@^5.14.0":
+ "integrity" "sha512-aHJN8/FuIy1Zvqk4U/gcO/fxeMKyoSv/rS46UXMXOJKVsLQ+iYPuXNbpbH7cBLcpSbmyyFbwrniLx5+kutu1pw=="
+ "resolved" "https://npm.apple.com/@typescript-eslint/parser/-/parser-5.14.0.tgz"
+ "version" "5.14.0"
+ dependencies:
+ "@typescript-eslint/scope-manager" "5.14.0"
+ "@typescript-eslint/types" "5.14.0"
+ "@typescript-eslint/typescript-estree" "5.14.0"
+ "debug" "^4.3.2"
+
+"@typescript-eslint/scope-manager@5.14.0":
+ "integrity" "sha512-LazdcMlGnv+xUc5R4qIlqH0OWARyl2kaP8pVCS39qSL3Pd1F7mI10DbdXeARcE62sVQE4fHNvEqMWsypWO+yEw=="
+ "resolved" "https://npm.apple.com/@typescript-eslint/scope-manager/-/scope-manager-5.14.0.tgz"
+ "version" "5.14.0"
+ dependencies:
+ "@typescript-eslint/types" "5.14.0"
+ "@typescript-eslint/visitor-keys" "5.14.0"
+
+"@typescript-eslint/type-utils@5.14.0":
+ "integrity" "sha512-d4PTJxsqaUpv8iERTDSQBKUCV7Q5yyXjqXUl3XF7Sd9ogNLuKLkxz82qxokqQ4jXdTPZudWpmNtr/JjbbvUixw=="
+ "resolved" "https://npm.apple.com/@typescript-eslint/type-utils/-/type-utils-5.14.0.tgz"
+ "version" "5.14.0"
+ dependencies:
+ "@typescript-eslint/utils" "5.14.0"
+ "debug" "^4.3.2"
+ "tsutils" "^3.21.0"
+
+"@typescript-eslint/types@5.14.0":
+ "integrity" "sha512-BR6Y9eE9360LNnW3eEUqAg6HxS9Q35kSIs4rp4vNHRdfg0s+/PgHgskvu5DFTM7G5VKAVjuyaN476LCPrdA7Mw=="
+ "resolved" "https://npm.apple.com/@typescript-eslint/types/-/types-5.14.0.tgz"
+ "version" "5.14.0"
+
+"@typescript-eslint/typescript-estree@5.14.0":
+ "integrity" "sha512-QGnxvROrCVtLQ1724GLTHBTR0lZVu13izOp9njRvMkCBgWX26PKvmMP8k82nmXBRD3DQcFFq2oj3cKDwr0FaUA=="
+ "resolved" "https://npm.apple.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.14.0.tgz"
+ "version" "5.14.0"
+ dependencies:
+ "@typescript-eslint/types" "5.14.0"
+ "@typescript-eslint/visitor-keys" "5.14.0"
+ "debug" "^4.3.2"
+ "globby" "^11.0.4"
+ "is-glob" "^4.0.3"
+ "semver" "^7.3.5"
+ "tsutils" "^3.21.0"
+
+"@typescript-eslint/utils@^5.10.0", "@typescript-eslint/utils@5.14.0":
+ "integrity" "sha512-EHwlII5mvUA0UsKYnVzySb/5EE/t03duUTweVy8Zqt3UQXBrpEVY144OTceFKaOe4xQXZJrkptCf7PjEBeGK4w=="
+ "resolved" "https://npm.apple.com/@typescript-eslint/utils/-/utils-5.14.0.tgz"
+ "version" "5.14.0"
+ dependencies:
+ "@types/json-schema" "^7.0.9"
+ "@typescript-eslint/scope-manager" "5.14.0"
+ "@typescript-eslint/types" "5.14.0"
+ "@typescript-eslint/typescript-estree" "5.14.0"
+ "eslint-scope" "^5.1.1"
+ "eslint-utils" "^3.0.0"
+
+"@typescript-eslint/visitor-keys@5.14.0":
+ "integrity" "sha512-yL0XxfzR94UEkjBqyymMLgCBdojzEuy/eim7N9/RIcTNxpJudAcqsU8eRyfzBbcEzGoPWfdM3AGak3cN08WOIw=="
+ "resolved" "https://npm.apple.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.14.0.tgz"
+ "version" "5.14.0"
+ dependencies:
+ "@typescript-eslint/types" "5.14.0"
+ "eslint-visitor-keys" "^3.0.0"
+
+"abab@^2.0.3", "abab@^2.0.5":
+ "integrity" "sha512-9IK9EadsbHo6jLWIpxpR6pL0sazTXV6+SQv25ZB+F7Bj9mJNaOc4nCRabwd5M/JwmUa8idz6Eci6eKfJryPs6Q=="
+ "resolved" "https://npm.apple.com/abab/-/abab-2.0.5.tgz"
+ "version" "2.0.5"
+
+"acorn-globals@^6.0.0":
+ "integrity" "sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg=="
+ "resolved" "https://npm.apple.com/acorn-globals/-/acorn-globals-6.0.0.tgz"
+ "version" "6.0.0"
+ dependencies:
+ "acorn" "^7.1.1"
+ "acorn-walk" "^7.1.1"
+
+"acorn-jsx@^5.3.1":
+ "integrity" "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ=="
+ "resolved" "https://npm.apple.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz"
+ "version" "5.3.2"
+
+"acorn-walk@^7.1.1":
+ "integrity" "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA=="
+ "resolved" "https://npm.apple.com/acorn-walk/-/acorn-walk-7.2.0.tgz"
+ "version" "7.2.0"
+
+"acorn@^6.0.0 || ^7.0.0 || ^8.0.0", "acorn@^8.2.4", "acorn@^8.5.0", "acorn@^8.7.0":
+ "integrity" "sha512-V/LGr1APy+PXIwKebEWrkZPwoeoF+w1jiOBUmuxuiUIaOHtob8Qc9BTrYo7VuI5fR8tqsy+buA2WFooR5olqvQ=="
+ "resolved" "https://npm.apple.com/acorn/-/acorn-8.7.0.tgz"
+ "version" "8.7.0"
+
+"acorn@^7.1.1":
+ "integrity" "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A=="
+ "resolved" "https://npm.apple.com/acorn/-/acorn-7.4.1.tgz"
+ "version" "7.4.1"
+
+"agent-base@6":
+ "integrity" "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ=="
+ "resolved" "https://npm.apple.com/agent-base/-/agent-base-6.0.2.tgz"
+ "version" "6.0.2"
+ dependencies:
+ "debug" "4"
+
+"ajv@^6.10.0", "ajv@^6.12.4":
+ "integrity" "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g=="
+ "resolved" "https://npm.apple.com/ajv/-/ajv-6.12.6.tgz"
+ "version" "6.12.6"
+ dependencies:
+ "fast-deep-equal" "^3.1.1"
+ "fast-json-stable-stringify" "^2.0.0"
+ "json-schema-traverse" "^0.4.1"
+ "uri-js" "^4.2.2"
+
+"ansi-escapes@^4.2.1":
+ "integrity" "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ=="
+ "resolved" "https://npm.apple.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz"
+ "version" "4.3.2"
+ dependencies:
+ "type-fest" "^0.21.3"
+
+"ansi-regex@^5.0.1":
+ "integrity" "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== sha1-CCyyyJyf6GWaMRpTvWpNxTAdswQ="
+ "resolved" "https://npm.apple.com/ansi-regex/-/ansi-regex-5.0.1.tgz"
+ "version" "5.0.1"
+
+"ansi-styles@^3.2.1":
+ "integrity" "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== sha1-QfuyAkPlCxK+DwS43tvwdSDOhB0="
+ "resolved" "https://npm.apple.com/ansi-styles/-/ansi-styles-3.2.1.tgz"
+ "version" "3.2.1"
+ dependencies:
+ "color-convert" "^1.9.0"
+
+"ansi-styles@^4.0.0":
+ "integrity" "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="
+ "resolved" "https://npm.apple.com/ansi-styles/-/ansi-styles-4.3.0.tgz"
+ "version" "4.3.0"
+ dependencies:
+ "color-convert" "^2.0.1"
+
+"ansi-styles@^4.1.0":
+ "integrity" "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="
+ "resolved" "https://npm.apple.com/ansi-styles/-/ansi-styles-4.3.0.tgz"
+ "version" "4.3.0"
+ dependencies:
+ "color-convert" "^2.0.1"
+
+"ansi-styles@^5.0.0":
+ "integrity" "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA== sha1-B0SWkK1Fd30ZJKwquy/IiV26g2s="
+ "resolved" "https://npm.apple.com/ansi-styles/-/ansi-styles-5.2.0.tgz"
+ "version" "5.2.0"
+
+"anymatch@^3.0.3", "anymatch@~3.1.2":
+ "integrity" "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg== sha1-wFV8CWrzLxBhmPT04qODU343hxY="
+ "resolved" "https://npm.apple.com/anymatch/-/anymatch-3.1.2.tgz"
+ "version" "3.1.2"
+ dependencies:
+ "normalize-path" "^3.0.0"
+ "picomatch" "^2.0.4"
+
+"argparse@^1.0.7":
+ "integrity" "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== sha1-vNZ5HqWuCXJeF+WtmIE0zUCz2RE="
+ "resolved" "https://npm.apple.com/argparse/-/argparse-1.0.10.tgz"
+ "version" "1.0.10"
+ dependencies:
+ "sprintf-js" "~1.0.2"
+
+"argparse@^2.0.1":
+ "integrity" "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q=="
+ "resolved" "https://npm.apple.com/argparse/-/argparse-2.0.1.tgz"
+ "version" "2.0.1"
+
+"array-union@^1.0.1":
+ "integrity" "sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk="
+ "resolved" "https://npm.apple.com/array-union/-/array-union-1.0.2.tgz"
+ "version" "1.0.2"
+ dependencies:
+ "array-uniq" "^1.0.1"
+
+"array-union@^2.1.0":
+ "integrity" "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw=="
+ "resolved" "https://npm.apple.com/array-union/-/array-union-2.1.0.tgz"
+ "version" "2.1.0"
+
+"array-uniq@^1.0.1":
+ "integrity" "sha1-r2rId6Jcx/dOBYiUdThY39sk/bY="
+ "resolved" "https://npm.apple.com/array-uniq/-/array-uniq-1.0.3.tgz"
+ "version" "1.0.3"
+
+"async@^2.6.1":
+ "integrity" "sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg== sha1-1yYl4jRKNlbjo61Pp0n6gymdgv8="
+ "resolved" "https://npm.apple.com/async/-/async-2.6.3.tgz"
+ "version" "2.6.3"
+ dependencies:
+ "lodash" "^4.17.14"
+
+"asynckit@^0.4.0":
+ "integrity" "sha1-x57Zf380y48robyXkLzDZkdLS3k="
+ "resolved" "https://npm.apple.com/asynckit/-/asynckit-0.4.0.tgz"
+ "version" "0.4.0"
+
+"babel-jest@^27.5.1", "babel-jest@>=27.0.0 <28":
+ "integrity" "sha512-cdQ5dXjGRd0IBRATiQ4mZGlGlRE8kJpjPOixdNRdT+m3UcNqmYWN6rK6nvtXYfY3D76cb8s/O1Ss8ea24PIwcg=="
+ "resolved" "https://npm.apple.com/babel-jest/-/babel-jest-27.5.1.tgz"
+ "version" "27.5.1"
+ dependencies:
+ "@jest/transform" "^27.5.1"
+ "@jest/types" "^27.5.1"
+ "@types/babel__core" "^7.1.14"
+ "babel-plugin-istanbul" "^6.1.1"
+ "babel-preset-jest" "^27.5.1"
+ "chalk" "^4.0.0"
+ "graceful-fs" "^4.2.9"
+ "slash" "^3.0.0"
+
+"babel-plugin-istanbul@^6.1.1":
+ "integrity" "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA== sha1-+ojsWSMv2bTjbbvFQKjsmptH2nM="
+ "resolved" "https://npm.apple.com/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz"
+ "version" "6.1.1"
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.0.0"
+ "@istanbuljs/load-nyc-config" "^1.0.0"
+ "@istanbuljs/schema" "^0.1.2"
+ "istanbul-lib-instrument" "^5.0.4"
+ "test-exclude" "^6.0.0"
+
+"babel-plugin-jest-hoist@^27.5.1":
+ "integrity" "sha512-50wCwD5EMNW4aRpOwtqzyZHIewTYNxLA4nhB+09d8BIssfNfzBRhkBIHiaPv1Si226TQSvp8gxAJm2iY2qs2hQ=="
+ "resolved" "https://npm.apple.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-27.5.1.tgz"
+ "version" "27.5.1"
+ dependencies:
+ "@babel/template" "^7.3.3"
+ "@babel/types" "^7.3.3"
+ "@types/babel__core" "^7.0.0"
+ "@types/babel__traverse" "^7.0.6"
+
+"babel-preset-current-node-syntax@^1.0.0":
+ "integrity" "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ=="
+ "resolved" "https://npm.apple.com/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz"
+ "version" "1.0.1"
+ dependencies:
+ "@babel/plugin-syntax-async-generators" "^7.8.4"
+ "@babel/plugin-syntax-bigint" "^7.8.3"
+ "@babel/plugin-syntax-class-properties" "^7.8.3"
+ "@babel/plugin-syntax-import-meta" "^7.8.3"
+ "@babel/plugin-syntax-json-strings" "^7.8.3"
+ "@babel/plugin-syntax-logical-assignment-operators" "^7.8.3"
+ "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3"
+ "@babel/plugin-syntax-numeric-separator" "^7.8.3"
+ "@babel/plugin-syntax-object-rest-spread" "^7.8.3"
+ "@babel/plugin-syntax-optional-catch-binding" "^7.8.3"
+ "@babel/plugin-syntax-optional-chaining" "^7.8.3"
+ "@babel/plugin-syntax-top-level-await" "^7.8.3"
+
+"babel-preset-jest@^27.5.1":
+ "integrity" "sha512-Nptf2FzlPCWYuJg41HBqXVT8ym6bXOevuCTbhxlUpjwtysGaIWFvDEjp4y+G7fl13FgOdjs7P/DmErqH7da0Ag=="
+ "resolved" "https://npm.apple.com/babel-preset-jest/-/babel-preset-jest-27.5.1.tgz"
+ "version" "27.5.1"
+ dependencies:
+ "babel-plugin-jest-hoist" "^27.5.1"
+ "babel-preset-current-node-syntax" "^1.0.0"
+
+"balanced-match@^1.0.0":
+ "integrity" "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== sha1-6D46fj8wCzTLnYf2FfoMvzV2kO4="
+ "resolved" "https://npm.apple.com/balanced-match/-/balanced-match-1.0.2.tgz"
+ "version" "1.0.2"
+
+"binary-extensions@^2.0.0":
+ "integrity" "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== sha1-dfUC7q+f/eQvyYgpZFvk6na9ni0="
+ "resolved" "https://npm.apple.com/binary-extensions/-/binary-extensions-2.2.0.tgz"
+ "version" "2.2.0"
+
+"brace-expansion@^1.1.7":
+ "integrity" "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== sha1-PH/L9SnYcibz0vUrlm/1Jx60Qd0="
+ "resolved" "https://npm.apple.com/brace-expansion/-/brace-expansion-1.1.11.tgz"
+ "version" "1.1.11"
+ dependencies:
+ "balanced-match" "^1.0.0"
+ "concat-map" "0.0.1"
+
+"braces@^3.0.1", "braces@~3.0.2":
+ "integrity" "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== sha1-NFThpGLujVmeI23zNs2epPiv4Qc="
+ "resolved" "https://npm.apple.com/braces/-/braces-3.0.2.tgz"
+ "version" "3.0.2"
+ dependencies:
+ "fill-range" "^7.0.1"
+
+"browser-process-hrtime@^1.0.0":
+ "integrity" "sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow=="
+ "resolved" "https://npm.apple.com/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz"
+ "version" "1.0.0"
+
+"browserslist@^4.17.5":
+ "integrity" "sha512-bnpOoa+DownbciXj0jVGENf8VYQnE2LNWomhYuCsMmmx9Jd9lwq0WXODuwpSsp8AVdKM2/HorrzxAfbKvWTByQ=="
+ "resolved" "https://npm.apple.com/browserslist/-/browserslist-4.20.0.tgz"
+ "version" "4.20.0"
+ dependencies:
+ "caniuse-lite" "^1.0.30001313"
+ "electron-to-chromium" "^1.4.76"
+ "escalade" "^3.1.1"
+ "node-releases" "^2.0.2"
+ "picocolors" "^1.0.0"
+
+"bs-logger@0.x":
+ "integrity" "sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog== sha1-6302UwenLPl0zGzadraDVK0za9g="
+ "resolved" "https://npm.apple.com/bs-logger/-/bs-logger-0.2.6.tgz"
+ "version" "0.2.6"
+ dependencies:
+ "fast-json-stable-stringify" "2.x"
+
+"bser@2.1.1":
+ "integrity" "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ=="
+ "resolved" "https://npm.apple.com/bser/-/bser-2.1.1.tgz"
+ "version" "2.1.1"
+ dependencies:
+ "node-int64" "^0.4.0"
+
+"buffer-crc32@^0.2.5":
+ "integrity" "sha1-DTM+PwDqxQqhRUq9MO+MKl2ackI="
+ "resolved" "https://npm.apple.com/buffer-crc32/-/buffer-crc32-0.2.13.tgz"
+ "version" "0.2.13"
+
+"buffer-from@^1.0.0":
+ "integrity" "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== sha1-KxRqb9cugLT1XSVfNe1Zo6mkG9U="
+ "resolved" "https://npm.apple.com/buffer-from/-/buffer-from-1.1.2.tgz"
+ "version" "1.1.2"
+
+"builtin-modules@^3.1.0":
+ "integrity" "sha512-lGzLKcioL90C7wMczpkY0n/oART3MbBa8R9OFGE1rJxoVI86u4WAGfEk8Wjv10eKSyTHVGkSo3bvBylCEtk7LA== sha1-RdXbmefuXmvE82LgCL+RerUEmIc="
+ "resolved" "https://npm.apple.com/builtin-modules/-/builtin-modules-3.2.0.tgz"
+ "version" "3.2.0"
+
+"call-bind@^1.0.0", "call-bind@^1.0.2":
+ "integrity" "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== sha1-sdTonmiBGcPJqQOtMKuy9qkZvjw="
+ "resolved" "https://npm.apple.com/call-bind/-/call-bind-1.0.2.tgz"
+ "version" "1.0.2"
+ dependencies:
+ "function-bind" "^1.1.1"
+ "get-intrinsic" "^1.0.2"
+
+"callsites@^3.0.0":
+ "integrity" "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== sha1-s2MKvYlDQy9Us/BRkjjjPNffL3M="
+ "resolved" "https://npm.apple.com/callsites/-/callsites-3.1.0.tgz"
+ "version" "3.1.0"
+
+"camelcase@^5.3.1":
+ "integrity" "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== sha1-48mzFWnhBoEd8kL3FXJaH0xJQyA="
+ "resolved" "https://npm.apple.com/camelcase/-/camelcase-5.3.1.tgz"
+ "version" "5.3.1"
+
+"camelcase@^6.2.0":
+ "integrity" "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA=="
+ "resolved" "https://npm.apple.com/camelcase/-/camelcase-6.3.0.tgz"
+ "version" "6.3.0"
+
+"caniuse-lite@^1.0.30001313":
+ "integrity" "sha512-0zaSO+TnCHtHJIbpLroX7nsD+vYuOVjl3uzFbJO1wMVbuveJA0RK2WcQA9ZUIOiO0/ArMiMgHJLxfEZhQiC0kw=="
+ "resolved" "https://npm.apple.com/caniuse-lite/-/caniuse-lite-1.0.30001314.tgz"
+ "version" "1.0.30001314"
+
+"chalk@^2.0.0", "chalk@^2.4.1":
+ "integrity" "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== sha1-zUJUFnelQzPPVBpJEIwUMrRMlCQ="
+ "resolved" "https://npm.apple.com/chalk/-/chalk-2.4.2.tgz"
+ "version" "2.4.2"
+ dependencies:
+ "ansi-styles" "^3.2.1"
+ "escape-string-regexp" "^1.0.5"
+ "supports-color" "^5.3.0"
+
+"chalk@^4.0.0":
+ "integrity" "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA=="
+ "resolved" "https://npm.apple.com/chalk/-/chalk-4.1.2.tgz"
+ "version" "4.1.2"
+ dependencies:
+ "ansi-styles" "^4.1.0"
+ "supports-color" "^7.1.0"
+
+"char-regex@^1.0.2":
+ "integrity" "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw=="
+ "resolved" "https://npm.apple.com/char-regex/-/char-regex-1.0.2.tgz"
+ "version" "1.0.2"
+
+"chokidar@^3.4.1", "chokidar@^3.5.0":
+ "integrity" "sha512-ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ== sha1-26OXb8rbAW9m/TZQIdkWANAcHnU="
+ "resolved" "https://npm.apple.com/chokidar/-/chokidar-3.5.2.tgz"
+ "version" "3.5.2"
+ dependencies:
+ "anymatch" "~3.1.2"
+ "braces" "~3.0.2"
+ "glob-parent" "~5.1.2"
+ "is-binary-path" "~2.1.0"
+ "is-glob" "~4.0.1"
+ "normalize-path" "~3.0.0"
+ "readdirp" "~3.6.0"
+ optionalDependencies:
+ "fsevents" "~2.3.2"
+
+"ci-info@^3.2.0":
+ "integrity" "sha512-riT/3vI5YpVH6/qomlDnJow6TBee2PBKSEpx3O32EGPYbWGIRsIlGRms3Sm74wYE1JMo8RnO04Hb12+v1J5ICw== sha1-tO0ftoGN6kgDpVxiMEH5Fl0gZrI="
+ "resolved" "https://npm.apple.com/ci-info/-/ci-info-3.3.0.tgz"
+ "version" "3.3.0"
+
+"cjs-module-lexer@^1.0.0":
+ "integrity" "sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA=="
+ "resolved" "https://npm.apple.com/cjs-module-lexer/-/cjs-module-lexer-1.2.2.tgz"
+ "version" "1.2.2"
+
+"cliui@^7.0.2":
+ "integrity" "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ=="
+ "resolved" "https://npm.apple.com/cliui/-/cliui-7.0.4.tgz"
+ "version" "7.0.4"
+ dependencies:
+ "string-width" "^4.2.0"
+ "strip-ansi" "^6.0.0"
+ "wrap-ansi" "^7.0.0"
+
+"co@^4.6.0":
+ "integrity" "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ="
+ "resolved" "https://npm.apple.com/co/-/co-4.6.0.tgz"
+ "version" "4.6.0"
+
+"collect-v8-coverage@^1.0.0":
+ "integrity" "sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg=="
+ "resolved" "https://npm.apple.com/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz"
+ "version" "1.0.1"
+
+"color-convert@^1.9.0":
+ "integrity" "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== sha1-u3GFBpDh8TZWfeYp0tVHHe2kweg="
+ "resolved" "https://npm.apple.com/color-convert/-/color-convert-1.9.3.tgz"
+ "version" "1.9.3"
+ dependencies:
+ "color-name" "1.1.3"
+
+"color-convert@^2.0.1":
+ "integrity" "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ=="
+ "resolved" "https://npm.apple.com/color-convert/-/color-convert-2.0.1.tgz"
+ "version" "2.0.1"
+ dependencies:
+ "color-name" "~1.1.4"
+
+"color-name@~1.1.4":
+ "integrity" "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
+ "resolved" "https://npm.apple.com/color-name/-/color-name-1.1.4.tgz"
+ "version" "1.1.4"
+
+"color-name@1.1.3":
+ "integrity" "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU="
+ "resolved" "https://npm.apple.com/color-name/-/color-name-1.1.3.tgz"
+ "version" "1.1.3"
+
+"combined-stream@^1.0.8":
+ "integrity" "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg=="
+ "resolved" "https://npm.apple.com/combined-stream/-/combined-stream-1.0.8.tgz"
+ "version" "1.0.8"
+ dependencies:
+ "delayed-stream" "~1.0.0"
+
+"commander@^2.18.0", "commander@^2.20.0", "commander@2":
+ "integrity" "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== sha1-/UhehMA+tIgcIHIrpIA16FMa6zM="
+ "resolved" "https://npm.apple.com/commander/-/commander-2.20.3.tgz"
+ "version" "2.20.3"
+
+"commondir@^1.0.1":
+ "integrity" "sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs="
+ "resolved" "https://npm.apple.com/commondir/-/commondir-1.0.1.tgz"
+ "version" "1.0.1"
+
+"concat-map@0.0.1":
+ "integrity" "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s="
+ "resolved" "https://npm.apple.com/concat-map/-/concat-map-0.0.1.tgz"
+ "version" "0.0.1"
+
+"console-clear@^1.1.0":
+ "integrity" "sha512-pMD+MVR538ipqkG5JXeOEbKWS5um1H4LUUccUQG68qpeqBYbzYy79Gh55jkd2TtPdRfUaLWdv6LPP//5Zt0aPQ== sha1-mV4gy/vxTdeStnLN44e9Eo1nS/c="
+ "resolved" "https://npm.apple.com/console-clear/-/console-clear-1.1.1.tgz"
+ "version" "1.1.1"
+
+"convert-source-map@^1.4.0", "convert-source-map@^1.6.0", "convert-source-map@^1.7.0":
+ "integrity" "sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA== sha1-8zc8MtIbTXgN2ABFFGhPt5HKQ2k="
+ "resolved" "https://npm.apple.com/convert-source-map/-/convert-source-map-1.8.0.tgz"
+ "version" "1.8.0"
+ dependencies:
+ "safe-buffer" "~5.1.1"
+
+"cross-spawn@^6.0.5":
+ "integrity" "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ== sha1-Sl7Hxk364iw6FBJNus3uhG2Ay8Q="
+ "resolved" "https://npm.apple.com/cross-spawn/-/cross-spawn-6.0.5.tgz"
+ "version" "6.0.5"
+ dependencies:
+ "nice-try" "^1.0.4"
+ "path-key" "^2.0.1"
+ "semver" "^5.5.0"
+ "shebang-command" "^1.2.0"
+ "which" "^1.2.9"
+
+"cross-spawn@^7.0.2", "cross-spawn@^7.0.3":
+ "integrity" "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== sha1-9zqFudXUHQRVUcF34ogtSshXKKY="
+ "resolved" "https://npm.apple.com/cross-spawn/-/cross-spawn-7.0.3.tgz"
+ "version" "7.0.3"
+ dependencies:
+ "path-key" "^3.1.0"
+ "shebang-command" "^2.0.0"
+ "which" "^2.0.1"
+
+"cssom@^0.4.4":
+ "integrity" "sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw=="
+ "resolved" "https://npm.apple.com/cssom/-/cssom-0.4.4.tgz"
+ "version" "0.4.4"
+
+"cssom@~0.3.6":
+ "integrity" "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg=="
+ "resolved" "https://npm.apple.com/cssom/-/cssom-0.3.8.tgz"
+ "version" "0.3.8"
+
+"cssstyle@^2.3.0":
+ "integrity" "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A=="
+ "resolved" "https://npm.apple.com/cssstyle/-/cssstyle-2.3.0.tgz"
+ "version" "2.3.0"
+ dependencies:
+ "cssom" "~0.3.6"
+
+"cwise-compiler@^1.0.0":
+ "integrity" "sha1-9NZnQQ6FDToxOn0tt7HlBbsDTMU="
+ "resolved" "https://npm.apple.com/cwise-compiler/-/cwise-compiler-1.1.3.tgz"
+ "version" "1.1.3"
+ dependencies:
+ "uniq" "^1.0.0"
+
+"d3-array@^2.11.0", "d3-array@^2.3.0", "d3-array@^2.7.1", "d3-array@2":
+ "integrity" "sha512-B0ErZK/66mHtEsR1TkPEEkwdy+WDesimkM5gpZr5Dsg54BiTA5RXtYW5qTLIAcekaS9xfZrzBLF/OAkB3Qn1YQ== sha1-4gtBqvzf/fXVCSgATs7PgVpGXoE="
+ "resolved" "https://npm.apple.com/d3-array/-/d3-array-2.12.1.tgz"
+ "version" "2.12.1"
+ dependencies:
+ "internmap" "^1.0.0"
+
+"d3-color@1 - 2":
+ "integrity" "sha512-SPXi0TSKPD4g9tw0NMZFnR95XVgUZiBH+uUTqQuDu1OsE2zomHU7ho0FISciaPvosimixwHFl3WHLGabv6dDgQ== sha1-jWJcq0Ltm49gGhdgo4n36pGJ1i4="
+ "resolved" "https://npm.apple.com/d3-color/-/d3-color-2.0.0.tgz"
+ "version" "2.0.0"
+
+"d3-dsv@^2.0.0":
+ "integrity" "sha512-E+Pn8UJYx9mViuIUkoc93gJGGYut6mSDKy2+XaPwccwkRGlR+LO97L2VCCRjQivTwLHkSnAJG7yo00BWY6QM+w== sha1-s3sZS230LaUToSDZE60b4itf58U="
+ "resolved" "https://npm.apple.com/d3-dsv/-/d3-dsv-2.0.0.tgz"
+ "version" "2.0.0"
+ dependencies:
+ "commander" "2"
+ "iconv-lite" "0.4"
+ "rw" "1"
+
+"d3-format@1 - 2":
+ "integrity" "sha512-Ab3S6XuE/Q+flY96HXT0jOXcM4EAClYFnRGY5zsjRGNy6qCYrQsMffs7cV5Q9xejb35zxW5hf/guKw34kvIKsA== sha1-oQvMD5hsNytym6RHOCQTqr9bB2c="
+ "resolved" "https://npm.apple.com/d3-format/-/d3-format-2.0.0.tgz"
+ "version" "2.0.0"
+
+"d3-interpolate@^2.0.1", "d3-interpolate@1.2.0 - 2":
+ "integrity" "sha512-c5UhwwTs/yybcmTpAVqwSFl6vrQ8JZJoT5F7xNFK9pymv5C0Ymcc9/LIJHtYIggg/yS9YHw8i8O8tgb9pupjeQ== sha1-mL5JnPuKO5TU/2FpAFAaZKvJEWM="
+ "resolved" "https://npm.apple.com/d3-interpolate/-/d3-interpolate-2.0.1.tgz"
+ "version" "2.0.1"
+ dependencies:
+ "d3-color" "1 - 2"
+
+"d3-scale@^3.2.2", "d3-scale@^3.2.3":
+ "integrity" "sha512-1JGp44NQCt5d1g+Yy+GeOnZP7xHo0ii8zsQp6PGzd+C1/dl0KGsp9A7Mxwp+1D1o4unbTTxVdU/ZOIEBoeZPbQ== sha1-KMYAsp9H5bnNLfl0nCBnJ5ZiA/M="
+ "resolved" "https://npm.apple.com/d3-scale/-/d3-scale-3.3.0.tgz"
+ "version" "3.3.0"
+ dependencies:
+ "d3-array" "^2.3.0"
+ "d3-format" "1 - 2"
+ "d3-interpolate" "1.2.0 - 2"
+ "d3-time" "^2.1.1"
+ "d3-time-format" "2 - 3"
+
+"d3-time-format@2 - 3":
+ "integrity" "sha512-UXJh6EKsHBTjopVqZBhFysQcoXSv/5yLONZvkQ5Kk3qbwiUYkdX17Xa1PT6U1ZWXGGfB1ey5L8dKMlFq2DO0Ag== sha1-34BWyDZZ4B8grF2l/ernwI1fG7Y="
+ "resolved" "https://npm.apple.com/d3-time-format/-/d3-time-format-3.0.0.tgz"
+ "version" "3.0.0"
+ dependencies:
+ "d3-time" "1 - 2"
+
+"d3-time@^2.0.0", "d3-time@^2.1.1", "d3-time@1 - 2":
+ "integrity" "sha512-/eIQe/eR4kCQwq7yxi7z4c6qEXf2IYGcjoWB5OOQy4Tq9Uv39/947qlDcN2TLkiTzQWzvnsuYPB9TrWaNfipKQ== sha1-6dioqIaR9FSOaMoIXl/5VnJKZoI="
+ "resolved" "https://npm.apple.com/d3-time/-/d3-time-2.1.1.tgz"
+ "version" "2.1.1"
+ dependencies:
+ "d3-array" "2"
+
+"data-urls@^2.0.0":
+ "integrity" "sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ=="
+ "resolved" "https://npm.apple.com/data-urls/-/data-urls-2.0.0.tgz"
+ "version" "2.0.0"
+ dependencies:
+ "abab" "^2.0.3"
+ "whatwg-mimetype" "^2.3.0"
+ "whatwg-url" "^8.0.0"
+
+"debug@^4.1.0", "debug@^4.1.1", "debug@^4.3.2", "debug@4":
+ "integrity" "sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q== sha1-BCZuC3CpjURi5uKI44JZITMytmQ="
+ "resolved" "https://npm.apple.com/debug/-/debug-4.3.3.tgz"
+ "version" "4.3.3"
+ dependencies:
+ "ms" "2.1.2"
+
+"decimal.js@^10.2.1":
+ "integrity" "sha512-V0pfhfr8suzyPGOx3nmq4aHqabehUZn6Ch9kyFpV79TGDTWFmHqUqXdabR7QHqxzrYolF4+tVmJhUG4OURg5dQ=="
+ "resolved" "https://npm.apple.com/decimal.js/-/decimal.js-10.3.1.tgz"
+ "version" "10.3.1"
+
+"dedent@^0.7.0":
+ "integrity" "sha1-JJXduvbrh0q7Dhvp3yLS5aVEMmw="
+ "resolved" "https://npm.apple.com/dedent/-/dedent-0.7.0.tgz"
+ "version" "0.7.0"
+
+"deep-is@^0.1.3", "deep-is@~0.1.3":
+ "integrity" "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== sha1-pvLc5hL63S7x9Rm3NVHxfoUZmDE="
+ "resolved" "https://npm.apple.com/deep-is/-/deep-is-0.1.4.tgz"
+ "version" "0.1.4"
+
+"deepmerge@^4.2.2":
+ "integrity" "sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg== sha1-RNLqNnm49NT/ujPwPYZfwee/SVU="
+ "resolved" "https://npm.apple.com/deepmerge/-/deepmerge-4.2.2.tgz"
+ "version" "4.2.2"
+
+"define-properties@^1.1.3":
+ "integrity" "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ== sha1-z4jabL7ib+bbcJT2HYcMvYTO6fE="
+ "resolved" "https://npm.apple.com/define-properties/-/define-properties-1.1.3.tgz"
+ "version" "1.1.3"
+ dependencies:
+ "object-keys" "^1.0.12"
+
+"delayed-stream@~1.0.0":
+ "integrity" "sha1-3zrhmayt+31ECqrgsp4icrJOxhk="
+ "resolved" "https://npm.apple.com/delayed-stream/-/delayed-stream-1.0.0.tgz"
+ "version" "1.0.0"
+
+"detect-indent@^6.0.0":
+ "integrity" "sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA== sha1-WSSF67v2s7GrK+F1yDk9BMoNV+Y="
+ "resolved" "https://npm.apple.com/detect-indent/-/detect-indent-6.1.0.tgz"
+ "version" "6.1.0"
+
+"detect-newline@^3.0.0":
+ "integrity" "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA=="
+ "resolved" "https://npm.apple.com/detect-newline/-/detect-newline-3.1.0.tgz"
+ "version" "3.1.0"
+
+"diff-sequences@^27.5.1":
+ "integrity" "sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ=="
+ "resolved" "https://npm.apple.com/diff-sequences/-/diff-sequences-27.5.1.tgz"
+ "version" "27.5.1"
+
+"dir-glob@^3.0.1":
+ "integrity" "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA=="
+ "resolved" "https://npm.apple.com/dir-glob/-/dir-glob-3.0.1.tgz"
+ "version" "3.0.1"
+ dependencies:
+ "path-type" "^4.0.0"
+
+"doctrine@^3.0.0":
+ "integrity" "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== sha1-rd6+rXKmV023g2OdyHoSF3OXOWE="
+ "resolved" "https://npm.apple.com/doctrine/-/doctrine-3.0.0.tgz"
+ "version" "3.0.0"
+ dependencies:
+ "esutils" "^2.0.2"
+
+"domexception@^2.0.1":
+ "integrity" "sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg=="
+ "resolved" "https://npm.apple.com/domexception/-/domexception-2.0.1.tgz"
+ "version" "2.0.1"
+ dependencies:
+ "webidl-conversions" "^5.0.0"
+
+"electron-to-chromium@^1.4.76":
+ "integrity" "sha512-fiDxw8mO9Ph1Z0bjX2sFTPpi0J0QkOiwOJF+5Q0J0baNc/F9lLePAvDPlnoxvbUYYMizqrKPeotRRkJ9LtxAew=="
+ "resolved" "https://npm.apple.com/electron-to-chromium/-/electron-to-chromium-1.4.77.tgz"
+ "version" "1.4.77"
+
+"email-addresses@^3.0.1":
+ "integrity" "sha512-k0/r7GrWVL32kZlGwfPNgB2Y/mMXVTq/decgLczm/j34whdaspNrZO8CnXPf1laaHxI6ptUlsnAxN+UAPw+fzg== sha1-yr9+CFy9tjAIpwMZp05hNhiIEvs="
+ "resolved" "https://npm.apple.com/email-addresses/-/email-addresses-3.1.0.tgz"
+ "version" "3.1.0"
+
+"emittery@^0.8.1":
+ "integrity" "sha512-uDfvUjVrfGJJhymx/kz6prltenw1u7WrCg1oa94zYY8xxVpLLUu045LAT0dhDZdXG58/EpPL/5kA180fQ/qudg=="
+ "resolved" "https://npm.apple.com/emittery/-/emittery-0.8.1.tgz"
+ "version" "0.8.1"
+
+"emoji-regex@^8.0.0":
+ "integrity" "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="
+ "resolved" "https://npm.apple.com/emoji-regex/-/emoji-regex-8.0.0.tgz"
+ "version" "8.0.0"
+
+"error-ex@^1.3.1":
+ "integrity" "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== sha1-tKxAZIEH/c3PriQvQovqihTU8b8="
+ "resolved" "https://npm.apple.com/error-ex/-/error-ex-1.3.2.tgz"
+ "version" "1.3.2"
+ dependencies:
+ "is-arrayish" "^0.2.1"
+
+"es-abstract@^1.19.1":
+ "integrity" "sha512-2vJ6tjA/UfqLm2MPs7jxVybLoB8i1t1Jd9R3kISld20sIxPcTbLuggQOUxeWeAvIUkduv/CfMjuh4WmiXr2v9w== sha1-1IhXlodpFpWd547aoN9FZicRXsM="
+ "resolved" "https://npm.apple.com/es-abstract/-/es-abstract-1.19.1.tgz"
+ "version" "1.19.1"
+ dependencies:
+ "call-bind" "^1.0.2"
+ "es-to-primitive" "^1.2.1"
+ "function-bind" "^1.1.1"
+ "get-intrinsic" "^1.1.1"
+ "get-symbol-description" "^1.0.0"
+ "has" "^1.0.3"
+ "has-symbols" "^1.0.2"
+ "internal-slot" "^1.0.3"
+ "is-callable" "^1.2.4"
+ "is-negative-zero" "^2.0.1"
+ "is-regex" "^1.1.4"
+ "is-shared-array-buffer" "^1.0.1"
+ "is-string" "^1.0.7"
+ "is-weakref" "^1.0.1"
+ "object-inspect" "^1.11.0"
+ "object-keys" "^1.1.1"
+ "object.assign" "^4.1.2"
+ "string.prototype.trimend" "^1.0.4"
+ "string.prototype.trimstart" "^1.0.4"
+ "unbox-primitive" "^1.0.1"
+
+"es-to-primitive@^1.2.1":
+ "integrity" "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== sha1-5VzUyc3BiLzvsDs2bHNjI/xciYo="
+ "resolved" "https://npm.apple.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz"
+ "version" "1.2.1"
+ dependencies:
+ "is-callable" "^1.1.4"
+ "is-date-object" "^1.0.1"
+ "is-symbol" "^1.0.2"
+
+"es6-promise@^3.1.2":
+ "integrity" "sha1-oIzd6EzNvzTQJ6FFG8kdS80ophM="
+ "resolved" "https://npm.apple.com/es6-promise/-/es6-promise-3.3.1.tgz"
+ "version" "3.3.1"
+
+"escalade@^3.1.1":
+ "integrity" "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw=="
+ "resolved" "https://npm.apple.com/escalade/-/escalade-3.1.1.tgz"
+ "version" "3.1.1"
+
+"escape-string-regexp@^1.0.2", "escape-string-regexp@^1.0.5":
+ "integrity" "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ="
+ "resolved" "https://npm.apple.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz"
+ "version" "1.0.5"
+
+"escape-string-regexp@^2.0.0":
+ "integrity" "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w=="
+ "resolved" "https://npm.apple.com/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz"
+ "version" "2.0.0"
+
+"escape-string-regexp@^4.0.0":
+ "integrity" "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== sha1-FLqDpdNz49MR5a/KKc9b+tllvzQ="
+ "resolved" "https://npm.apple.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz"
+ "version" "4.0.0"
+
+"escodegen@^2.0.0":
+ "integrity" "sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw=="
+ "resolved" "https://npm.apple.com/escodegen/-/escodegen-2.0.0.tgz"
+ "version" "2.0.0"
+ dependencies:
+ "esprima" "^4.0.1"
+ "estraverse" "^5.2.0"
+ "esutils" "^2.0.2"
+ "optionator" "^0.8.1"
+ optionalDependencies:
+ "source-map" "~0.6.1"
+
+"eslint-plugin-jest@^26.1.1":
+ "integrity" "sha512-HRKOuPi5ADhza4ZBK5ufyNXy28bXXkib87w+pQqdvBhSTsamndh6sIAKPAUl8y0/n9jSWBdTPslrwtKWqkp8dA=="
+ "resolved" "https://npm.apple.com/eslint-plugin-jest/-/eslint-plugin-jest-26.1.1.tgz"
+ "version" "26.1.1"
+ dependencies:
+ "@typescript-eslint/utils" "^5.10.0"
+
+"eslint-plugin-json@^3.1.0":
+ "integrity" "sha512-MrlG2ynFEHe7wDGwbUuFPsaT2b1uhuEFhJ+W1f1u+1C2EkXmTYJp4B1aAdQQ8M+CC3t//N/oRKiIVw14L2HR1g== sha1-JREIuhaBwzLgpELvlRO9KTYZ3mc="
+ "resolved" "https://npm.apple.com/eslint-plugin-json/-/eslint-plugin-json-3.1.0.tgz"
+ "version" "3.1.0"
+ dependencies:
+ "lodash" "^4.17.21"
+ "vscode-json-languageservice" "^4.1.6"
+
+"eslint-plugin-svelte3@^3.4.1":
+ "integrity" "sha512-7p59WG8qV8L6wLdl4d/c3mdjkgVglQCdv5XOTk/iNPBKXuuV+Q0eFP5Wa6iJd/G2M1qR3BkLPEzaANOqKAZczw=="
+ "resolved" "https://npm.apple.com/eslint-plugin-svelte3/-/eslint-plugin-svelte3-3.4.1.tgz"
+ "version" "3.4.1"
+
+"eslint-scope@^5.1.1":
+ "integrity" "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw=="
+ "resolved" "https://npm.apple.com/eslint-scope/-/eslint-scope-5.1.1.tgz"
+ "version" "5.1.1"
+ dependencies:
+ "esrecurse" "^4.3.0"
+ "estraverse" "^4.1.1"
+
+"eslint-scope@^7.1.1":
+ "integrity" "sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw=="
+ "resolved" "https://npm.apple.com/eslint-scope/-/eslint-scope-7.1.1.tgz"
+ "version" "7.1.1"
+ dependencies:
+ "esrecurse" "^4.3.0"
+ "estraverse" "^5.2.0"
+
+"eslint-utils@^3.0.0":
+ "integrity" "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA== sha1-iuuvrOc0W7M1WdsKHxOh0tSMNnI="
+ "resolved" "https://npm.apple.com/eslint-utils/-/eslint-utils-3.0.0.tgz"
+ "version" "3.0.0"
+ dependencies:
+ "eslint-visitor-keys" "^2.0.0"
+
+"eslint-visitor-keys@^2.0.0":
+ "integrity" "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw== sha1-9lMoJZMFknOSyTjtROsKXJsr0wM="
+ "resolved" "https://npm.apple.com/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz"
+ "version" "2.1.0"
+
+"eslint-visitor-keys@^3.0.0", "eslint-visitor-keys@^3.3.0":
+ "integrity" "sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA=="
+ "resolved" "https://npm.apple.com/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz"
+ "version" "3.3.0"
+
+"eslint@*", "eslint@^6.0.0 || ^7.0.0 || ^8.0.0", "eslint@^8.10.0", "eslint@>=5", "eslint@>=6.0.0":
+ "integrity" "sha512-tcI1D9lfVec+R4LE1mNDnzoJ/f71Kl/9Cv4nG47jOueCMBrCCKYXr4AUVS7go6mWYGFD4+EoN6+eXSrEbRzXVw=="
+ "resolved" "https://npm.apple.com/eslint/-/eslint-8.10.0.tgz"
+ "version" "8.10.0"
+ dependencies:
+ "@eslint/eslintrc" "^1.2.0"
+ "@humanwhocodes/config-array" "^0.9.2"
+ "ajv" "^6.10.0"
+ "chalk" "^4.0.0"
+ "cross-spawn" "^7.0.2"
+ "debug" "^4.3.2"
+ "doctrine" "^3.0.0"
+ "escape-string-regexp" "^4.0.0"
+ "eslint-scope" "^7.1.1"
+ "eslint-utils" "^3.0.0"
+ "eslint-visitor-keys" "^3.3.0"
+ "espree" "^9.3.1"
+ "esquery" "^1.4.0"
+ "esutils" "^2.0.2"
+ "fast-deep-equal" "^3.1.3"
+ "file-entry-cache" "^6.0.1"
+ "functional-red-black-tree" "^1.0.1"
+ "glob-parent" "^6.0.1"
+ "globals" "^13.6.0"
+ "ignore" "^5.2.0"
+ "import-fresh" "^3.0.0"
+ "imurmurhash" "^0.1.4"
+ "is-glob" "^4.0.0"
+ "js-yaml" "^4.1.0"
+ "json-stable-stringify-without-jsonify" "^1.0.1"
+ "levn" "^0.4.1"
+ "lodash.merge" "^4.6.2"
+ "minimatch" "^3.0.4"
+ "natural-compare" "^1.4.0"
+ "optionator" "^0.9.1"
+ "regexpp" "^3.2.0"
+ "strip-ansi" "^6.0.1"
+ "strip-json-comments" "^3.1.0"
+ "text-table" "^0.2.0"
+ "v8-compile-cache" "^2.0.3"
+
+"espree@^9.3.1":
+ "integrity" "sha512-bvdyLmJMfwkV3NCRl5ZhJf22zBFo1y8bYh3VYb+bfzqNB4Je68P2sSuXyuFquzWLebHpNd2/d5uv7yoP9ISnGQ=="
+ "resolved" "https://npm.apple.com/espree/-/espree-9.3.1.tgz"
+ "version" "9.3.1"
+ dependencies:
+ "acorn" "^8.7.0"
+ "acorn-jsx" "^5.3.1"
+ "eslint-visitor-keys" "^3.3.0"
+
+"esprima@^4.0.0", "esprima@^4.0.1":
+ "integrity" "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== sha1-E7BM2z5sXRnfkatph6hpVhmwqnE="
+ "resolved" "https://npm.apple.com/esprima/-/esprima-4.0.1.tgz"
+ "version" "4.0.1"
+
+"esquery@^1.4.0":
+ "integrity" "sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w== sha1-IUj/w4uC6McFff7UhCWz5h8PJKU="
+ "resolved" "https://npm.apple.com/esquery/-/esquery-1.4.0.tgz"
+ "version" "1.4.0"
+ dependencies:
+ "estraverse" "^5.1.0"
+
+"esrecurse@^4.3.0":
+ "integrity" "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag=="
+ "resolved" "https://npm.apple.com/esrecurse/-/esrecurse-4.3.0.tgz"
+ "version" "4.3.0"
+ dependencies:
+ "estraverse" "^5.2.0"
+
+"estraverse@^4.1.1":
+ "integrity" "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw=="
+ "resolved" "https://npm.apple.com/estraverse/-/estraverse-4.3.0.tgz"
+ "version" "4.3.0"
+
+"estraverse@^5.1.0":
+ "integrity" "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== sha1-LupSkHAvJquP5TcDcP+GyWXSESM="
+ "resolved" "https://npm.apple.com/estraverse/-/estraverse-5.3.0.tgz"
+ "version" "5.3.0"
+
+"estraverse@^5.2.0":
+ "integrity" "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA=="
+ "resolved" "https://npm.apple.com/estraverse/-/estraverse-5.3.0.tgz"
+ "version" "5.3.0"
+
+"estree-walker@^0.6.1":
+ "integrity" "sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w== sha1-UwSRQ/QMbrkYsjZx0f4yGfOhs2I="
+ "resolved" "https://npm.apple.com/estree-walker/-/estree-walker-0.6.1.tgz"
+ "version" "0.6.1"
+
+"estree-walker@^1.0.1":
+ "integrity" "sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg== sha1-MbxdYSyWtwQQa0d+bdXYqhOMtwA="
+ "resolved" "https://npm.apple.com/estree-walker/-/estree-walker-1.0.1.tgz"
+ "version" "1.0.1"
+
+"estree-walker@^2.0.1":
+ "integrity" "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w== sha1-UvAQF4wqTBF6d1fP6UKtt9LaTKw="
+ "resolved" "https://npm.apple.com/estree-walker/-/estree-walker-2.0.2.tgz"
+ "version" "2.0.2"
+
+"esutils@^2.0.2":
+ "integrity" "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== sha1-dNLrTeC42hKTcRkQ1Qd1ubcQ72Q="
+ "resolved" "https://npm.apple.com/esutils/-/esutils-2.0.3.tgz"
+ "version" "2.0.3"
+
+"execa@^5.0.0":
+ "integrity" "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg=="
+ "resolved" "https://npm.apple.com/execa/-/execa-5.1.1.tgz"
+ "version" "5.1.1"
+ dependencies:
+ "cross-spawn" "^7.0.3"
+ "get-stream" "^6.0.0"
+ "human-signals" "^2.1.0"
+ "is-stream" "^2.0.0"
+ "merge-stream" "^2.0.0"
+ "npm-run-path" "^4.0.1"
+ "onetime" "^5.1.2"
+ "signal-exit" "^3.0.3"
+ "strip-final-newline" "^2.0.0"
+
+"exit@^0.1.2":
+ "integrity" "sha1-BjJjj42HfMghB9MKD/8aF8uhzQw="
+ "resolved" "https://npm.apple.com/exit/-/exit-0.1.2.tgz"
+ "version" "0.1.2"
+
+"expect@^27.5.1":
+ "integrity" "sha512-E1q5hSUG2AmYQwQJ041nvgpkODHQvB+RKlB4IYdru6uJsyFTRyZAP463M+1lINorwbqAmUggi6+WwkD8lCS/Dw=="
+ "resolved" "https://npm.apple.com/expect/-/expect-27.5.1.tgz"
+ "version" "27.5.1"
+ dependencies:
+ "@jest/types" "^27.5.1"
+ "jest-get-type" "^27.5.1"
+ "jest-matcher-utils" "^27.5.1"
+ "jest-message-util" "^27.5.1"
+
+"fast-deep-equal@^3.1.1", "fast-deep-equal@^3.1.3":
+ "integrity" "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q=="
+ "resolved" "https://npm.apple.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz"
+ "version" "3.1.3"
+
+"fast-glob@^3.2.7", "fast-glob@^3.2.9":
+ "integrity" "sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew=="
+ "resolved" "https://npm.apple.com/fast-glob/-/fast-glob-3.2.11.tgz"
+ "version" "3.2.11"
+ dependencies:
+ "@nodelib/fs.stat" "^2.0.2"
+ "@nodelib/fs.walk" "^1.2.3"
+ "glob-parent" "^5.1.2"
+ "merge2" "^1.3.0"
+ "micromatch" "^4.0.4"
+
+"fast-json-stable-stringify@^2.0.0", "fast-json-stable-stringify@2.x":
+ "integrity" "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== sha1-h0v2nG9ATCtdmcSBNBOZ/VWJJjM="
+ "resolved" "https://npm.apple.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz"
+ "version" "2.1.0"
+
+"fast-levenshtein@^2.0.6", "fast-levenshtein@~2.0.6":
+ "integrity" "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc="
+ "resolved" "https://npm.apple.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz"
+ "version" "2.0.6"
+
+"fastq@^1.6.0":
+ "integrity" "sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw== sha1-YWdg+Ip1Jr38WWt8q4wYk4w2uYw="
+ "resolved" "https://npm.apple.com/fastq/-/fastq-1.13.0.tgz"
+ "version" "1.13.0"
+ dependencies:
+ "reusify" "^1.0.4"
+
+"fb-watchman@^2.0.0":
+ "integrity" "sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg=="
+ "resolved" "https://npm.apple.com/fb-watchman/-/fb-watchman-2.0.1.tgz"
+ "version" "2.0.1"
+ dependencies:
+ "bser" "2.1.1"
+
+"file-entry-cache@^6.0.1":
+ "integrity" "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg== sha1-IRst2WWcsDlLBz5zI6w8kz1SICc="
+ "resolved" "https://npm.apple.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz"
+ "version" "6.0.1"
+ dependencies:
+ "flat-cache" "^3.0.4"
+
+"filename-reserved-regex@^2.0.0":
+ "integrity" "sha1-q/c9+rc10EVECr/qLZHzieu/oik="
+ "resolved" "https://npm.apple.com/filename-reserved-regex/-/filename-reserved-regex-2.0.0.tgz"
+ "version" "2.0.0"
+
+"filenamify@^4.3.0":
+ "integrity" "sha512-hcFKyUG57yWGAzu1CMt/dPzYZuv+jAJUT85bL8mrXvNe6hWj6yEHEc4EdcgiA6Z3oi1/9wXJdZPXF2dZNgwgOg== sha1-YjkctY8CsJlxydT51js8+augMQY="
+ "resolved" "https://npm.apple.com/filenamify/-/filenamify-4.3.0.tgz"
+ "version" "4.3.0"
+ dependencies:
+ "filename-reserved-regex" "^2.0.0"
+ "strip-outer" "^1.0.1"
+ "trim-repeated" "^1.0.0"
+
+"fill-range@^7.0.1":
+ "integrity" "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== sha1-GRmmp8df44ssfHflGYU12prN2kA="
+ "resolved" "https://npm.apple.com/fill-range/-/fill-range-7.0.1.tgz"
+ "version" "7.0.1"
+ dependencies:
+ "to-regex-range" "^5.0.1"
+
+"find-cache-dir@^3.3.1":
+ "integrity" "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig== sha1-swxbbv8HMHMa6pu9nb7L2AJW1ks="
+ "resolved" "https://npm.apple.com/find-cache-dir/-/find-cache-dir-3.3.2.tgz"
+ "version" "3.3.2"
+ dependencies:
+ "commondir" "^1.0.1"
+ "make-dir" "^3.0.2"
+ "pkg-dir" "^4.1.0"
+
+"find-up@^4.0.0", "find-up@^4.1.0":
+ "integrity" "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== sha1-l6/n1s3AvFkoWEt8jXsW6KmqXRk="
+ "resolved" "https://npm.apple.com/find-up/-/find-up-4.1.0.tgz"
+ "version" "4.1.0"
+ dependencies:
+ "locate-path" "^5.0.0"
+ "path-exists" "^4.0.0"
+
+"flat-cache@^3.0.4":
+ "integrity" "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg== sha1-YbAzgwKy/p+Vfcwy/CqH8cMEixE="
+ "resolved" "https://npm.apple.com/flat-cache/-/flat-cache-3.0.4.tgz"
+ "version" "3.0.4"
+ dependencies:
+ "flatted" "^3.1.0"
+ "rimraf" "^3.0.2"
+
+"flatted@^3.1.0":
+ "integrity" "sha512-8/sOawo8tJ4QOBX8YlQBMxL8+RLZfxMQOif9o0KUKTNTjMYElWPE0r/m5VNFxTRd0NSw8qSy8dajrwX4RYI1Hw== sha1-KNmWnqkGYbUTQlnzEqtqp5KaxeI="
+ "resolved" "https://npm.apple.com/flatted/-/flatted-3.2.4.tgz"
+ "version" "3.2.4"
+
+"form-data@^3.0.0":
+ "integrity" "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg=="
+ "resolved" "https://npm.apple.com/form-data/-/form-data-3.0.1.tgz"
+ "version" "3.0.1"
+ dependencies:
+ "asynckit" "^0.4.0"
+ "combined-stream" "^1.0.8"
+ "mime-types" "^2.1.12"
+
+"fs-extra@^8.1.0":
+ "integrity" "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g== sha1-SdQ8RaiM2Wd2aMt74bRu/bjS4cA="
+ "resolved" "https://npm.apple.com/fs-extra/-/fs-extra-8.1.0.tgz"
+ "version" "8.1.0"
+ dependencies:
+ "graceful-fs" "^4.2.0"
+ "jsonfile" "^4.0.0"
+ "universalify" "^0.1.0"
+
+"fs.realpath@^1.0.0":
+ "integrity" "sha1-FQStJSMVjKpA20onh8sBQRmU6k8="
+ "resolved" "https://npm.apple.com/fs.realpath/-/fs.realpath-1.0.0.tgz"
+ "version" "1.0.0"
+
+"fsevents@^2.3.2", "fsevents@~2.3.2":
+ "integrity" "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA=="
+ "resolved" "https://npm.apple.com/fsevents/-/fsevents-2.3.2.tgz"
+ "version" "2.3.2"
+
+"function-bind@^1.1.1":
+ "integrity" "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== sha1-pWiZ0+o8m6uHS7l3O3xe3pL0iV0="
+ "resolved" "https://npm.apple.com/function-bind/-/function-bind-1.1.1.tgz"
+ "version" "1.1.1"
+
+"functional-red-black-tree@^1.0.1":
+ "integrity" "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc="
+ "resolved" "https://npm.apple.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz"
+ "version" "1.0.1"
+
+"gensync@^1.0.0-beta.2":
+ "integrity" "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== sha1-MqbudsPX9S1GsrGuXZP+qFgKJeA="
+ "resolved" "https://npm.apple.com/gensync/-/gensync-1.0.0-beta.2.tgz"
+ "version" "1.0.0-beta.2"
+
+"get-caller-file@^2.0.5":
+ "integrity" "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg=="
+ "resolved" "https://npm.apple.com/get-caller-file/-/get-caller-file-2.0.5.tgz"
+ "version" "2.0.5"
+
+"get-intrinsic@^1.0.2", "get-intrinsic@^1.1.0", "get-intrinsic@^1.1.1":
+ "integrity" "sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q== sha1-FfWfN2+FXERpY5SPDSTNNje0q8Y="
+ "resolved" "https://npm.apple.com/get-intrinsic/-/get-intrinsic-1.1.1.tgz"
+ "version" "1.1.1"
+ dependencies:
+ "function-bind" "^1.1.1"
+ "has" "^1.0.3"
+ "has-symbols" "^1.0.1"
+
+"get-package-type@^0.1.0":
+ "integrity" "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q== sha1-jeLYA8/0TfO8bEVuZmizbDkm4Ro="
+ "resolved" "https://npm.apple.com/get-package-type/-/get-package-type-0.1.0.tgz"
+ "version" "0.1.0"
+
+"get-port@^3.2.0":
+ "integrity" "sha1-3Xzn3hh8Bsi/NTeWrHHgmfCYDrw="
+ "resolved" "https://npm.apple.com/get-port/-/get-port-3.2.0.tgz"
+ "version" "3.2.0"
+
+"get-stream@^6.0.0":
+ "integrity" "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg=="
+ "resolved" "https://npm.apple.com/get-stream/-/get-stream-6.0.1.tgz"
+ "version" "6.0.1"
+
+"get-symbol-description@^1.0.0":
+ "integrity" "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw== sha1-f9uByQAQH71WTdXxowr1qtweWNY="
+ "resolved" "https://npm.apple.com/get-symbol-description/-/get-symbol-description-1.0.0.tgz"
+ "version" "1.0.0"
+ dependencies:
+ "call-bind" "^1.0.2"
+ "get-intrinsic" "^1.1.1"
+
+"gh-pages@^3.2.3":
+ "integrity" "sha512-jA1PbapQ1jqzacECfjUaO9gV8uBgU6XNMV0oXLtfCX3haGLe5Atq8BxlrADhbD6/UdG9j6tZLWAkAybndOXTJg=="
+ "resolved" "https://npm.apple.com/gh-pages/-/gh-pages-3.2.3.tgz"
+ "version" "3.2.3"
+ dependencies:
+ "async" "^2.6.1"
+ "commander" "^2.18.0"
+ "email-addresses" "^3.0.1"
+ "filenamify" "^4.3.0"
+ "find-cache-dir" "^3.3.1"
+ "fs-extra" "^8.1.0"
+ "globby" "^6.1.0"
+
+"glob-parent@^5.1.2":
+ "integrity" "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== sha1-hpgyxYA0/mikCTwX3BXoNA2EAcQ="
+ "resolved" "https://npm.apple.com/glob-parent/-/glob-parent-5.1.2.tgz"
+ "version" "5.1.2"
+ dependencies:
+ "is-glob" "^4.0.1"
+
+"glob-parent@^6.0.1":
+ "integrity" "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A== sha1-bSN9mQg5UMeSkPJMdkKj3poo+eM="
+ "resolved" "https://npm.apple.com/glob-parent/-/glob-parent-6.0.2.tgz"
+ "version" "6.0.2"
+ dependencies:
+ "is-glob" "^4.0.3"
+
+"glob-parent@~5.1.2":
+ "integrity" "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== sha1-hpgyxYA0/mikCTwX3BXoNA2EAcQ="
+ "resolved" "https://npm.apple.com/glob-parent/-/glob-parent-5.1.2.tgz"
+ "version" "5.1.2"
+ dependencies:
+ "is-glob" "^4.0.1"
+
+"glob@^7.0.3", "glob@^7.1.1", "glob@^7.1.2", "glob@^7.1.3", "glob@^7.1.4", "glob@^7.1.6":
+ "integrity" "sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q== sha1-0VU1r3cy4C6Uj0xBYovZECk/YCM="
+ "resolved" "https://npm.apple.com/glob/-/glob-7.2.0.tgz"
+ "version" "7.2.0"
+ dependencies:
+ "fs.realpath" "^1.0.0"
+ "inflight" "^1.0.4"
+ "inherits" "2"
+ "minimatch" "^3.0.4"
+ "once" "^1.3.0"
+ "path-is-absolute" "^1.0.0"
+
+"globals@^11.1.0":
+ "integrity" "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="
+ "resolved" "https://npm.apple.com/globals/-/globals-11.12.0.tgz"
+ "version" "11.12.0"
+
+"globals@^13.6.0":
+ "integrity" "sha512-uS8X6lSKN2JumVoXrbUz+uG4BYG+eiawqm3qFcT7ammfbUHeCBoJMlHcec/S3krSk73/AE/f0szYFmgAA3kYZg== sha1-TXM3YDBCMKAILtluIeXFZfiYCJ4="
+ "resolved" "https://npm.apple.com/globals/-/globals-13.12.0.tgz"
+ "version" "13.12.0"
+ dependencies:
+ "type-fest" "^0.20.2"
+
+"globals@^13.9.0":
+ "integrity" "sha512-317dFlgY2pdJZ9rspXDks7073GpDmXdfbM3vYYp0HAMKGDh1FfWPleI2ljVNLQX5M5lXcAslTcPTrOrMEFOjyw=="
+ "resolved" "https://npm.apple.com/globals/-/globals-13.12.1.tgz"
+ "version" "13.12.1"
+ dependencies:
+ "type-fest" "^0.20.2"
+
+"globby@^11.0.4":
+ "integrity" "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g=="
+ "resolved" "https://npm.apple.com/globby/-/globby-11.1.0.tgz"
+ "version" "11.1.0"
+ dependencies:
+ "array-union" "^2.1.0"
+ "dir-glob" "^3.0.1"
+ "fast-glob" "^3.2.9"
+ "ignore" "^5.2.0"
+ "merge2" "^1.4.1"
+ "slash" "^3.0.0"
+
+"globby@^6.1.0":
+ "integrity" "sha1-9abXDoOV4hyFj7BInWTfAkJNUGw="
+ "resolved" "https://npm.apple.com/globby/-/globby-6.1.0.tgz"
+ "version" "6.1.0"
+ dependencies:
+ "array-union" "^1.0.1"
+ "glob" "^7.0.3"
+ "object-assign" "^4.0.1"
+ "pify" "^2.0.0"
+ "pinkie-promise" "^2.0.0"
+
+"graceful-fs@^4.1.2", "graceful-fs@^4.1.3", "graceful-fs@^4.1.6", "graceful-fs@^4.2.0", "graceful-fs@^4.2.9":
+ "integrity" "sha512-NtNxqUcXgpW2iMrfqSfR73Glt39K+BLwWsPs94yR63v45T0Wbej7eRmL5cWfwEgqXnmjQp3zaJTshdRW/qC2ZQ=="
+ "resolved" "https://npm.apple.com/graceful-fs/-/graceful-fs-4.2.9.tgz"
+ "version" "4.2.9"
+
+"has-bigints@^1.0.1":
+ "integrity" "sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA== sha1-ZP5qywIGc+O3jbA1pa9pqp0HsRM="
+ "resolved" "https://npm.apple.com/has-bigints/-/has-bigints-1.0.1.tgz"
+ "version" "1.0.1"
+
+"has-flag@^3.0.0":
+ "integrity" "sha1-tdRU3CGZriJWmfNGfloH87lVuv0="
+ "resolved" "https://npm.apple.com/has-flag/-/has-flag-3.0.0.tgz"
+ "version" "3.0.0"
+
+"has-flag@^4.0.0":
+ "integrity" "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
+ "resolved" "https://npm.apple.com/has-flag/-/has-flag-4.0.0.tgz"
+ "version" "4.0.0"
+
+"has-symbols@^1.0.1", "has-symbols@^1.0.2":
+ "integrity" "sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw== sha1-Fl0wcMADCXUqEjakeTMeOsVvFCM="
+ "resolved" "https://npm.apple.com/has-symbols/-/has-symbols-1.0.2.tgz"
+ "version" "1.0.2"
+
+"has-tostringtag@^1.0.0":
+ "integrity" "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ== sha1-fhM4GKfTlHNPlB5zw9P5KR5liyU="
+ "resolved" "https://npm.apple.com/has-tostringtag/-/has-tostringtag-1.0.0.tgz"
+ "version" "1.0.0"
+ dependencies:
+ "has-symbols" "^1.0.2"
+
+"has@^1.0.3":
+ "integrity" "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== sha1-ci18v8H2qoJB8W3YFOAR4fQeh5Y="
+ "resolved" "https://npm.apple.com/has/-/has-1.0.3.tgz"
+ "version" "1.0.3"
+ dependencies:
+ "function-bind" "^1.1.1"
+
+"hosted-git-info@^2.1.4":
+ "integrity" "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw== sha1-3/wL+aIcAiCQkPKqaUKeFBTa8/k="
+ "resolved" "https://npm.apple.com/hosted-git-info/-/hosted-git-info-2.8.9.tgz"
+ "version" "2.8.9"
+
+"html-encoding-sniffer@^2.0.1":
+ "integrity" "sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ=="
+ "resolved" "https://npm.apple.com/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz"
+ "version" "2.0.1"
+ dependencies:
+ "whatwg-encoding" "^1.0.5"
+
+"html-escaper@^2.0.0":
+ "integrity" "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg=="
+ "resolved" "https://npm.apple.com/html-escaper/-/html-escaper-2.0.2.tgz"
+ "version" "2.0.2"
+
+"http-proxy-agent@^4.0.1":
+ "integrity" "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg=="
+ "resolved" "https://npm.apple.com/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz"
+ "version" "4.0.1"
+ dependencies:
+ "@tootallnate/once" "1"
+ "agent-base" "6"
+ "debug" "4"
+
+"https-proxy-agent@^5.0.0":
+ "integrity" "sha512-EkYm5BcKUGiduxzSt3Eppko+PiNWNEpa4ySk9vTC6wDsQJW9rHSa+UhGNJoRYp7bz6Ht1eaRIa6QaJqO5rCFbA=="
+ "resolved" "https://npm.apple.com/https-proxy-agent/-/https-proxy-agent-5.0.0.tgz"
+ "version" "5.0.0"
+ dependencies:
+ "agent-base" "6"
+ "debug" "4"
+
+"human-signals@^2.1.0":
+ "integrity" "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw=="
+ "resolved" "https://npm.apple.com/human-signals/-/human-signals-2.1.0.tgz"
+ "version" "2.1.0"
+
+"iconv-lite@0.4", "iconv-lite@0.4.24":
+ "integrity" "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== sha1-ICK0sl+93CHS9SSXSkdKr+czkIs="
+ "resolved" "https://npm.apple.com/iconv-lite/-/iconv-lite-0.4.24.tgz"
+ "version" "0.4.24"
+ dependencies:
+ "safer-buffer" ">= 2.1.2 < 3"
+
+"ignore@^4.0.6":
+ "integrity" "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg=="
+ "resolved" "https://npm.apple.com/ignore/-/ignore-4.0.6.tgz"
+ "version" "4.0.6"
+
+"ignore@^5.1.8", "ignore@^5.2.0":
+ "integrity" "sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ== sha1-bTusj6f+DUXZ+b57rC/CeVd+NFo="
+ "resolved" "https://npm.apple.com/ignore/-/ignore-5.2.0.tgz"
+ "version" "5.2.0"
+
+"import-fresh@^3.0.0", "import-fresh@^3.2.1":
+ "integrity" "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== sha1-NxYsJfy566oublPVtNiM4X2eDCs="
+ "resolved" "https://npm.apple.com/import-fresh/-/import-fresh-3.3.0.tgz"
+ "version" "3.3.0"
+ dependencies:
+ "parent-module" "^1.0.0"
+ "resolve-from" "^4.0.0"
+
+"import-local@^3.0.2":
+ "integrity" "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg=="
+ "resolved" "https://npm.apple.com/import-local/-/import-local-3.1.0.tgz"
+ "version" "3.1.0"
+ dependencies:
+ "pkg-dir" "^4.2.0"
+ "resolve-cwd" "^3.0.0"
+
+"imurmurhash@^0.1.4":
+ "integrity" "sha1-khi5srkoojixPcT7a21XbyMUU+o="
+ "resolved" "https://npm.apple.com/imurmurhash/-/imurmurhash-0.1.4.tgz"
+ "version" "0.1.4"
+
+"inflight@^1.0.4":
+ "integrity" "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk="
+ "resolved" "https://npm.apple.com/inflight/-/inflight-1.0.6.tgz"
+ "version" "1.0.6"
+ dependencies:
+ "once" "^1.3.0"
+ "wrappy" "1"
+
+"inherits@2":
+ "integrity" "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== sha1-D6LGT5MpF8NDOg3tVTY6rjdBa3w="
+ "resolved" "https://npm.apple.com/inherits/-/inherits-2.0.4.tgz"
+ "version" "2.0.4"
+
+"internal-slot@^1.0.3":
+ "integrity" "sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA== sha1-c0fjB97uovqsKsYgXUvH00ln9Zw="
+ "resolved" "https://npm.apple.com/internal-slot/-/internal-slot-1.0.3.tgz"
+ "version" "1.0.3"
+ dependencies:
+ "get-intrinsic" "^1.1.0"
+ "has" "^1.0.3"
+ "side-channel" "^1.0.4"
+
+"internmap@^1.0.0":
+ "integrity" "sha512-lDB5YccMydFBtasVtxnZ3MRBHuaoE8GKsppq+EchKL2U4nK/DmEpPHNH8MZe5HkMtpSiTSOZwfN0tzYjO/lJEw== sha1-ABfMijuZYF8DAvKxmNJy4BXl35U="
+ "resolved" "https://npm.apple.com/internmap/-/internmap-1.0.1.tgz"
+ "version" "1.0.1"
+
+"iota-array@^1.0.0":
+ "integrity" "sha1-ge9X/l0FgUzVjCSDYyqZwwoOgIc="
+ "resolved" "https://npm.apple.com/iota-array/-/iota-array-1.0.0.tgz"
+ "version" "1.0.0"
+
+"is-arrayish@^0.2.1":
+ "integrity" "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0="
+ "resolved" "https://npm.apple.com/is-arrayish/-/is-arrayish-0.2.1.tgz"
+ "version" "0.2.1"
+
+"is-bigint@^1.0.1":
+ "integrity" "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg== sha1-CBR6GHW8KzIAXUHM2Ckd/8ZpHfM="
+ "resolved" "https://npm.apple.com/is-bigint/-/is-bigint-1.0.4.tgz"
+ "version" "1.0.4"
+ dependencies:
+ "has-bigints" "^1.0.1"
+
+"is-binary-path@~2.1.0":
+ "integrity" "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== sha1-6h9/O4DwZCNug0cPhsCcJU+0Wwk="
+ "resolved" "https://npm.apple.com/is-binary-path/-/is-binary-path-2.1.0.tgz"
+ "version" "2.1.0"
+ dependencies:
+ "binary-extensions" "^2.0.0"
+
+"is-boolean-object@^1.1.0":
+ "integrity" "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA== sha1-XG3CACRt2TIa5LiFoRS7H3X2Nxk="
+ "resolved" "https://npm.apple.com/is-boolean-object/-/is-boolean-object-1.1.2.tgz"
+ "version" "1.1.2"
+ dependencies:
+ "call-bind" "^1.0.2"
+ "has-tostringtag" "^1.0.0"
+
+"is-buffer@^1.0.2":
+ "integrity" "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== sha1-76ouqdqg16suoTqXsritUf776L4="
+ "resolved" "https://npm.apple.com/is-buffer/-/is-buffer-1.1.6.tgz"
+ "version" "1.1.6"
+
+"is-callable@^1.1.4", "is-callable@^1.2.4":
+ "integrity" "sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w== sha1-RzAdWN0CWUB4ZVR4U99tYf5HGUU="
+ "resolved" "https://npm.apple.com/is-callable/-/is-callable-1.2.4.tgz"
+ "version" "1.2.4"
+
+"is-core-module@^2.2.0":
+ "integrity" "sha512-vd15qHsaqrRL7dtH6QNuy0ndJmRDrS9HAM1CAiSifNUFv4x1a0CCVsj18hJ1mShxIG6T2i1sO78MkP56r0nYRw== sha1-AyEzbD0JJeSX/Zf12VyxFKXM1Ug="
+ "resolved" "https://npm.apple.com/is-core-module/-/is-core-module-2.8.0.tgz"
+ "version" "2.8.0"
+ dependencies:
+ "has" "^1.0.3"
+
+"is-date-object@^1.0.1":
+ "integrity" "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ== sha1-CEHVU25yTCVZe/bqYuG9OCmN8x8="
+ "resolved" "https://npm.apple.com/is-date-object/-/is-date-object-1.0.5.tgz"
+ "version" "1.0.5"
+ dependencies:
+ "has-tostringtag" "^1.0.0"
+
+"is-extglob@^2.1.1":
+ "integrity" "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI="
+ "resolved" "https://npm.apple.com/is-extglob/-/is-extglob-2.1.1.tgz"
+ "version" "2.1.1"
+
+"is-fullwidth-code-point@^3.0.0":
+ "integrity" "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg=="
+ "resolved" "https://npm.apple.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz"
+ "version" "3.0.0"
+
+"is-generator-fn@^2.0.0":
+ "integrity" "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ=="
+ "resolved" "https://npm.apple.com/is-generator-fn/-/is-generator-fn-2.1.0.tgz"
+ "version" "2.1.0"
+
+"is-glob@^4.0.0", "is-glob@^4.0.1", "is-glob@^4.0.3", "is-glob@~4.0.1":
+ "integrity" "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== sha1-ZPYeQsu7LuwgcanawLKLoeZdUIQ="
+ "resolved" "https://npm.apple.com/is-glob/-/is-glob-4.0.3.tgz"
+ "version" "4.0.3"
+ dependencies:
+ "is-extglob" "^2.1.1"
+
+"is-module@^1.0.0":
+ "integrity" "sha1-Mlj7afeMFNW4FdZkM2tM/7ZEFZE="
+ "resolved" "https://npm.apple.com/is-module/-/is-module-1.0.0.tgz"
+ "version" "1.0.0"
+
+"is-negative-zero@^2.0.1":
+ "integrity" "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA== sha1-e/bwOigAO4s5Zd46wm9mTXZfMVA="
+ "resolved" "https://npm.apple.com/is-negative-zero/-/is-negative-zero-2.0.2.tgz"
+ "version" "2.0.2"
+
+"is-number-object@^1.0.4":
+ "integrity" "sha512-bEVOqiRcvo3zO1+G2lVMy+gkkEm9Yh7cDMRusKKu5ZJKPUYSJwICTKZrNKHA2EbSP0Tu0+6B/emsYNHZyn6K8g== sha1-anqvg4x/BoalC0VT9+VKlklOifA="
+ "resolved" "https://npm.apple.com/is-number-object/-/is-number-object-1.0.6.tgz"
+ "version" "1.0.6"
+ dependencies:
+ "has-tostringtag" "^1.0.0"
+
+"is-number@^7.0.0":
+ "integrity" "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== sha1-dTU0W4lnNNX4DE0GxQlVUnoU8Ss="
+ "resolved" "https://npm.apple.com/is-number/-/is-number-7.0.0.tgz"
+ "version" "7.0.0"
+
+"is-potential-custom-element-name@^1.0.1":
+ "integrity" "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ=="
+ "resolved" "https://npm.apple.com/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz"
+ "version" "1.0.1"
+
+"is-reference@^1.2.1":
+ "integrity" "sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ== sha1-iy2sCzcfS8mU/eq6nrVC0DAC0Lc="
+ "resolved" "https://npm.apple.com/is-reference/-/is-reference-1.2.1.tgz"
+ "version" "1.2.1"
+ dependencies:
+ "@types/estree" "*"
+
+"is-regex@^1.1.4":
+ "integrity" "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg== sha1-7vVmPNWfpMCuM5UFMj32hUuxWVg="
+ "resolved" "https://npm.apple.com/is-regex/-/is-regex-1.1.4.tgz"
+ "version" "1.1.4"
+ dependencies:
+ "call-bind" "^1.0.2"
+ "has-tostringtag" "^1.0.0"
+
+"is-shared-array-buffer@^1.0.1":
+ "integrity" "sha512-IU0NmyknYZN0rChcKhRO1X8LYz5Isj/Fsqh8NJOSf+N/hCOTwy29F32Ik7a+QszE63IdvmwdTPDd6cZ5pg4cwA== sha1-l7DIX72stZycRG/mU7gs8rW3z+Y="
+ "resolved" "https://npm.apple.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.1.tgz"
+ "version" "1.0.1"
+
+"is-stream@^2.0.0":
+ "integrity" "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg=="
+ "resolved" "https://npm.apple.com/is-stream/-/is-stream-2.0.1.tgz"
+ "version" "2.0.1"
+
+"is-string@^1.0.5", "is-string@^1.0.7":
+ "integrity" "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg== sha1-DdEr8gBvJVu1j2lREO/3SR7rwP0="
+ "resolved" "https://npm.apple.com/is-string/-/is-string-1.0.7.tgz"
+ "version" "1.0.7"
+ dependencies:
+ "has-tostringtag" "^1.0.0"
+
+"is-symbol@^1.0.2", "is-symbol@^1.0.3":
+ "integrity" "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg== sha1-ptrJO2NbBjymhyI23oiRClevE5w="
+ "resolved" "https://npm.apple.com/is-symbol/-/is-symbol-1.0.4.tgz"
+ "version" "1.0.4"
+ dependencies:
+ "has-symbols" "^1.0.2"
+
+"is-typedarray@^1.0.0":
+ "integrity" "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo="
+ "resolved" "https://npm.apple.com/is-typedarray/-/is-typedarray-1.0.0.tgz"
+ "version" "1.0.0"
+
+"is-weakref@^1.0.1":
+ "integrity" "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ== sha1-lSnzg6kzggXol2XgOS78LxAPBvI="
+ "resolved" "https://npm.apple.com/is-weakref/-/is-weakref-1.0.2.tgz"
+ "version" "1.0.2"
+ dependencies:
+ "call-bind" "^1.0.2"
+
+"isexe@^2.0.0":
+ "integrity" "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA="
+ "resolved" "https://npm.apple.com/isexe/-/isexe-2.0.0.tgz"
+ "version" "2.0.0"
+
+"istanbul-lib-coverage@^3.0.0", "istanbul-lib-coverage@^3.2.0":
+ "integrity" "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw== sha1-GJ55CdCjn6Wj361bA/cZR3cBkdM="
+ "resolved" "https://npm.apple.com/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz"
+ "version" "3.2.0"
+
+"istanbul-lib-instrument@^5.0.4", "istanbul-lib-instrument@^5.1.0":
+ "integrity" "sha512-czwUz525rkOFDJxfKK6mYfIs9zBKILyrZQxjz3ABhjQXhbhFsSbo1HW/BFcsDnfJYJWA6thRR5/TUY2qs5W99Q== sha1-e0kZi2V7J6cwuOnLYB8eG/8kxZo="
+ "resolved" "https://npm.apple.com/istanbul-lib-instrument/-/istanbul-lib-instrument-5.1.0.tgz"
+ "version" "5.1.0"
+ dependencies:
+ "@babel/core" "^7.12.3"
+ "@babel/parser" "^7.14.7"
+ "@istanbuljs/schema" "^0.1.2"
+ "istanbul-lib-coverage" "^3.2.0"
+ "semver" "^6.3.0"
+
+"istanbul-lib-report@^3.0.0":
+ "integrity" "sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw=="
+ "resolved" "https://npm.apple.com/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz"
+ "version" "3.0.0"
+ dependencies:
+ "istanbul-lib-coverage" "^3.0.0"
+ "make-dir" "^3.0.0"
+ "supports-color" "^7.1.0"
+
+"istanbul-lib-source-maps@^4.0.0":
+ "integrity" "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw=="
+ "resolved" "https://npm.apple.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz"
+ "version" "4.0.1"
+ dependencies:
+ "debug" "^4.1.1"
+ "istanbul-lib-coverage" "^3.0.0"
+ "source-map" "^0.6.1"
+
+"istanbul-reports@^3.1.3":
+ "integrity" "sha512-r1/DshN4KSE7xWEknZLLLLDn5CJybV3nw01VTkp6D5jzLuELlcbudfj/eSQFvrKsJuTVCGnePO7ho82Nw9zzfw=="
+ "resolved" "https://npm.apple.com/istanbul-reports/-/istanbul-reports-3.1.4.tgz"
+ "version" "3.1.4"
+ dependencies:
+ "html-escaper" "^2.0.0"
+ "istanbul-lib-report" "^3.0.0"
+
+"jest-changed-files@^27.5.1":
+ "integrity" "sha512-buBLMiByfWGCoMsLLzGUUSpAmIAGnbR2KJoMN10ziLhOLvP4e0SlypHnAel8iqQXTrcbmfEY9sSqae5sgUsTvw=="
+ "resolved" "https://npm.apple.com/jest-changed-files/-/jest-changed-files-27.5.1.tgz"
+ "version" "27.5.1"
+ dependencies:
+ "@jest/types" "^27.5.1"
+ "execa" "^5.0.0"
+ "throat" "^6.0.1"
+
+"jest-circus@^27.5.1":
+ "integrity" "sha512-D95R7x5UtlMA5iBYsOHFFbMD/GVA4R/Kdq15f7xYWUfWHBto9NYRsOvnSauTgdF+ogCpJ4tyKOXhUifxS65gdw=="
+ "resolved" "https://npm.apple.com/jest-circus/-/jest-circus-27.5.1.tgz"
+ "version" "27.5.1"
+ dependencies:
+ "@jest/environment" "^27.5.1"
+ "@jest/test-result" "^27.5.1"
+ "@jest/types" "^27.5.1"
+ "@types/node" "*"
+ "chalk" "^4.0.0"
+ "co" "^4.6.0"
+ "dedent" "^0.7.0"
+ "expect" "^27.5.1"
+ "is-generator-fn" "^2.0.0"
+ "jest-each" "^27.5.1"
+ "jest-matcher-utils" "^27.5.1"
+ "jest-message-util" "^27.5.1"
+ "jest-runtime" "^27.5.1"
+ "jest-snapshot" "^27.5.1"
+ "jest-util" "^27.5.1"
+ "pretty-format" "^27.5.1"
+ "slash" "^3.0.0"
+ "stack-utils" "^2.0.3"
+ "throat" "^6.0.1"
+
+"jest-cli@^27.5.1":
+ "integrity" "sha512-Hc6HOOwYq4/74/c62dEE3r5elx8wjYqxY0r0G/nFrLDPMFRu6RA/u8qINOIkvhxG7mMQ5EJsOGfRpI8L6eFUVw=="
+ "resolved" "https://npm.apple.com/jest-cli/-/jest-cli-27.5.1.tgz"
+ "version" "27.5.1"
+ dependencies:
+ "@jest/core" "^27.5.1"
+ "@jest/test-result" "^27.5.1"
+ "@jest/types" "^27.5.1"
+ "chalk" "^4.0.0"
+ "exit" "^0.1.2"
+ "graceful-fs" "^4.2.9"
+ "import-local" "^3.0.2"
+ "jest-config" "^27.5.1"
+ "jest-util" "^27.5.1"
+ "jest-validate" "^27.5.1"
+ "prompts" "^2.0.1"
+ "yargs" "^16.2.0"
+
+"jest-config@^27.5.1":
+ "integrity" "sha512-5sAsjm6tGdsVbW9ahcChPAFCk4IlkQUknH5AvKjuLTSlcO/wCZKyFdn7Rg0EkC+OGgWODEy2hDpWB1PgzH0JNA=="
+ "resolved" "https://npm.apple.com/jest-config/-/jest-config-27.5.1.tgz"
+ "version" "27.5.1"
+ dependencies:
+ "@babel/core" "^7.8.0"
+ "@jest/test-sequencer" "^27.5.1"
+ "@jest/types" "^27.5.1"
+ "babel-jest" "^27.5.1"
+ "chalk" "^4.0.0"
+ "ci-info" "^3.2.0"
+ "deepmerge" "^4.2.2"
+ "glob" "^7.1.1"
+ "graceful-fs" "^4.2.9"
+ "jest-circus" "^27.5.1"
+ "jest-environment-jsdom" "^27.5.1"
+ "jest-environment-node" "^27.5.1"
+ "jest-get-type" "^27.5.1"
+ "jest-jasmine2" "^27.5.1"
+ "jest-regex-util" "^27.5.1"
+ "jest-resolve" "^27.5.1"
+ "jest-runner" "^27.5.1"
+ "jest-util" "^27.5.1"
+ "jest-validate" "^27.5.1"
+ "micromatch" "^4.0.4"
+ "parse-json" "^5.2.0"
+ "pretty-format" "^27.5.1"
+ "slash" "^3.0.0"
+ "strip-json-comments" "^3.1.1"
+
+"jest-diff@^27.5.1":
+ "integrity" "sha512-m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw=="
+ "resolved" "https://npm.apple.com/jest-diff/-/jest-diff-27.5.1.tgz"
+ "version" "27.5.1"
+ dependencies:
+ "chalk" "^4.0.0"
+ "diff-sequences" "^27.5.1"
+ "jest-get-type" "^27.5.1"
+ "pretty-format" "^27.5.1"
+
+"jest-docblock@^27.5.1":
+ "integrity" "sha512-rl7hlABeTsRYxKiUfpHrQrG4e2obOiTQWfMEH3PxPjOtdsfLQO4ReWSZaQ7DETm4xu07rl4q/h4zcKXyU0/OzQ=="
+ "resolved" "https://npm.apple.com/jest-docblock/-/jest-docblock-27.5.1.tgz"
+ "version" "27.5.1"
+ dependencies:
+ "detect-newline" "^3.0.0"
+
+"jest-each@^27.5.1":
+ "integrity" "sha512-1Ff6p+FbhT/bXQnEouYy00bkNSY7OUpfIcmdl8vZ31A1UUaurOLPA8a8BbJOF2RDUElwJhmeaV7LnagI+5UwNQ=="
+ "resolved" "https://npm.apple.com/jest-each/-/jest-each-27.5.1.tgz"
+ "version" "27.5.1"
+ dependencies:
+ "@jest/types" "^27.5.1"
+ "chalk" "^4.0.0"
+ "jest-get-type" "^27.5.1"
+ "jest-util" "^27.5.1"
+ "pretty-format" "^27.5.1"
+
+"jest-environment-jsdom@^27.5.1":
+ "integrity" "sha512-TFBvkTC1Hnnnrka/fUb56atfDtJ9VMZ94JkjTbggl1PEpwrYtUBKMezB3inLmWqQsXYLcMwNoDQwoBTAvFfsfw=="
+ "resolved" "https://npm.apple.com/jest-environment-jsdom/-/jest-environment-jsdom-27.5.1.tgz"
+ "version" "27.5.1"
+ dependencies:
+ "@jest/environment" "^27.5.1"
+ "@jest/fake-timers" "^27.5.1"
+ "@jest/types" "^27.5.1"
+ "@types/node" "*"
+ "jest-mock" "^27.5.1"
+ "jest-util" "^27.5.1"
+ "jsdom" "^16.6.0"
+
+"jest-environment-node@^27.5.1":
+ "integrity" "sha512-Jt4ZUnxdOsTGwSRAfKEnE6BcwsSPNOijjwifq5sDFSA2kesnXTvNqKHYgM0hDq3549Uf/KzdXNYn4wMZJPlFLw=="
+ "resolved" "https://npm.apple.com/jest-environment-node/-/jest-environment-node-27.5.1.tgz"
+ "version" "27.5.1"
+ dependencies:
+ "@jest/environment" "^27.5.1"
+ "@jest/fake-timers" "^27.5.1"
+ "@jest/types" "^27.5.1"
+ "@types/node" "*"
+ "jest-mock" "^27.5.1"
+ "jest-util" "^27.5.1"
+
+"jest-get-type@^27.5.1":
+ "integrity" "sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw=="
+ "resolved" "https://npm.apple.com/jest-get-type/-/jest-get-type-27.5.1.tgz"
+ "version" "27.5.1"
+
+"jest-haste-map@^27.5.1":
+ "integrity" "sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng=="
+ "resolved" "https://npm.apple.com/jest-haste-map/-/jest-haste-map-27.5.1.tgz"
+ "version" "27.5.1"
+ dependencies:
+ "@jest/types" "^27.5.1"
+ "@types/graceful-fs" "^4.1.2"
+ "@types/node" "*"
+ "anymatch" "^3.0.3"
+ "fb-watchman" "^2.0.0"
+ "graceful-fs" "^4.2.9"
+ "jest-regex-util" "^27.5.1"
+ "jest-serializer" "^27.5.1"
+ "jest-util" "^27.5.1"
+ "jest-worker" "^27.5.1"
+ "micromatch" "^4.0.4"
+ "walker" "^1.0.7"
+ optionalDependencies:
+ "fsevents" "^2.3.2"
+
+"jest-jasmine2@^27.5.1":
+ "integrity" "sha512-jtq7VVyG8SqAorDpApwiJJImd0V2wv1xzdheGHRGyuT7gZm6gG47QEskOlzsN1PG/6WNaCo5pmwMHDf3AkG2pQ=="
+ "resolved" "https://npm.apple.com/jest-jasmine2/-/jest-jasmine2-27.5.1.tgz"
+ "version" "27.5.1"
+ dependencies:
+ "@jest/environment" "^27.5.1"
+ "@jest/source-map" "^27.5.1"
+ "@jest/test-result" "^27.5.1"
+ "@jest/types" "^27.5.1"
+ "@types/node" "*"
+ "chalk" "^4.0.0"
+ "co" "^4.6.0"
+ "expect" "^27.5.1"
+ "is-generator-fn" "^2.0.0"
+ "jest-each" "^27.5.1"
+ "jest-matcher-utils" "^27.5.1"
+ "jest-message-util" "^27.5.1"
+ "jest-runtime" "^27.5.1"
+ "jest-snapshot" "^27.5.1"
+ "jest-util" "^27.5.1"
+ "pretty-format" "^27.5.1"
+ "throat" "^6.0.1"
+
+"jest-leak-detector@^27.5.1":
+ "integrity" "sha512-POXfWAMvfU6WMUXftV4HolnJfnPOGEu10fscNCA76KBpRRhcMN2c8d3iT2pxQS3HLbA+5X4sOUPzYO2NUyIlHQ=="
+ "resolved" "https://npm.apple.com/jest-leak-detector/-/jest-leak-detector-27.5.1.tgz"
+ "version" "27.5.1"
+ dependencies:
+ "jest-get-type" "^27.5.1"
+ "pretty-format" "^27.5.1"
+
+"jest-matcher-utils@^27.0.0", "jest-matcher-utils@^27.5.1":
+ "integrity" "sha512-z2uTx/T6LBaCoNWNFWwChLBKYxTMcGBRjAt+2SbP929/Fflb9aa5LGma654Rz8z9HLxsrUaYzxE9T/EFIL/PAw=="
+ "resolved" "https://npm.apple.com/jest-matcher-utils/-/jest-matcher-utils-27.5.1.tgz"
+ "version" "27.5.1"
+ dependencies:
+ "chalk" "^4.0.0"
+ "jest-diff" "^27.5.1"
+ "jest-get-type" "^27.5.1"
+ "pretty-format" "^27.5.1"
+
+"jest-message-util@^27.5.1":
+ "integrity" "sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g=="
+ "resolved" "https://npm.apple.com/jest-message-util/-/jest-message-util-27.5.1.tgz"
+ "version" "27.5.1"
+ dependencies:
+ "@babel/code-frame" "^7.12.13"
+ "@jest/types" "^27.5.1"
+ "@types/stack-utils" "^2.0.0"
+ "chalk" "^4.0.0"
+ "graceful-fs" "^4.2.9"
+ "micromatch" "^4.0.4"
+ "pretty-format" "^27.5.1"
+ "slash" "^3.0.0"
+ "stack-utils" "^2.0.3"
+
+"jest-mock@^27.5.1":
+ "integrity" "sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og=="
+ "resolved" "https://npm.apple.com/jest-mock/-/jest-mock-27.5.1.tgz"
+ "version" "27.5.1"
+ dependencies:
+ "@jest/types" "^27.5.1"
+ "@types/node" "*"
+
+"jest-pnp-resolver@^1.2.2":
+ "integrity" "sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w=="
+ "resolved" "https://npm.apple.com/jest-pnp-resolver/-/jest-pnp-resolver-1.2.2.tgz"
+ "version" "1.2.2"
+
+"jest-regex-util@^27.5.1":
+ "integrity" "sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg=="
+ "resolved" "https://npm.apple.com/jest-regex-util/-/jest-regex-util-27.5.1.tgz"
+ "version" "27.5.1"
+
+"jest-resolve-dependencies@^27.5.1":
+ "integrity" "sha512-QQOOdY4PE39iawDn5rzbIePNigfe5B9Z91GDD1ae/xNDlu9kaat8QQ5EKnNmVWPV54hUdxCVwwj6YMgR2O7IOg=="
+ "resolved" "https://npm.apple.com/jest-resolve-dependencies/-/jest-resolve-dependencies-27.5.1.tgz"
+ "version" "27.5.1"
+ dependencies:
+ "@jest/types" "^27.5.1"
+ "jest-regex-util" "^27.5.1"
+ "jest-snapshot" "^27.5.1"
+
+"jest-resolve@*", "jest-resolve@^27.5.1":
+ "integrity" "sha512-FFDy8/9E6CV83IMbDpcjOhumAQPDyETnU2KZ1O98DwTnz8AOBsW/Xv3GySr1mOZdItLR+zDZ7I/UdTFbgSOVCw=="
+ "resolved" "https://npm.apple.com/jest-resolve/-/jest-resolve-27.5.1.tgz"
+ "version" "27.5.1"
+ dependencies:
+ "@jest/types" "^27.5.1"
+ "chalk" "^4.0.0"
+ "graceful-fs" "^4.2.9"
+ "jest-haste-map" "^27.5.1"
+ "jest-pnp-resolver" "^1.2.2"
+ "jest-util" "^27.5.1"
+ "jest-validate" "^27.5.1"
+ "resolve" "^1.20.0"
+ "resolve.exports" "^1.1.0"
+ "slash" "^3.0.0"
+
+"jest-runner@^27.5.1":
+ "integrity" "sha512-g4NPsM4mFCOwFKXO4p/H/kWGdJp9V8kURY2lX8Me2drgXqG7rrZAx5kv+5H7wtt/cdFIjhqYx1HrlqWHaOvDaQ=="
+ "resolved" "https://npm.apple.com/jest-runner/-/jest-runner-27.5.1.tgz"
+ "version" "27.5.1"
+ dependencies:
+ "@jest/console" "^27.5.1"
+ "@jest/environment" "^27.5.1"
+ "@jest/test-result" "^27.5.1"
+ "@jest/transform" "^27.5.1"
+ "@jest/types" "^27.5.1"
+ "@types/node" "*"
+ "chalk" "^4.0.0"
+ "emittery" "^0.8.1"
+ "graceful-fs" "^4.2.9"
+ "jest-docblock" "^27.5.1"
+ "jest-environment-jsdom" "^27.5.1"
+ "jest-environment-node" "^27.5.1"
+ "jest-haste-map" "^27.5.1"
+ "jest-leak-detector" "^27.5.1"
+ "jest-message-util" "^27.5.1"
+ "jest-resolve" "^27.5.1"
+ "jest-runtime" "^27.5.1"
+ "jest-util" "^27.5.1"
+ "jest-worker" "^27.5.1"
+ "source-map-support" "^0.5.6"
+ "throat" "^6.0.1"
+
+"jest-runtime@^27.5.1":
+ "integrity" "sha512-o7gxw3Gf+H2IGt8fv0RiyE1+r83FJBRruoA+FXrlHw6xEyBsU8ugA6IPfTdVyA0w8HClpbK+DGJxH59UrNMx8A=="
+ "resolved" "https://npm.apple.com/jest-runtime/-/jest-runtime-27.5.1.tgz"
+ "version" "27.5.1"
+ dependencies:
+ "@jest/environment" "^27.5.1"
+ "@jest/fake-timers" "^27.5.1"
+ "@jest/globals" "^27.5.1"
+ "@jest/source-map" "^27.5.1"
+ "@jest/test-result" "^27.5.1"
+ "@jest/transform" "^27.5.1"
+ "@jest/types" "^27.5.1"
+ "chalk" "^4.0.0"
+ "cjs-module-lexer" "^1.0.0"
+ "collect-v8-coverage" "^1.0.0"
+ "execa" "^5.0.0"
+ "glob" "^7.1.3"
+ "graceful-fs" "^4.2.9"
+ "jest-haste-map" "^27.5.1"
+ "jest-message-util" "^27.5.1"
+ "jest-mock" "^27.5.1"
+ "jest-regex-util" "^27.5.1"
+ "jest-resolve" "^27.5.1"
+ "jest-snapshot" "^27.5.1"
+ "jest-util" "^27.5.1"
+ "slash" "^3.0.0"
+ "strip-bom" "^4.0.0"
+
+"jest-serializer@^27.5.1":
+ "integrity" "sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w=="
+ "resolved" "https://npm.apple.com/jest-serializer/-/jest-serializer-27.5.1.tgz"
+ "version" "27.5.1"
+ dependencies:
+ "@types/node" "*"
+ "graceful-fs" "^4.2.9"
+
+"jest-snapshot@^27.5.1":
+ "integrity" "sha512-yYykXI5a0I31xX67mgeLw1DZ0bJB+gpq5IpSuCAoyDi0+BhgU/RIrL+RTzDmkNTchvDFWKP8lp+w/42Z3us5sA=="
+ "resolved" "https://npm.apple.com/jest-snapshot/-/jest-snapshot-27.5.1.tgz"
+ "version" "27.5.1"
+ dependencies:
+ "@babel/core" "^7.7.2"
+ "@babel/generator" "^7.7.2"
+ "@babel/plugin-syntax-typescript" "^7.7.2"
+ "@babel/traverse" "^7.7.2"
+ "@babel/types" "^7.0.0"
+ "@jest/transform" "^27.5.1"
+ "@jest/types" "^27.5.1"
+ "@types/babel__traverse" "^7.0.4"
+ "@types/prettier" "^2.1.5"
+ "babel-preset-current-node-syntax" "^1.0.0"
+ "chalk" "^4.0.0"
+ "expect" "^27.5.1"
+ "graceful-fs" "^4.2.9"
+ "jest-diff" "^27.5.1"
+ "jest-get-type" "^27.5.1"
+ "jest-haste-map" "^27.5.1"
+ "jest-matcher-utils" "^27.5.1"
+ "jest-message-util" "^27.5.1"
+ "jest-util" "^27.5.1"
+ "natural-compare" "^1.4.0"
+ "pretty-format" "^27.5.1"
+ "semver" "^7.3.2"
+
+"jest-util@^27.0.0", "jest-util@^27.5.1":
+ "integrity" "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw=="
+ "resolved" "https://npm.apple.com/jest-util/-/jest-util-27.5.1.tgz"
+ "version" "27.5.1"
+ dependencies:
+ "@jest/types" "^27.5.1"
+ "@types/node" "*"
+ "chalk" "^4.0.0"
+ "ci-info" "^3.2.0"
+ "graceful-fs" "^4.2.9"
+ "picomatch" "^2.2.3"
+
+"jest-validate@^27.5.1":
+ "integrity" "sha512-thkNli0LYTmOI1tDB3FI1S1RTp/Bqyd9pTarJwL87OIBFuqEb5Apv5EaApEudYg4g86e3CT6kM0RowkhtEnCBQ=="
+ "resolved" "https://npm.apple.com/jest-validate/-/jest-validate-27.5.1.tgz"
+ "version" "27.5.1"
+ dependencies:
+ "@jest/types" "^27.5.1"
+ "camelcase" "^6.2.0"
+ "chalk" "^4.0.0"
+ "jest-get-type" "^27.5.1"
+ "leven" "^3.1.0"
+ "pretty-format" "^27.5.1"
+
+"jest-watcher@^27.5.1":
+ "integrity" "sha512-z676SuD6Z8o8qbmEGhoEUFOM1+jfEiL3DXHK/xgEiG2EyNYfFG60jluWcupY6dATjfEsKQuibReS1djInQnoVw=="
+ "resolved" "https://npm.apple.com/jest-watcher/-/jest-watcher-27.5.1.tgz"
+ "version" "27.5.1"
+ dependencies:
+ "@jest/test-result" "^27.5.1"
+ "@jest/types" "^27.5.1"
+ "@types/node" "*"
+ "ansi-escapes" "^4.2.1"
+ "chalk" "^4.0.0"
+ "jest-util" "^27.5.1"
+ "string-length" "^4.0.1"
+
+"jest-worker@^26.2.1":
+ "integrity" "sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ== sha1-f3LLxNZDw2Xie5/XdfnQ6qnHqO0="
+ "resolved" "https://npm.apple.com/jest-worker/-/jest-worker-26.6.2.tgz"
+ "version" "26.6.2"
+ dependencies:
+ "@types/node" "*"
+ "merge-stream" "^2.0.0"
+ "supports-color" "^7.0.0"
+
+"jest-worker@^27.5.1":
+ "integrity" "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg=="
+ "resolved" "https://npm.apple.com/jest-worker/-/jest-worker-27.5.1.tgz"
+ "version" "27.5.1"
+ dependencies:
+ "@types/node" "*"
+ "merge-stream" "^2.0.0"
+ "supports-color" "^8.0.0"
+
+"jest@^27.0.0", "jest@^27.5.1":
+ "integrity" "sha512-Yn0mADZB89zTtjkPJEXwrac3LHudkQMR+Paqa8uxJHCBr9agxztUifWCyiYrjhMPBoUVBjyny0I7XH6ozDr7QQ=="
+ "resolved" "https://npm.apple.com/jest/-/jest-27.5.1.tgz"
+ "version" "27.5.1"
+ dependencies:
+ "@jest/core" "^27.5.1"
+ "import-local" "^3.0.2"
+ "jest-cli" "^27.5.1"
+
+"js-tokens@^4.0.0":
+ "integrity" "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ=="
+ "resolved" "https://npm.apple.com/js-tokens/-/js-tokens-4.0.0.tgz"
+ "version" "4.0.0"
+
+"js-yaml@^3.13.1":
+ "integrity" "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g== sha1-2ugS/bOCX6MGYJqHFzg8UMNqBTc="
+ "resolved" "https://npm.apple.com/js-yaml/-/js-yaml-3.14.1.tgz"
+ "version" "3.14.1"
+ dependencies:
+ "argparse" "^1.0.7"
+ "esprima" "^4.0.0"
+
+"js-yaml@^4.1.0":
+ "integrity" "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA=="
+ "resolved" "https://npm.apple.com/js-yaml/-/js-yaml-4.1.0.tgz"
+ "version" "4.1.0"
+ dependencies:
+ "argparse" "^2.0.1"
+
+"jsdom@^16.6.0":
+ "integrity" "sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw=="
+ "resolved" "https://npm.apple.com/jsdom/-/jsdom-16.7.0.tgz"
+ "version" "16.7.0"
+ dependencies:
+ "abab" "^2.0.5"
+ "acorn" "^8.2.4"
+ "acorn-globals" "^6.0.0"
+ "cssom" "^0.4.4"
+ "cssstyle" "^2.3.0"
+ "data-urls" "^2.0.0"
+ "decimal.js" "^10.2.1"
+ "domexception" "^2.0.1"
+ "escodegen" "^2.0.0"
+ "form-data" "^3.0.0"
+ "html-encoding-sniffer" "^2.0.1"
+ "http-proxy-agent" "^4.0.1"
+ "https-proxy-agent" "^5.0.0"
+ "is-potential-custom-element-name" "^1.0.1"
+ "nwsapi" "^2.2.0"
+ "parse5" "6.0.1"
+ "saxes" "^5.0.1"
+ "symbol-tree" "^3.2.4"
+ "tough-cookie" "^4.0.0"
+ "w3c-hr-time" "^1.0.2"
+ "w3c-xmlserializer" "^2.0.0"
+ "webidl-conversions" "^6.1.0"
+ "whatwg-encoding" "^1.0.5"
+ "whatwg-mimetype" "^2.3.0"
+ "whatwg-url" "^8.5.0"
+ "ws" "^7.4.6"
+ "xml-name-validator" "^3.0.0"
+
+"jsesc@^2.5.1":
+ "integrity" "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA=="
+ "resolved" "https://npm.apple.com/jsesc/-/jsesc-2.5.2.tgz"
+ "version" "2.5.2"
+
+"json-parse-better-errors@^1.0.1":
+ "integrity" "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw== sha1-u4Z8+zRQ5pEHwTHRxRS6s9yLyqk="
+ "resolved" "https://npm.apple.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz"
+ "version" "1.0.2"
+
+"json-parse-even-better-errors@^2.3.0":
+ "integrity" "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w=="
+ "resolved" "https://npm.apple.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz"
+ "version" "2.3.1"
+
+"json-schema-traverse@^0.4.1":
+ "integrity" "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg=="
+ "resolved" "https://npm.apple.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz"
+ "version" "0.4.1"
+
+"json-stable-stringify-without-jsonify@^1.0.1":
+ "integrity" "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE="
+ "resolved" "https://npm.apple.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz"
+ "version" "1.0.1"
+
+"json5@^2.1.2", "json5@2.x":
+ "integrity" "sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA== sha1-Lf7+cgxrpSXZ69kJlQ8FFTFsiaM="
+ "resolved" "https://npm.apple.com/json5/-/json5-2.2.0.tgz"
+ "version" "2.2.0"
+ dependencies:
+ "minimist" "^1.2.5"
+
+"jsonc-parser@^3.0.0":
+ "integrity" "sha512-fQzRfAbIBnR0IQvftw9FJveWiHp72Fg20giDrHz6TdfB12UH/uue0D3hm57UB5KgAVuniLMCaS8P1IMj9NR7cA== sha1-q914VwHH5+rKip7IzwcMpRp0WiI="
+ "resolved" "https://npm.apple.com/jsonc-parser/-/jsonc-parser-3.0.0.tgz"
+ "version" "3.0.0"
+
+"jsonfile@^4.0.0":
+ "integrity" "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss="
+ "resolved" "https://npm.apple.com/jsonfile/-/jsonfile-4.0.0.tgz"
+ "version" "4.0.0"
+ optionalDependencies:
+ "graceful-fs" "^4.1.6"
+
+"kleur@^3.0.3":
+ "integrity" "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w=="
+ "resolved" "https://npm.apple.com/kleur/-/kleur-3.0.3.tgz"
+ "version" "3.0.3"
+
+"kleur@^4.1.4":
+ "integrity" "sha512-8QADVssbrFjivHWQU7KkMgptGTl6WAcSdlbBPY4uNF+mWr6DGcKrvY2w4FQJoXch7+fKMjj0dRrL75vk3k23OA=="
+ "resolved" "https://npm.apple.com/kleur/-/kleur-4.1.4.tgz"
+ "version" "4.1.4"
+
+"leven@^3.1.0":
+ "integrity" "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A=="
+ "resolved" "https://npm.apple.com/leven/-/leven-3.1.0.tgz"
+ "version" "3.1.0"
+
+"levn@^0.4.1":
+ "integrity" "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ== sha1-rkViwAdHO5MqYgDUAyaN0v/8at4="
+ "resolved" "https://npm.apple.com/levn/-/levn-0.4.1.tgz"
+ "version" "0.4.1"
+ dependencies:
+ "prelude-ls" "^1.2.1"
+ "type-check" "~0.4.0"
+
+"levn@~0.3.0":
+ "integrity" "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4="
+ "resolved" "https://npm.apple.com/levn/-/levn-0.3.0.tgz"
+ "version" "0.3.0"
+ dependencies:
+ "prelude-ls" "~1.1.2"
+ "type-check" "~0.3.2"
+
+"lines-and-columns@^1.1.6":
+ "integrity" "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg=="
+ "resolved" "https://npm.apple.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz"
+ "version" "1.2.4"
+
+"livereload-js@^3.3.1":
+ "integrity" "sha512-w677WnINxFkuixAoUEXOStewzLYGI76XVag+0JWMMEyjJQKs0ibWZMxkTlB96Lm3EjZ7IeOxVziBEbtxVQqQZA== sha1-yIsAnG5GaxW5H6om/XyZ1iDhJlE="
+ "resolved" "https://npm.apple.com/livereload-js/-/livereload-js-3.3.2.tgz"
+ "version" "3.3.2"
+
+"livereload@^0.9.1":
+ "integrity" "sha512-q7Z71n3i4X0R9xthAryBdNGVGAO2R5X+/xXpmKeuPMrteg+W2U8VusTKV3YiJbXZwKsOlFlHe+go6uSNjfxrZw== sha1-pxSBY3XtUkcUCL7ei0my7moMVbE="
+ "resolved" "https://npm.apple.com/livereload/-/livereload-0.9.3.tgz"
+ "version" "0.9.3"
+ dependencies:
+ "chokidar" "^3.5.0"
+ "livereload-js" "^3.3.1"
+ "opts" ">= 1.2.0"
+ "ws" "^7.4.3"
+
+"load-json-file@^4.0.0":
+ "integrity" "sha1-L19Fq5HjMhYjT9U62rZo607AmTs="
+ "resolved" "https://npm.apple.com/load-json-file/-/load-json-file-4.0.0.tgz"
+ "version" "4.0.0"
+ dependencies:
+ "graceful-fs" "^4.1.2"
+ "parse-json" "^4.0.0"
+ "pify" "^3.0.0"
+ "strip-bom" "^3.0.0"
+
+"local-access@^1.0.1":
+ "integrity" "sha512-XfegD5pyTAfb+GY6chk283Ox5z8WexG56OvM06RWLpAc/UHozO8X6xAxEkIitZOtsSMM1Yr3DkHgW5W+onLhCw== sha1-4AfHa6LKg9WHe6GhJfyN/iO6R5g="
+ "resolved" "https://npm.apple.com/local-access/-/local-access-1.1.0.tgz"
+ "version" "1.1.0"
+
+"locate-path@^5.0.0":
+ "integrity" "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g== sha1-Gvujlq/WdqbUJQTQpno6frn2KqA="
+ "resolved" "https://npm.apple.com/locate-path/-/locate-path-5.0.0.tgz"
+ "version" "5.0.0"
+ dependencies:
+ "p-locate" "^4.1.0"
+
+"lodash.memoize@4.x":
+ "integrity" "sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4="
+ "resolved" "https://npm.apple.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz"
+ "version" "4.1.2"
+
+"lodash.merge@^4.6.2":
+ "integrity" "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== sha1-VYqlO0O2YeGSWgr9+japoQhf5Xo="
+ "resolved" "https://npm.apple.com/lodash.merge/-/lodash.merge-4.6.2.tgz"
+ "version" "4.6.2"
+
+"lodash@^4.17.14", "lodash@^4.17.21", "lodash@^4.7.0":
+ "integrity" "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== sha1-Z5WRxWTDv/quhFTPCz3zcMPWkRw="
+ "resolved" "https://npm.apple.com/lodash/-/lodash-4.17.21.tgz"
+ "version" "4.17.21"
+
+"lru-cache@^6.0.0":
+ "integrity" "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== sha1-bW/mVw69lqr5D8rR2vo7JWbbOpQ="
+ "resolved" "https://npm.apple.com/lru-cache/-/lru-cache-6.0.0.tgz"
+ "version" "6.0.0"
+ dependencies:
+ "yallist" "^4.0.0"
+
+"magic-string@^0.25.7":
+ "integrity" "sha512-4CrMT5DOHTDk4HYDlzmwu4FVCcIYI8gauveasrdCu2IKIFOJ3f0v/8MDGJCDL9oD2ppz/Av1b0Nj345H9M+XIA== sha1-P0l9b9NMZpxnmNy4IfLvMfVEUFE="
+ "resolved" "https://npm.apple.com/magic-string/-/magic-string-0.25.7.tgz"
+ "version" "0.25.7"
+ dependencies:
+ "sourcemap-codec" "^1.4.4"
+
+"make-dir@^3.0.0", "make-dir@^3.0.2":
+ "integrity" "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw== sha1-QV6WcEazp/HRhSd9hKpYIDcmoT8="
+ "resolved" "https://npm.apple.com/make-dir/-/make-dir-3.1.0.tgz"
+ "version" "3.1.0"
+ dependencies:
+ "semver" "^6.0.0"
+
+"make-error@1.x":
+ "integrity" "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw== sha1-LrLjfqm2fEiR9oShOUeZr0hM96I="
+ "resolved" "https://npm.apple.com/make-error/-/make-error-1.3.6.tgz"
+ "version" "1.3.6"
+
+"makeerror@1.0.12":
+ "integrity" "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg=="
+ "resolved" "https://npm.apple.com/makeerror/-/makeerror-1.0.12.tgz"
+ "version" "1.0.12"
+ dependencies:
+ "tmpl" "1.0.5"
+
+"memorystream@^0.3.1":
+ "integrity" "sha1-htcJCzDORV1j+64S3aUaR93K+bI="
+ "resolved" "https://npm.apple.com/memorystream/-/memorystream-0.3.1.tgz"
+ "version" "0.3.1"
+
+"merge-stream@^2.0.0":
+ "integrity" "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== sha1-UoI2KaFN0AyXcPtq1H3GMQ8sH2A="
+ "resolved" "https://npm.apple.com/merge-stream/-/merge-stream-2.0.0.tgz"
+ "version" "2.0.0"
+
+"merge2@^1.3.0", "merge2@^1.4.1":
+ "integrity" "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== sha1-Q2iJL4hekHRVpv19xVwMnUBJkK4="
+ "resolved" "https://npm.apple.com/merge2/-/merge2-1.4.1.tgz"
+ "version" "1.4.1"
+
+"micromatch@^4.0.4":
+ "integrity" "sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg== sha1-iW1Rnf6dsl/OlM63pQCRm/iB6/k="
+ "resolved" "https://npm.apple.com/micromatch/-/micromatch-4.0.4.tgz"
+ "version" "4.0.4"
+ dependencies:
+ "braces" "^3.0.1"
+ "picomatch" "^2.2.3"
+
+"mime-db@1.51.0":
+ "integrity" "sha512-5y8A56jg7XVQx2mbv1lu49NR4dokRnhZYTtL+KGfaa27uq4pSTXkwQkFJl4pkRMyNFz/EtYDSkiiEHx3F7UN6g=="
+ "resolved" "https://npm.apple.com/mime-db/-/mime-db-1.51.0.tgz"
+ "version" "1.51.0"
+
+"mime-types@^2.1.12":
+ "integrity" "sha512-6cP692WwGIs9XXdOO4++N+7qjqv0rqxxVvJ3VHPh/Sc9mVZcQP+ZGhkKiTvWMQRr2tbHkJP/Yn7Y0npb3ZBs4A=="
+ "resolved" "https://npm.apple.com/mime-types/-/mime-types-2.1.34.tgz"
+ "version" "2.1.34"
+ dependencies:
+ "mime-db" "1.51.0"
+
+"mimic-fn@^2.1.0":
+ "integrity" "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg=="
+ "resolved" "https://npm.apple.com/mimic-fn/-/mimic-fn-2.1.0.tgz"
+ "version" "2.1.0"
+
+"min-indent@^1.0.0":
+ "integrity" "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg== sha1-pj9oFnOzBXH76LwlaGrnRu76mGk="
+ "resolved" "https://npm.apple.com/min-indent/-/min-indent-1.0.1.tgz"
+ "version" "1.0.1"
+
+"minimatch@^3.0.4":
+ "integrity" "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== sha1-UWbihkV/AzBgZL5Ul+jbsMPTIIM="
+ "resolved" "https://npm.apple.com/minimatch/-/minimatch-3.0.4.tgz"
+ "version" "3.0.4"
+ dependencies:
+ "brace-expansion" "^1.1.7"
+
+"minimist@^1.2.0", "minimist@^1.2.5":
+ "integrity" "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw== sha1-Z9ZgFLZqaoqqDAg8X9WN9OTpdgI="
+ "resolved" "https://npm.apple.com/minimist/-/minimist-1.2.5.tgz"
+ "version" "1.2.5"
+
+"mkdirp@^0.5.1":
+ "integrity" "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ== sha1-2Rzv1i0UNsoPQWIOJRKI1CAJne8="
+ "resolved" "https://npm.apple.com/mkdirp/-/mkdirp-0.5.5.tgz"
+ "version" "0.5.5"
+ dependencies:
+ "minimist" "^1.2.5"
+
+"mri@^1.1.0":
+ "integrity" "sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA== sha1-ZyFID+wqEaSImGERWki2y+fMjws="
+ "resolved" "https://npm.apple.com/mri/-/mri-1.2.0.tgz"
+ "version" "1.2.0"
+
+"mrmime@^1.0.0":
+ "integrity" "sha512-a70zx7zFfVO7XpnQ2IX1Myh9yY4UYvfld/dikWRnsXxbyvMcfz+u6UfgNAtH+k2QqtJuzVpv6eLTx1G2+WKZbQ=="
+ "resolved" "https://npm.apple.com/mrmime/-/mrmime-1.0.0.tgz"
+ "version" "1.0.0"
+
+"ms@2.1.2":
+ "integrity" "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== sha1-0J0fNXtEP0kzgqjrPM0YOHKuYAk="
+ "resolved" "https://npm.apple.com/ms/-/ms-2.1.2.tgz"
+ "version" "2.1.2"
+
+"natural-compare@^1.4.0":
+ "integrity" "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc="
+ "resolved" "https://npm.apple.com/natural-compare/-/natural-compare-1.4.0.tgz"
+ "version" "1.4.0"
+
+"ndarray-ops@^1.2.2":
+ "integrity" "sha1-WeiNLDKn7ryxvGkPrhQVeVV6YU4="
+ "resolved" "https://npm.apple.com/ndarray-ops/-/ndarray-ops-1.2.2.tgz"
+ "version" "1.2.2"
+ dependencies:
+ "cwise-compiler" "^1.0.0"
+
+"ndarray@^1.0.19":
+ "integrity" "sha512-B4JHA4vdyZU30ELBw3g7/p9bZupyew5a7tX1Y/gGeF2hafrPaQZhgrGQfsvgfYbgdFZjYwuEcnaobeM/WMW+HQ== sha1-Z4W19d+li4PjGuWyoFjP0as/aU4="
+ "resolved" "https://npm.apple.com/ndarray/-/ndarray-1.0.19.tgz"
+ "version" "1.0.19"
+ dependencies:
+ "iota-array" "^1.0.0"
+ "is-buffer" "^1.0.2"
+
+"nice-try@^1.0.4":
+ "integrity" "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== sha1-ozeKdpbOfSI+iPybdkvX7xCJ42Y="
+ "resolved" "https://npm.apple.com/nice-try/-/nice-try-1.0.5.tgz"
+ "version" "1.0.5"
+
+"node-int64@^0.4.0":
+ "integrity" "sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs="
+ "resolved" "https://npm.apple.com/node-int64/-/node-int64-0.4.0.tgz"
+ "version" "0.4.0"
+
+"node-releases@^2.0.2":
+ "integrity" "sha512-XxYDdcQ6eKqp/YjI+tb2C5WM2LgjnZrfYg4vgQt49EK268b6gYCHsBLrK2qvJo4FmCtqmKezb0WZFK4fkrZNsg=="
+ "resolved" "https://npm.apple.com/node-releases/-/node-releases-2.0.2.tgz"
+ "version" "2.0.2"
+
+"normalize-package-data@^2.3.2":
+ "integrity" "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA== sha1-5m2xg4sgDB38IzIl0SyzZSDiNKg="
+ "resolved" "https://npm.apple.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz"
+ "version" "2.5.0"
+ dependencies:
+ "hosted-git-info" "^2.1.4"
+ "resolve" "^1.10.0"
+ "semver" "2 || 3 || 4 || 5"
+ "validate-npm-package-license" "^3.0.1"
+
+"normalize-path@^3.0.0", "normalize-path@~3.0.0":
+ "integrity" "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== sha1-Dc1p/yOhybEf0JeDFmRKA4ghamU="
+ "resolved" "https://npm.apple.com/normalize-path/-/normalize-path-3.0.0.tgz"
+ "version" "3.0.0"
+
+"npm-run-all@^4.1.5":
+ "integrity" "sha512-Oo82gJDAVcaMdi3nuoKFavkIHBRVqQ1qvMb+9LHk/cF4P6B2m8aP04hGf7oL6wZ9BuGwX1onlLhpuoofSyoQDQ== sha1-BEdiAqFe4OLiFAgIYb/xKlHZj7o="
+ "resolved" "https://npm.apple.com/npm-run-all/-/npm-run-all-4.1.5.tgz"
+ "version" "4.1.5"
+ dependencies:
+ "ansi-styles" "^3.2.1"
+ "chalk" "^2.4.1"
+ "cross-spawn" "^6.0.5"
+ "memorystream" "^0.3.1"
+ "minimatch" "^3.0.4"
+ "pidtree" "^0.3.0"
+ "read-pkg" "^3.0.0"
+ "shell-quote" "^1.6.1"
+ "string.prototype.padend" "^3.0.0"
+
+"npm-run-path@^4.0.1":
+ "integrity" "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw=="
+ "resolved" "https://npm.apple.com/npm-run-path/-/npm-run-path-4.0.1.tgz"
+ "version" "4.0.1"
+ dependencies:
+ "path-key" "^3.0.0"
+
+"nwsapi@^2.2.0":
+ "integrity" "sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ=="
+ "resolved" "https://npm.apple.com/nwsapi/-/nwsapi-2.2.0.tgz"
+ "version" "2.2.0"
+
+"object-assign@^4.0.1":
+ "integrity" "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM="
+ "resolved" "https://npm.apple.com/object-assign/-/object-assign-4.1.1.tgz"
+ "version" "4.1.1"
+
+"object-inspect@^1.11.0", "object-inspect@^1.9.0":
+ "integrity" "sha512-Ho2z80bVIvJloH+YzRmpZVQe87+qASmBUKZDWgx9cu+KDrX2ZDH/3tMy+gXbZETVGs2M8YdxObOh7XAtim9Y0g== sha1-biwSDoaP0f0Yy08YwxdB0NbndvA="
+ "resolved" "https://npm.apple.com/object-inspect/-/object-inspect-1.12.0.tgz"
+ "version" "1.12.0"
+
+"object-keys@^1.0.12", "object-keys@^1.1.1":
+ "integrity" "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== sha1-HEfyct8nfzsdrwYWd9nILiMixg4="
+ "resolved" "https://npm.apple.com/object-keys/-/object-keys-1.1.1.tgz"
+ "version" "1.1.1"
+
+"object.assign@^4.1.2":
+ "integrity" "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ== sha1-DtVKNC7Os3s4/3brgxoOeIy2OUA="
+ "resolved" "https://npm.apple.com/object.assign/-/object.assign-4.1.2.tgz"
+ "version" "4.1.2"
+ dependencies:
+ "call-bind" "^1.0.0"
+ "define-properties" "^1.1.3"
+ "has-symbols" "^1.0.1"
+ "object-keys" "^1.1.1"
+
+"once@^1.3.0":
+ "integrity" "sha1-WDsap3WWHUsROsF9nFC6753Xa9E="
+ "resolved" "https://npm.apple.com/once/-/once-1.4.0.tgz"
+ "version" "1.4.0"
+ dependencies:
+ "wrappy" "1"
+
+"onetime@^5.1.2":
+ "integrity" "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg=="
+ "resolved" "https://npm.apple.com/onetime/-/onetime-5.1.2.tgz"
+ "version" "5.1.2"
+ dependencies:
+ "mimic-fn" "^2.1.0"
+
+"optionator@^0.8.1":
+ "integrity" "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA=="
+ "resolved" "https://npm.apple.com/optionator/-/optionator-0.8.3.tgz"
+ "version" "0.8.3"
+ dependencies:
+ "deep-is" "~0.1.3"
+ "fast-levenshtein" "~2.0.6"
+ "levn" "~0.3.0"
+ "prelude-ls" "~1.1.2"
+ "type-check" "~0.3.2"
+ "word-wrap" "~1.2.3"
+
+"optionator@^0.9.1":
+ "integrity" "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw== sha1-TyNqY3Pa4FZqbUPhMmZ09QwpFJk="
+ "resolved" "https://npm.apple.com/optionator/-/optionator-0.9.1.tgz"
+ "version" "0.9.1"
+ dependencies:
+ "deep-is" "^0.1.3"
+ "fast-levenshtein" "^2.0.6"
+ "levn" "^0.4.1"
+ "prelude-ls" "^1.2.1"
+ "type-check" "^0.4.0"
+ "word-wrap" "^1.2.3"
+
+"opts@>= 1.2.0":
+ "integrity" "sha512-k41FwbcLnlgnFh69f4qdUfvDQ+5vaSDnVPFI/y5XuhKRq97EnVVneO9F1ESVCdiVu4fCS2L8usX3mU331hB7pg== sha1-oX4Yn7v+4XHaVZ7dikJCO8WZPOE="
+ "resolved" "https://npm.apple.com/opts/-/opts-2.0.2.tgz"
+ "version" "2.0.2"
+
+"p-limit@^2.2.0":
+ "integrity" "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== sha1-PdM8ZHohT9//2DWTPrCG2g3CHbE="
+ "resolved" "https://npm.apple.com/p-limit/-/p-limit-2.3.0.tgz"
+ "version" "2.3.0"
+ dependencies:
+ "p-try" "^2.0.0"
+
+"p-locate@^4.1.0":
+ "integrity" "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A== sha1-o0KLtwiLOmApL2aRkni3wpetTwc="
+ "resolved" "https://npm.apple.com/p-locate/-/p-locate-4.1.0.tgz"
+ "version" "4.1.0"
+ dependencies:
+ "p-limit" "^2.2.0"
+
+"p-try@^2.0.0":
+ "integrity" "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== sha1-yyhoVA4xPWHeWPr741zpAE1VQOY="
+ "resolved" "https://npm.apple.com/p-try/-/p-try-2.2.0.tgz"
+ "version" "2.2.0"
+
+"parent-module@^1.0.0":
+ "integrity" "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== sha1-aR0nCeeMefrjoVZiJFLQB2LKqqI="
+ "resolved" "https://npm.apple.com/parent-module/-/parent-module-1.0.1.tgz"
+ "version" "1.0.1"
+ dependencies:
+ "callsites" "^3.0.0"
+
+"parse-json@^4.0.0":
+ "integrity" "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA="
+ "resolved" "https://npm.apple.com/parse-json/-/parse-json-4.0.0.tgz"
+ "version" "4.0.0"
+ dependencies:
+ "error-ex" "^1.3.1"
+ "json-parse-better-errors" "^1.0.1"
+
+"parse-json@^5.2.0":
+ "integrity" "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg=="
+ "resolved" "https://npm.apple.com/parse-json/-/parse-json-5.2.0.tgz"
+ "version" "5.2.0"
+ dependencies:
+ "@babel/code-frame" "^7.0.0"
+ "error-ex" "^1.3.1"
+ "json-parse-even-better-errors" "^2.3.0"
+ "lines-and-columns" "^1.1.6"
+
+"parse5@6.0.1":
+ "integrity" "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw=="
+ "resolved" "https://npm.apple.com/parse5/-/parse5-6.0.1.tgz"
+ "version" "6.0.1"
+
+"path-exists@^4.0.0":
+ "integrity" "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== sha1-UTvb4tO5XXdi6METfvoZXGxhtbM="
+ "resolved" "https://npm.apple.com/path-exists/-/path-exists-4.0.0.tgz"
+ "version" "4.0.0"
+
+"path-is-absolute@^1.0.0":
+ "integrity" "sha1-F0uSaHNVNP+8es5r9TpanhtcX18="
+ "resolved" "https://npm.apple.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz"
+ "version" "1.0.1"
+
+"path-key@^2.0.1":
+ "integrity" "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A="
+ "resolved" "https://npm.apple.com/path-key/-/path-key-2.0.1.tgz"
+ "version" "2.0.1"
+
+"path-key@^3.0.0", "path-key@^3.1.0":
+ "integrity" "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== sha1-WB9q3mWMu6ZaDTOA3ndTKVBU83U="
+ "resolved" "https://npm.apple.com/path-key/-/path-key-3.1.1.tgz"
+ "version" "3.1.1"
+
+"path-parse@^1.0.6":
+ "integrity" "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== sha1-+8EUtgykKzDZ2vWFjkvWi77bZzU="
+ "resolved" "https://npm.apple.com/path-parse/-/path-parse-1.0.7.tgz"
+ "version" "1.0.7"
+
+"path-type@^3.0.0":
+ "integrity" "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg== sha1-zvMdyOCho7sNEFwM2Xzzv0f0428="
+ "resolved" "https://npm.apple.com/path-type/-/path-type-3.0.0.tgz"
+ "version" "3.0.0"
+ dependencies:
+ "pify" "^3.0.0"
+
+"path-type@^4.0.0":
+ "integrity" "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw=="
+ "resolved" "https://npm.apple.com/path-type/-/path-type-4.0.0.tgz"
+ "version" "4.0.0"
+
+"picocolors@^1.0.0":
+ "integrity" "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ=="
+ "resolved" "https://npm.apple.com/picocolors/-/picocolors-1.0.0.tgz"
+ "version" "1.0.0"
+
+"picomatch@^2.0.4", "picomatch@^2.2.1", "picomatch@^2.2.2", "picomatch@^2.2.3":
+ "integrity" "sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw== sha1-8fBh3o9qS/AiiS4tEoI0+5gwKXI="
+ "resolved" "https://npm.apple.com/picomatch/-/picomatch-2.3.0.tgz"
+ "version" "2.3.0"
+
+"pidtree@^0.3.0":
+ "integrity" "sha512-qQbW94hLHEqCg7nhby4yRC7G2+jYHY4Rguc2bjw7Uug4GIJuu1tvf2uHaZv5Q8zdt+WKJ6qK1FOI6amaWUo5FA== sha1-7wmsLMBTPfHzJQzPLE02aw0SEUo="
+ "resolved" "https://npm.apple.com/pidtree/-/pidtree-0.3.1.tgz"
+ "version" "0.3.1"
+
+"pify@^2.0.0":
+ "integrity" "sha1-7RQaasBDqEnqWISY59yosVMw6Qw="
+ "resolved" "https://npm.apple.com/pify/-/pify-2.3.0.tgz"
+ "version" "2.3.0"
+
+"pify@^3.0.0":
+ "integrity" "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY="
+ "resolved" "https://npm.apple.com/pify/-/pify-3.0.0.tgz"
+ "version" "3.0.0"
+
+"pinkie-promise@^2.0.0":
+ "integrity" "sha1-ITXW36ejWMBprJsXh3YogihFD/o="
+ "resolved" "https://npm.apple.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz"
+ "version" "2.0.1"
+ dependencies:
+ "pinkie" "^2.0.0"
+
+"pinkie@^2.0.0":
+ "integrity" "sha1-clVrgM+g1IqXToDnckjoDtT3+HA="
+ "resolved" "https://npm.apple.com/pinkie/-/pinkie-2.0.4.tgz"
+ "version" "2.0.4"
+
+"pirates@^4.0.4":
+ "integrity" "sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ=="
+ "resolved" "https://npm.apple.com/pirates/-/pirates-4.0.5.tgz"
+ "version" "4.0.5"
+
+"pkg-dir@^4.1.0", "pkg-dir@^4.2.0":
+ "integrity" "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ== sha1-8JkTPfft5CLoHR2ESCcO6z5CYfM="
+ "resolved" "https://npm.apple.com/pkg-dir/-/pkg-dir-4.2.0.tgz"
+ "version" "4.2.0"
+ dependencies:
+ "find-up" "^4.0.0"
+
+"prelude-ls@^1.2.1":
+ "integrity" "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== sha1-3rxkidem5rDnYRiIzsiAM30xY5Y="
+ "resolved" "https://npm.apple.com/prelude-ls/-/prelude-ls-1.2.1.tgz"
+ "version" "1.2.1"
+
+"prelude-ls@~1.1.2":
+ "integrity" "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ="
+ "resolved" "https://npm.apple.com/prelude-ls/-/prelude-ls-1.1.2.tgz"
+ "version" "1.1.2"
+
+"pretty-format@^27.0.0", "pretty-format@^27.5.1":
+ "integrity" "sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ=="
+ "resolved" "https://npm.apple.com/pretty-format/-/pretty-format-27.5.1.tgz"
+ "version" "27.5.1"
+ dependencies:
+ "ansi-regex" "^5.0.1"
+ "ansi-styles" "^5.0.0"
+ "react-is" "^17.0.1"
+
+"prompts@^2.0.1":
+ "integrity" "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q=="
+ "resolved" "https://npm.apple.com/prompts/-/prompts-2.4.2.tgz"
+ "version" "2.4.2"
+ dependencies:
+ "kleur" "^3.0.3"
+ "sisteransi" "^1.0.5"
+
+"psl@^1.1.33":
+ "integrity" "sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ=="
+ "resolved" "https://npm.apple.com/psl/-/psl-1.8.0.tgz"
+ "version" "1.8.0"
+
+"punycode@^2.1.0", "punycode@^2.1.1":
+ "integrity" "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A=="
+ "resolved" "https://npm.apple.com/punycode/-/punycode-2.1.1.tgz"
+ "version" "2.1.1"
+
+"queue-microtask@^1.2.2":
+ "integrity" "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== sha1-SSkii7xyTfrEPg77BYyve2z7YkM="
+ "resolved" "https://npm.apple.com/queue-microtask/-/queue-microtask-1.2.3.tgz"
+ "version" "1.2.3"
+
+"randombytes@^2.1.0":
+ "integrity" "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ== sha1-32+ENy8CcNxlzfYpE0mrekc9Tyo="
+ "resolved" "https://npm.apple.com/randombytes/-/randombytes-2.1.0.tgz"
+ "version" "2.1.0"
+ dependencies:
+ "safe-buffer" "^5.1.0"
+
+"react-is@^17.0.1":
+ "integrity" "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w== sha1-5pHUqOnHiTZWVVOas3J2Kw77VPA="
+ "resolved" "https://npm.apple.com/react-is/-/react-is-17.0.2.tgz"
+ "version" "17.0.2"
+
+"read-pkg@^3.0.0":
+ "integrity" "sha1-nLxoaXj+5l0WwA4rGcI3/Pbjg4k="
+ "resolved" "https://npm.apple.com/read-pkg/-/read-pkg-3.0.0.tgz"
+ "version" "3.0.0"
+ dependencies:
+ "load-json-file" "^4.0.0"
+ "normalize-package-data" "^2.3.2"
+ "path-type" "^3.0.0"
+
+"readdirp@~3.6.0":
+ "integrity" "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA== sha1-dKNwvYVxFuJFspzJc0DNQxoCpsc="
+ "resolved" "https://npm.apple.com/readdirp/-/readdirp-3.6.0.tgz"
+ "version" "3.6.0"
+ dependencies:
+ "picomatch" "^2.2.1"
+
+"regexpp@^3.2.0":
+ "integrity" "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg== sha1-BCWido2PI7rXDKS5BGH6LxIT4bI="
+ "resolved" "https://npm.apple.com/regexpp/-/regexpp-3.2.0.tgz"
+ "version" "3.2.0"
+
+"require-directory@^2.1.1":
+ "integrity" "sha1-jGStX9MNqxyXbiNE/+f3kqam30I="
+ "resolved" "https://npm.apple.com/require-directory/-/require-directory-2.1.1.tgz"
+ "version" "2.1.1"
+
+"require-relative@^0.8.7":
+ "integrity" "sha1-eZlTn8ngR6N5KPoZb44VY9q9Nt4="
+ "resolved" "https://npm.apple.com/require-relative/-/require-relative-0.8.7.tgz"
+ "version" "0.8.7"
+
+"resolve-cwd@^3.0.0":
+ "integrity" "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg=="
+ "resolved" "https://npm.apple.com/resolve-cwd/-/resolve-cwd-3.0.0.tgz"
+ "version" "3.0.0"
+ dependencies:
+ "resolve-from" "^5.0.0"
+
+"resolve-from@^4.0.0":
+ "integrity" "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== sha1-SrzYUq0y3Xuqv+m0DgCjbbXzkuY="
+ "resolved" "https://npm.apple.com/resolve-from/-/resolve-from-4.0.0.tgz"
+ "version" "4.0.0"
+
+"resolve-from@^5.0.0":
+ "integrity" "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== sha1-w1IlhD3493bfIcV1V7wIfp39/Gk="
+ "resolved" "https://npm.apple.com/resolve-from/-/resolve-from-5.0.0.tgz"
+ "version" "5.0.0"
+
+"resolve.exports@^1.1.0":
+ "integrity" "sha512-J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ=="
+ "resolved" "https://npm.apple.com/resolve.exports/-/resolve.exports-1.1.0.tgz"
+ "version" "1.1.0"
+
+"resolve@^1.10.0", "resolve@^1.17.0", "resolve@^1.19.0", "resolve@^1.20.0":
+ "integrity" "sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A== sha1-YpoBP7P3B1XW8LeTXMHCxTeLGXU="
+ "resolved" "https://npm.apple.com/resolve/-/resolve-1.20.0.tgz"
+ "version" "1.20.0"
+ dependencies:
+ "is-core-module" "^2.2.0"
+ "path-parse" "^1.0.6"
+
+"reusify@^1.0.4":
+ "integrity" "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== sha1-kNo4Kx4SbvwCFG6QhFqI2xKSXXY="
+ "resolved" "https://npm.apple.com/reusify/-/reusify-1.0.4.tgz"
+ "version" "1.0.4"
+
+"rimraf@^2.5.2":
+ "integrity" "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w== sha1-NXl/E6f9rcVmFCwp1PB8ytSD4+w="
+ "resolved" "https://npm.apple.com/rimraf/-/rimraf-2.7.1.tgz"
+ "version" "2.7.1"
+ dependencies:
+ "glob" "^7.1.3"
+
+"rimraf@^3.0.0", "rimraf@^3.0.2":
+ "integrity" "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== sha1-8aVAK6YiCtUswSgrrBrjqkn9Bho="
+ "resolved" "https://npm.apple.com/rimraf/-/rimraf-3.0.2.tgz"
+ "version" "3.0.2"
+ dependencies:
+ "glob" "^7.1.3"
+
+"rollup-plugin-css-only@^3.1.0":
+ "integrity" "sha512-TYMOE5uoD76vpj+RTkQLzC9cQtbnJNktHPB507FzRWBVaofg7KhIqq1kGbcVOadARSozWF883Ho9KpSPKH8gqA== sha1-anAcxbBRxrPwlh5psQipoRjhsd8="
+ "resolved" "https://npm.apple.com/rollup-plugin-css-only/-/rollup-plugin-css-only-3.1.0.tgz"
+ "version" "3.1.0"
+ dependencies:
+ "@rollup/pluginutils" "4"
+
+"rollup-plugin-livereload@^2.0.5":
+ "integrity" "sha512-vqQZ/UQowTW7VoiKEM5ouNW90wE5/GZLfdWuR0ELxyKOJUIaj+uismPZZaICU4DnWPVjnpCDDxEqwU7pcKY/PA== sha1-R0f6KSoszrDJcsVz1xs9ZrQlKzc="
+ "resolved" "https://npm.apple.com/rollup-plugin-livereload/-/rollup-plugin-livereload-2.0.5.tgz"
+ "version" "2.0.5"
+ dependencies:
+ "livereload" "^0.9.1"
+
+"rollup-plugin-svelte@^7.1.0":
+ "integrity" "sha512-vopCUq3G+25sKjwF5VilIbiY6KCuMNHP1PFvx2Vr3REBNMDllKHFZN2B9jwwC+MqNc3UPKkjXnceLPEjTjXGXg== sha1-1F8rkrEBS+TrRrVaoDP7mpxl8E0="
+ "resolved" "https://npm.apple.com/rollup-plugin-svelte/-/rollup-plugin-svelte-7.1.0.tgz"
+ "version" "7.1.0"
+ dependencies:
+ "require-relative" "^0.8.7"
+ "rollup-pluginutils" "^2.8.2"
+
+"rollup-plugin-terser@^7.0.2":
+ "integrity" "sha512-w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ== sha1-6Pu6SGmYGy3DWufopQLVxsBNMk0="
+ "resolved" "https://npm.apple.com/rollup-plugin-terser/-/rollup-plugin-terser-7.0.2.tgz"
+ "version" "7.0.2"
+ dependencies:
+ "@babel/code-frame" "^7.10.4"
+ "jest-worker" "^26.2.1"
+ "serialize-javascript" "^4.0.0"
+ "terser" "^5.0.0"
+
+"rollup-pluginutils@^2.8.2":
+ "integrity" "sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ== sha1-cvKvB0i1kjZNvTOJ5gDlqURKNR4="
+ "resolved" "https://npm.apple.com/rollup-pluginutils/-/rollup-pluginutils-2.8.2.tgz"
+ "version" "2.8.2"
+ dependencies:
+ "estree-walker" "^0.6.1"
+
+"rollup@^1.20.0 || ^2.0.0", "rollup@^1.20.0||^2.0.0", "rollup@^2.0.0", "rollup@^2.14.0", "rollup@^2.38.3", "rollup@^2.42.0", "rollup@^2.70.0", "rollup@>=2.0.0", "rollup@1 || 2":
+ "integrity" "sha512-iEzYw+syFxQ0X9RefVwhr8BA2TNJsTaX8L8dhyeyMECDbmiba+8UQzcu+xZdji0+JQ+s7kouQnw+9Oz5M19XKA=="
+ "resolved" "https://npm.apple.com/rollup/-/rollup-2.70.0.tgz"
+ "version" "2.70.0"
+ optionalDependencies:
+ "fsevents" "~2.3.2"
+
+"run-parallel@^1.1.9":
+ "integrity" "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== sha1-ZtE2jae9+SHrnZW9GpIp5/IaQ+4="
+ "resolved" "https://npm.apple.com/run-parallel/-/run-parallel-1.2.0.tgz"
+ "version" "1.2.0"
+ dependencies:
+ "queue-microtask" "^1.2.2"
+
+"rw@1":
+ "integrity" "sha1-P4Yt+pGrdmsUiF700BEkv9oHT7Q="
+ "resolved" "https://npm.apple.com/rw/-/rw-1.3.3.tgz"
+ "version" "1.3.3"
+
+"sade@^1.6.0", "sade@^1.7.4":
+ "integrity" "sha512-y5yauMD93rX840MwUJr7C1ysLFBgMspsdTo4UVrDg3fXDvtwOyIqykhVAAm6fk/3au77773itJStObgK+LKaiA== sha1-6mgeDGXSSNIJXJBXjAPKC7G1RpE="
+ "resolved" "https://npm.apple.com/sade/-/sade-1.7.4.tgz"
+ "version" "1.7.4"
+ dependencies:
+ "mri" "^1.1.0"
+
+"safe-buffer@^5.1.0", "safe-buffer@~5.1.1":
+ "integrity" "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== sha1-mR7GnSluAxN0fVm9/St0XDX4go0="
+ "resolved" "https://npm.apple.com/safe-buffer/-/safe-buffer-5.1.2.tgz"
+ "version" "5.1.2"
+
+"safer-buffer@>= 2.1.2 < 3":
+ "integrity" "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== sha1-RPoWGwGHuVSd2Eu5GAL5vYOFzWo="
+ "resolved" "https://npm.apple.com/safer-buffer/-/safer-buffer-2.1.2.tgz"
+ "version" "2.1.2"
+
+"sander@^0.5.0":
+ "integrity" "sha1-dB4kXiMfB8r7b98PEzrfohalAq0="
+ "resolved" "https://npm.apple.com/sander/-/sander-0.5.1.tgz"
+ "version" "0.5.1"
+ dependencies:
+ "es6-promise" "^3.1.2"
+ "graceful-fs" "^4.1.3"
+ "mkdirp" "^0.5.1"
+ "rimraf" "^2.5.2"
+
+"saxes@^5.0.1":
+ "integrity" "sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw=="
+ "resolved" "https://npm.apple.com/saxes/-/saxes-5.0.1.tgz"
+ "version" "5.0.1"
+ dependencies:
+ "xmlchars" "^2.2.0"
+
+"semiver@^1.0.0":
+ "integrity" "sha512-QNI2ChmuioGC1/xjyYwyZYADILWyW6AmS1UH6gDj/SFUUUS4MBAWs/7mxnkRPc/F4iHezDP+O8t0dO8WHiEOdg== sha1-nJf7AsIcfOT88bc+LHokMkvd3V8="
+ "resolved" "https://npm.apple.com/semiver/-/semiver-1.1.0.tgz"
+ "version" "1.1.0"
+
+"semver@^5.5.0":
+ "integrity" "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== sha1-qVT5Ma66UI0we78Gnv8MAclhFvc="
+ "resolved" "https://npm.apple.com/semver/-/semver-5.7.1.tgz"
+ "version" "5.7.1"
+
+"semver@^6.0.0", "semver@^6.3.0":
+ "integrity" "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== sha1-7gpkyK9ejO6mdoexM3YeG+y9HT0="
+ "resolved" "https://npm.apple.com/semver/-/semver-6.3.0.tgz"
+ "version" "6.3.0"
+
+"semver@^7.3.2":
+ "integrity" "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ=="
+ "resolved" "https://npm.apple.com/semver/-/semver-7.3.5.tgz"
+ "version" "7.3.5"
+ dependencies:
+ "lru-cache" "^6.0.0"
+
+"semver@^7.3.5":
+ "integrity" "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ== sha1-C2Ich5NI2JmOSw5L6Us/EuYBjvc="
+ "resolved" "https://npm.apple.com/semver/-/semver-7.3.5.tgz"
+ "version" "7.3.5"
+ dependencies:
+ "lru-cache" "^6.0.0"
+
+"semver@2 || 3 || 4 || 5":
+ "integrity" "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== sha1-qVT5Ma66UI0we78Gnv8MAclhFvc="
+ "resolved" "https://npm.apple.com/semver/-/semver-5.7.1.tgz"
+ "version" "5.7.1"
+
+"semver@7.x":
+ "integrity" "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ== sha1-C2Ich5NI2JmOSw5L6Us/EuYBjvc="
+ "resolved" "https://npm.apple.com/semver/-/semver-7.3.5.tgz"
+ "version" "7.3.5"
+ dependencies:
+ "lru-cache" "^6.0.0"
+
+"serialize-javascript@^4.0.0":
+ "integrity" "sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw== sha1-tSXhI4SJpez8Qq+sw/6Z5mb0sao="
+ "resolved" "https://npm.apple.com/serialize-javascript/-/serialize-javascript-4.0.0.tgz"
+ "version" "4.0.0"
+ dependencies:
+ "randombytes" "^2.1.0"
+
+"shebang-command@^1.2.0":
+ "integrity" "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo="
+ "resolved" "https://npm.apple.com/shebang-command/-/shebang-command-1.2.0.tgz"
+ "version" "1.2.0"
+ dependencies:
+ "shebang-regex" "^1.0.0"
+
+"shebang-command@^2.0.0":
+ "integrity" "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== sha1-zNCvT4g1+9wmW4JGGq8MNmY/NOo="
+ "resolved" "https://npm.apple.com/shebang-command/-/shebang-command-2.0.0.tgz"
+ "version" "2.0.0"
+ dependencies:
+ "shebang-regex" "^3.0.0"
+
+"shebang-regex@^1.0.0":
+ "integrity" "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM="
+ "resolved" "https://npm.apple.com/shebang-regex/-/shebang-regex-1.0.0.tgz"
+ "version" "1.0.0"
+
+"shebang-regex@^3.0.0":
+ "integrity" "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== sha1-rhbxZE2HPsrYQ7AwexQzYtTEIXI="
+ "resolved" "https://npm.apple.com/shebang-regex/-/shebang-regex-3.0.0.tgz"
+ "version" "3.0.0"
+
+"shell-quote@^1.6.1":
+ "integrity" "sha512-Vpfqwm4EnqGdlsBFNmHhxhElJYrdfcxPThu+ryKS5J8L/fhAwLazFZtq+S+TWZ9ANj2piSQLGj6NQg+lKPmxrw== sha1-qkDtrBcERbmkMeF7tiwLiBucQSM="
+ "resolved" "https://npm.apple.com/shell-quote/-/shell-quote-1.7.3.tgz"
+ "version" "1.7.3"
+
+"side-channel@^1.0.4":
+ "integrity" "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw== sha1-785cj9wQTudRslxY1CkAEfpeos8="
+ "resolved" "https://npm.apple.com/side-channel/-/side-channel-1.0.4.tgz"
+ "version" "1.0.4"
+ dependencies:
+ "call-bind" "^1.0.0"
+ "get-intrinsic" "^1.0.2"
+ "object-inspect" "^1.9.0"
+
+"signal-exit@^3.0.2", "signal-exit@^3.0.3":
+ "integrity" "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ=="
+ "resolved" "https://npm.apple.com/signal-exit/-/signal-exit-3.0.7.tgz"
+ "version" "3.0.7"
+
+"sirv-cli@^2.0.2":
+ "integrity" "sha512-OtSJDwxsF1NWHc7ps3Sa0s+dPtP15iQNJzfKVz+MxkEo3z72mCD+yu30ct79rPr0CaV1HXSOBp+MIY5uIhHZ1A=="
+ "resolved" "https://npm.apple.com/sirv-cli/-/sirv-cli-2.0.2.tgz"
+ "version" "2.0.2"
+ dependencies:
+ "console-clear" "^1.1.0"
+ "get-port" "^3.2.0"
+ "kleur" "^4.1.4"
+ "local-access" "^1.0.1"
+ "sade" "^1.6.0"
+ "semiver" "^1.0.0"
+ "sirv" "^2.0.0"
+ "tinydate" "^1.0.0"
+
+"sirv@^2.0.0":
+ "integrity" "sha512-4Qog6aE29nIjAOKe/wowFTxOdmbEZKb+3tsLljaBRzJwtqto0BChD2zzH0LhgCSXiI+V7X+Y45v14wBZQ1TK3w=="
+ "resolved" "https://npm.apple.com/sirv/-/sirv-2.0.2.tgz"
+ "version" "2.0.2"
+ dependencies:
+ "@polka/url" "^1.0.0-next.20"
+ "mrmime" "^1.0.0"
+ "totalist" "^3.0.0"
+
+"sisteransi@^1.0.5":
+ "integrity" "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg=="
+ "resolved" "https://npm.apple.com/sisteransi/-/sisteransi-1.0.5.tgz"
+ "version" "1.0.5"
+
+"slash@^3.0.0":
+ "integrity" "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== sha1-ZTm+hwwWWtvVJAIg2+Nh8bxNRjQ="
+ "resolved" "https://npm.apple.com/slash/-/slash-3.0.0.tgz"
+ "version" "3.0.0"
+
+"sorcery@^0.10.0":
+ "integrity" "sha1-iukK19fLBfxZ8asMY3hF1cFaUrc="
+ "resolved" "https://npm.apple.com/sorcery/-/sorcery-0.10.0.tgz"
+ "version" "0.10.0"
+ dependencies:
+ "buffer-crc32" "^0.2.5"
+ "minimist" "^1.2.0"
+ "sander" "^0.5.0"
+ "sourcemap-codec" "^1.3.0"
+
+"source-map-support@^0.5.6", "source-map-support@~0.5.20":
+ "integrity" "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w== sha1-BP58f54e0tZiIzwoyys1ufY/bk8="
+ "resolved" "https://npm.apple.com/source-map-support/-/source-map-support-0.5.21.tgz"
+ "version" "0.5.21"
+ dependencies:
+ "buffer-from" "^1.0.0"
+ "source-map" "^0.6.0"
+
+"source-map@^0.5.0":
+ "integrity" "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w="
+ "resolved" "https://npm.apple.com/source-map/-/source-map-0.5.7.tgz"
+ "version" "0.5.7"
+
+"source-map@^0.6.0":
+ "integrity" "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="
+ "resolved" "https://npm.apple.com/source-map/-/source-map-0.6.1.tgz"
+ "version" "0.6.1"
+
+"source-map@^0.6.1":
+ "integrity" "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="
+ "resolved" "https://npm.apple.com/source-map/-/source-map-0.6.1.tgz"
+ "version" "0.6.1"
+
+"source-map@^0.7.3":
+ "integrity" "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ== sha1-UwL4FpAxc1ImVECS5kmB91F1A4M="
+ "resolved" "https://npm.apple.com/source-map/-/source-map-0.7.3.tgz"
+ "version" "0.7.3"
+
+"source-map@~0.6.1":
+ "integrity" "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="
+ "resolved" "https://npm.apple.com/source-map/-/source-map-0.6.1.tgz"
+ "version" "0.6.1"
+
+"source-map@~0.7.2":
+ "integrity" "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ== sha1-UwL4FpAxc1ImVECS5kmB91F1A4M="
+ "resolved" "https://npm.apple.com/source-map/-/source-map-0.7.3.tgz"
+ "version" "0.7.3"
+
+"sourcemap-codec@^1.3.0", "sourcemap-codec@^1.4.4":
+ "integrity" "sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA== sha1-6oBL2UhXQC5pktBaOO8a41qatMQ="
+ "resolved" "https://npm.apple.com/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz"
+ "version" "1.4.8"
+
+"spdx-correct@^3.0.0":
+ "integrity" "sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w== sha1-3s6BrJweZxPl99G28X1Gj6U9iak="
+ "resolved" "https://npm.apple.com/spdx-correct/-/spdx-correct-3.1.1.tgz"
+ "version" "3.1.1"
+ dependencies:
+ "spdx-expression-parse" "^3.0.0"
+ "spdx-license-ids" "^3.0.0"
+
+"spdx-exceptions@^2.1.0":
+ "integrity" "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A== sha1-PyjOGnegA3JoPq3kpDMYNSeiFj0="
+ "resolved" "https://npm.apple.com/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz"
+ "version" "2.3.0"
+
+"spdx-expression-parse@^3.0.0":
+ "integrity" "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q== sha1-z3D1BILu/cmOPOCmgz5KU87rpnk="
+ "resolved" "https://npm.apple.com/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz"
+ "version" "3.0.1"
+ dependencies:
+ "spdx-exceptions" "^2.1.0"
+ "spdx-license-ids" "^3.0.0"
+
+"spdx-license-ids@^3.0.0":
+ "integrity" "sha512-Ctl2BrFiM0X3MANYgj3CkygxhRmr9mi6xhejbdO960nF6EDJApTYpn0BQnDKlnNBULKiCN1n3w9EBkHK8ZWg+g== sha1-UMDYxAoU7Bv0Sbrmmg6kaFqdn5U="
+ "resolved" "https://npm.apple.com/spdx-license-ids/-/spdx-license-ids-3.0.11.tgz"
+ "version" "3.0.11"
+
+"sprintf-js@~1.0.2":
+ "integrity" "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw="
+ "resolved" "https://npm.apple.com/sprintf-js/-/sprintf-js-1.0.3.tgz"
+ "version" "1.0.3"
+
+"stack-utils@^2.0.3":
+ "integrity" "sha512-xrQcmYhOsn/1kX+Vraq+7j4oE2j/6BFscZ0etmYg81xuM8Gq0022Pxb8+IqgOFUIaxHs0KaSb7T1+OegiNrNFA=="
+ "resolved" "https://npm.apple.com/stack-utils/-/stack-utils-2.0.5.tgz"
+ "version" "2.0.5"
+ dependencies:
+ "escape-string-regexp" "^2.0.0"
+
+"string-length@^4.0.1":
+ "integrity" "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ=="
+ "resolved" "https://npm.apple.com/string-length/-/string-length-4.0.2.tgz"
+ "version" "4.0.2"
+ dependencies:
+ "char-regex" "^1.0.2"
+ "strip-ansi" "^6.0.0"
+
+"string-width@^4.1.0", "string-width@^4.2.0":
+ "integrity" "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g=="
+ "resolved" "https://npm.apple.com/string-width/-/string-width-4.2.3.tgz"
+ "version" "4.2.3"
+ dependencies:
+ "emoji-regex" "^8.0.0"
+ "is-fullwidth-code-point" "^3.0.0"
+ "strip-ansi" "^6.0.1"
+
+"string.prototype.padend@^3.0.0":
+ "integrity" "sha512-jNIIeokznm8SD/TZISQsZKYu7RJyheFNt84DUPrh482GC8RVp2MKqm2O5oBRdGxbDQoXrhhWtPIWQOiy20svUg== sha1-mXpt4SySx8s03IogGmxT2b2IpfE="
+ "resolved" "https://npm.apple.com/string.prototype.padend/-/string.prototype.padend-3.1.3.tgz"
+ "version" "3.1.3"
+ dependencies:
+ "call-bind" "^1.0.2"
+ "define-properties" "^1.1.3"
+ "es-abstract" "^1.19.1"
+
+"string.prototype.trimend@^1.0.4":
+ "integrity" "sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A== sha1-51rpDClCxjUEaGwYsoe0oLGkX4A="
+ "resolved" "https://npm.apple.com/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz"
+ "version" "1.0.4"
+ dependencies:
+ "call-bind" "^1.0.2"
+ "define-properties" "^1.1.3"
+
+"string.prototype.trimstart@^1.0.4":
+ "integrity" "sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw== sha1-s2OZr0qymZtMnGSL16P7K7Jv7u0="
+ "resolved" "https://npm.apple.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz"
+ "version" "1.0.4"
+ dependencies:
+ "call-bind" "^1.0.2"
+ "define-properties" "^1.1.3"
+
+"strip-ansi@^6.0.0", "strip-ansi@^6.0.1":
+ "integrity" "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== sha1-nibGPTD1NEPpSJSVshBdN7Z6hdk="
+ "resolved" "https://npm.apple.com/strip-ansi/-/strip-ansi-6.0.1.tgz"
+ "version" "6.0.1"
+ dependencies:
+ "ansi-regex" "^5.0.1"
+
+"strip-bom@^3.0.0":
+ "integrity" "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM="
+ "resolved" "https://npm.apple.com/strip-bom/-/strip-bom-3.0.0.tgz"
+ "version" "3.0.0"
+
+"strip-bom@^4.0.0":
+ "integrity" "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w=="
+ "resolved" "https://npm.apple.com/strip-bom/-/strip-bom-4.0.0.tgz"
+ "version" "4.0.0"
+
+"strip-final-newline@^2.0.0":
+ "integrity" "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA=="
+ "resolved" "https://npm.apple.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz"
+ "version" "2.0.0"
+
+"strip-indent@^3.0.0":
+ "integrity" "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ== sha1-wy4c7pQLazQyx3G8LFS8znPNMAE="
+ "resolved" "https://npm.apple.com/strip-indent/-/strip-indent-3.0.0.tgz"
+ "version" "3.0.0"
+ dependencies:
+ "min-indent" "^1.0.0"
+
+"strip-json-comments@^3.1.0", "strip-json-comments@^3.1.1":
+ "integrity" "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig=="
+ "resolved" "https://npm.apple.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz"
+ "version" "3.1.1"
+
+"strip-outer@^1.0.1":
+ "integrity" "sha512-k55yxKHwaXnpYGsOzg4Vl8+tDrWylxDEpknGjhTiZB8dFRU5rTo9CAzeycivxV3s+zlTKwrs6WxMxR95n26kwg== sha1-sv0qv2YEudHmATBXGV34Nrip1jE="
+ "resolved" "https://npm.apple.com/strip-outer/-/strip-outer-1.0.1.tgz"
+ "version" "1.0.1"
+ dependencies:
+ "escape-string-regexp" "^1.0.2"
+
+"supports-color@^5.3.0":
+ "integrity" "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== sha1-4uaaRKyHcveKHsCzW2id9lMO/I8="
+ "resolved" "https://npm.apple.com/supports-color/-/supports-color-5.5.0.tgz"
+ "version" "5.5.0"
+ dependencies:
+ "has-flag" "^3.0.0"
+
+"supports-color@^7.0.0":
+ "integrity" "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== sha1-G33NyzK4E4gBs+R4umpRyqiWSNo="
+ "resolved" "https://npm.apple.com/supports-color/-/supports-color-7.2.0.tgz"
+ "version" "7.2.0"
+ dependencies:
+ "has-flag" "^4.0.0"
+
+"supports-color@^7.1.0":
+ "integrity" "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw=="
+ "resolved" "https://npm.apple.com/supports-color/-/supports-color-7.2.0.tgz"
+ "version" "7.2.0"
+ dependencies:
+ "has-flag" "^4.0.0"
+
+"supports-color@^8.0.0":
+ "integrity" "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q=="
+ "resolved" "https://npm.apple.com/supports-color/-/supports-color-8.1.1.tgz"
+ "version" "8.1.1"
+ dependencies:
+ "has-flag" "^4.0.0"
+
+"supports-hyperlinks@^2.0.0":
+ "integrity" "sha512-6sXEzV5+I5j8Bmq9/vUphGRM/RJNT9SCURJLjwfOg51heRtguGWDzcaBlgAzKhQa0EVNpPEKzQuBwZ8S8WaCeQ=="
+ "resolved" "https://npm.apple.com/supports-hyperlinks/-/supports-hyperlinks-2.2.0.tgz"
+ "version" "2.2.0"
+ dependencies:
+ "has-flag" "^4.0.0"
+ "supports-color" "^7.0.0"
+
+"svelte-check@^2.4.5":
+ "integrity" "sha512-nRft8BbG2wcxyCdHDZ7X43xLcvDzua3xLwq6wzHGcAF3ka3Jyhv2rvgq0+SF9NwHLMefp9C2XkM6etzsxK/cMQ=="
+ "resolved" "https://npm.apple.com/svelte-check/-/svelte-check-2.4.5.tgz"
+ "version" "2.4.5"
+ dependencies:
+ "chokidar" "^3.4.1"
+ "fast-glob" "^3.2.7"
+ "import-fresh" "^3.2.1"
+ "minimist" "^1.2.5"
+ "picocolors" "^1.0.0"
+ "sade" "^1.7.4"
+ "source-map" "^0.7.3"
+ "svelte-preprocess" "^4.0.0"
+ "typescript" "*"
+
+"svelte-preprocess@^4.0.0", "svelte-preprocess@^4.10.4":
+ "integrity" "sha512-fuwol0N4UoHsNQolLFbMqWivqcJ9N0vfWO9IuPAiX/5okfoGXURyJ6nECbuEIv0nU3M8Xe2I1ONNje2buk7l6A=="
+ "resolved" "https://npm.apple.com/svelte-preprocess/-/svelte-preprocess-4.10.4.tgz"
+ "version" "4.10.4"
+ dependencies:
+ "@types/pug" "^2.0.4"
+ "@types/sass" "^1.16.0"
+ "detect-indent" "^6.0.0"
+ "magic-string" "^0.25.7"
+ "sorcery" "^0.10.0"
+ "strip-indent" "^3.0.0"
+
+"svelte@^3.2.0", "svelte@^3.23.0", "svelte@^3.24.0", "svelte@^3.46.4", "svelte@>=3.5.0":
+ "integrity" "sha512-qKJzw6DpA33CIa+C/rGp4AUdSfii0DOTCzj/2YpSKKayw5WGSS624Et9L1nU1k2OVRS9vaENQXp2CVZNU+xvIg=="
+ "resolved" "https://npm.apple.com/svelte/-/svelte-3.46.4.tgz"
+ "version" "3.46.4"
+
+"symbol-tree@^3.2.4":
+ "integrity" "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw=="
+ "resolved" "https://npm.apple.com/symbol-tree/-/symbol-tree-3.2.4.tgz"
+ "version" "3.2.4"
+
+"terminal-link@^2.0.0":
+ "integrity" "sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ=="
+ "resolved" "https://npm.apple.com/terminal-link/-/terminal-link-2.1.1.tgz"
+ "version" "2.1.1"
+ dependencies:
+ "ansi-escapes" "^4.2.1"
+ "supports-hyperlinks" "^2.0.0"
+
+"terser@^5.0.0":
+ "integrity" "sha512-AMmF99DMfEDiRJfxfY5jj5wNH/bYO09cniSqhfoyxc8sFoYIgkJy86G04UoZU5VjlpnplVu0K6Tx6E9b5+DlHA== sha1-uGOQgJwDiRBesKC2I5dWMJbdr8w="
+ "resolved" "https://npm.apple.com/terser/-/terser-5.10.0.tgz"
+ "version" "5.10.0"
+ dependencies:
+ "commander" "^2.20.0"
+ "source-map" "~0.7.2"
+ "source-map-support" "~0.5.20"
+
+"test-exclude@^6.0.0":
+ "integrity" "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w== sha1-BKhphmHYBepvopO2y55jrARO8V4="
+ "resolved" "https://npm.apple.com/test-exclude/-/test-exclude-6.0.0.tgz"
+ "version" "6.0.0"
+ dependencies:
+ "@istanbuljs/schema" "^0.1.2"
+ "glob" "^7.1.4"
+ "minimatch" "^3.0.4"
+
+"text-table@^0.2.0":
+ "integrity" "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ="
+ "resolved" "https://npm.apple.com/text-table/-/text-table-0.2.0.tgz"
+ "version" "0.2.0"
+
+"throat@^6.0.1":
+ "integrity" "sha512-8hmiGIJMDlwjg7dlJ4yKGLK8EsYqKgPWbG3b4wjJddKNwc7N7Dpn08Df4szr/sZdMVeOstrdYSsqzX6BYbcB+w=="
+ "resolved" "https://npm.apple.com/throat/-/throat-6.0.1.tgz"
+ "version" "6.0.1"
+
+"tinydate@^1.0.0":
+ "integrity" "sha512-7cR8rLy2QhYHpsBDBVYnnWXm8uRTr38RoZakFSW7Bs7PzfMPNZthuMLkwqZv7MTu8lhQ91cOFYS5a7iFj2oR3w== sha1-5sqOWiK1G7TqHDoqT9E1Lb1MV/s="
+ "resolved" "https://npm.apple.com/tinydate/-/tinydate-1.3.0.tgz"
+ "version" "1.3.0"
+
+"tmpl@1.0.5":
+ "integrity" "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw=="
+ "resolved" "https://npm.apple.com/tmpl/-/tmpl-1.0.5.tgz"
+ "version" "1.0.5"
+
+"to-fast-properties@^2.0.0":
+ "integrity" "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4="
+ "resolved" "https://npm.apple.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz"
+ "version" "2.0.0"
+
+"to-regex-range@^5.0.1":
+ "integrity" "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== sha1-FkjESq58jZiKMmAY7XL1tN0DkuQ="
+ "resolved" "https://npm.apple.com/to-regex-range/-/to-regex-range-5.0.1.tgz"
+ "version" "5.0.1"
+ dependencies:
+ "is-number" "^7.0.0"
+
+"totalist@^3.0.0":
+ "integrity" "sha512-eM+pCBxXO/njtF7vdFsHuqb+ElbxqtI4r5EAvk6grfAFyJ6IvWlSkfZ5T9ozC6xWw3Fj1fGoSmrl0gUs46JVIw=="
+ "resolved" "https://npm.apple.com/totalist/-/totalist-3.0.0.tgz"
+ "version" "3.0.0"
+
+"tough-cookie@^4.0.0":
+ "integrity" "sha512-tHdtEpQCMrc1YLrMaqXXcj6AxhYi/xgit6mZu1+EDWUn+qhUf8wMQoFIy9NXuq23zAwtcB0t/MjACGR18pcRbg=="
+ "resolved" "https://npm.apple.com/tough-cookie/-/tough-cookie-4.0.0.tgz"
+ "version" "4.0.0"
+ dependencies:
+ "psl" "^1.1.33"
+ "punycode" "^2.1.1"
+ "universalify" "^0.1.2"
+
+"tr46@^2.1.0":
+ "integrity" "sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw=="
+ "resolved" "https://npm.apple.com/tr46/-/tr46-2.1.0.tgz"
+ "version" "2.1.0"
+ dependencies:
+ "punycode" "^2.1.1"
+
+"trim-repeated@^1.0.0":
+ "integrity" "sha1-42RqLqTokTEr9+rObPsFOAvAHCE="
+ "resolved" "https://npm.apple.com/trim-repeated/-/trim-repeated-1.0.0.tgz"
+ "version" "1.0.0"
+ dependencies:
+ "escape-string-regexp" "^1.0.2"
+
+"ts-jest@^27.1.3":
+ "integrity" "sha512-6Nlura7s6uM9BVUAoqLH7JHyMXjz8gluryjpPXxr3IxZdAXnU6FhjvVLHFtfd1vsE1p8zD1OJfskkc0jhTSnkA=="
+ "resolved" "https://npm.apple.com/ts-jest/-/ts-jest-27.1.3.tgz"
+ "version" "27.1.3"
+ dependencies:
+ "bs-logger" "0.x"
+ "fast-json-stable-stringify" "2.x"
+ "jest-util" "^27.0.0"
+ "json5" "2.x"
+ "lodash.memoize" "4.x"
+ "make-error" "1.x"
+ "semver" "7.x"
+ "yargs-parser" "20.x"
+
+"tslib@*", "tslib@^2.3.1":
+ "integrity" "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw== sha1-6KM1rdXOrlGqJh0ypJAVjvBC7wE="
+ "resolved" "https://npm.apple.com/tslib/-/tslib-2.3.1.tgz"
+ "version" "2.3.1"
+
+"tslib@^1.8.1":
+ "integrity" "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== sha1-zy04vcNKE0vK8QkcQfZhni9nLQA="
+ "resolved" "https://npm.apple.com/tslib/-/tslib-1.14.1.tgz"
+ "version" "1.14.1"
+
+"tsutils@^3.21.0":
+ "integrity" "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA== sha1-tIcX05TOpsHglpg+7Vjp1hcVtiM="
+ "resolved" "https://npm.apple.com/tsutils/-/tsutils-3.21.0.tgz"
+ "version" "3.21.0"
+ dependencies:
+ "tslib" "^1.8.1"
+
+"type-check@^0.4.0", "type-check@~0.4.0":
+ "integrity" "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew== sha1-B7ggO/pwVsBlcFDjzNLDdzC6uPE="
+ "resolved" "https://npm.apple.com/type-check/-/type-check-0.4.0.tgz"
+ "version" "0.4.0"
+ dependencies:
+ "prelude-ls" "^1.2.1"
+
+"type-check@~0.3.2":
+ "integrity" "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I="
+ "resolved" "https://npm.apple.com/type-check/-/type-check-0.3.2.tgz"
+ "version" "0.3.2"
+ dependencies:
+ "prelude-ls" "~1.1.2"
+
+"type-detect@4.0.8":
+ "integrity" "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g=="
+ "resolved" "https://npm.apple.com/type-detect/-/type-detect-4.0.8.tgz"
+ "version" "4.0.8"
+
+"type-fest@^0.20.2":
+ "integrity" "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ=="
+ "resolved" "https://npm.apple.com/type-fest/-/type-fest-0.20.2.tgz"
+ "version" "0.20.2"
+
+"type-fest@^0.21.3":
+ "integrity" "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w=="
+ "resolved" "https://npm.apple.com/type-fest/-/type-fest-0.21.3.tgz"
+ "version" "0.21.3"
+
+"typedarray-to-buffer@^3.1.5":
+ "integrity" "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q=="
+ "resolved" "https://npm.apple.com/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz"
+ "version" "3.1.5"
+ dependencies:
+ "is-typedarray" "^1.0.0"
+
+"typescript@*", "typescript@^3.9.5 || ^4.0.0", "typescript@^4.6.2", "typescript@>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta", "typescript@>=3.7.0", "typescript@>=3.8 <5.0":
+ "integrity" "sha512-HM/hFigTBHZhLXshn9sN37H085+hQGeJHJ/X7LpBWLID/fbc2acUMfU+lGD98X81sKP+pFa9f0DZmCwB9GnbAg=="
+ "resolved" "https://npm.apple.com/typescript/-/typescript-4.6.2.tgz"
+ "version" "4.6.2"
+
+"unbox-primitive@^1.0.1":
+ "integrity" "sha512-tZU/3NqK3dA5gpE1KtyiJUrEB0lxnGkMFHptJ7q6ewdZ8s12QrODwNbhIJStmJkd1QDXa1NRA8aF2A1zk/Ypyw== sha1-CF4hViXsMWJXTciFmr7nilmxRHE="
+ "resolved" "https://npm.apple.com/unbox-primitive/-/unbox-primitive-1.0.1.tgz"
+ "version" "1.0.1"
+ dependencies:
+ "function-bind" "^1.1.1"
+ "has-bigints" "^1.0.1"
+ "has-symbols" "^1.0.2"
+ "which-boxed-primitive" "^1.0.2"
+
+"uniq@^1.0.0":
+ "integrity" "sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8="
+ "resolved" "https://npm.apple.com/uniq/-/uniq-1.0.1.tgz"
+ "version" "1.0.1"
+
+"universalify@^0.1.0", "universalify@^0.1.2":
+ "integrity" "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg== sha1-tkb2m+OULavOzJ1mOcgNwQXvqmY="
+ "resolved" "https://npm.apple.com/universalify/-/universalify-0.1.2.tgz"
+ "version" "0.1.2"
+
+"uri-js@^4.2.2":
+ "integrity" "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg=="
+ "resolved" "https://npm.apple.com/uri-js/-/uri-js-4.4.1.tgz"
+ "version" "4.4.1"
+ dependencies:
+ "punycode" "^2.1.0"
+
+"v8-compile-cache@^2.0.3":
+ "integrity" "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA== sha1-LeGWGMZtwkfc+2+ZM4A12CRaLO4="
+ "resolved" "https://npm.apple.com/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz"
+ "version" "2.3.0"
+
+"v8-to-istanbul@^8.1.0":
+ "integrity" "sha512-FGtKtv3xIpR6BYhvgH8MI/y78oT7d8Au3ww4QIxymrCtZEh5b8gCw2siywE+puhEmuWKDtmfrvF5UlB298ut3w=="
+ "resolved" "https://npm.apple.com/v8-to-istanbul/-/v8-to-istanbul-8.1.1.tgz"
+ "version" "8.1.1"
+ dependencies:
+ "@types/istanbul-lib-coverage" "^2.0.1"
+ "convert-source-map" "^1.6.0"
+ "source-map" "^0.7.3"
+
+"validate-npm-package-license@^3.0.1":
+ "integrity" "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew== sha1-/JH2uce6FchX9MssXe/uw51PQQo="
+ "resolved" "https://npm.apple.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz"
+ "version" "3.0.4"
+ dependencies:
+ "spdx-correct" "^3.0.0"
+ "spdx-expression-parse" "^3.0.0"
+
+"vega-scale@^7.1.1":
+ "integrity" "sha512-yE0to0prA9E5PBJ/XP77TO0BMkzyUVyt7TH5PAwj+CZT7PMsMO6ozihelRhoIiVcP0Ae/ByCEQBUQkzN5zJ0ZA== sha1-tpo40ZgPb8EJM5D3luVWvmP9yAg="
+ "resolved" "https://npm.apple.com/vega-scale/-/vega-scale-7.1.1.tgz"
+ "version" "7.1.1"
+ dependencies:
+ "d3-array" "^2.7.1"
+ "d3-interpolate" "^2.0.1"
+ "d3-scale" "^3.2.2"
+ "vega-time" "^2.0.4"
+ "vega-util" "^1.15.2"
+
+"vega-time@^2.0.4":
+ "integrity" "sha512-U314UDR9+ZlWrD3KBaeH+j/c2WSMdvcZq5yJfFT0yTg1jsBKAQBYFGvl+orackD8Zx3FveHOxx3XAObaQeDX+Q== sha1-/zCDWKgx3pJ8qkTigc3Jbwhjugg="
+ "resolved" "https://npm.apple.com/vega-time/-/vega-time-2.0.4.tgz"
+ "version" "2.0.4"
+ dependencies:
+ "d3-array" "^2.7.1"
+ "d3-time" "^2.0.0"
+ "vega-util" "^1.15.2"
+
+"vega-util@^1.15.2":
+ "integrity" "sha512-HTaydZd9De3yf+8jH66zL4dXJ1d1p5OIFyoBzFiOli4IJbwkL1jrefCKz6AHDm1kYBzDJ0X4bN+CzZSCTvNk1w== sha1-tyrguql/lDv1kfj1uyfOrfBoNKw="
+ "resolved" "https://npm.apple.com/vega-util/-/vega-util-1.17.0.tgz"
+ "version" "1.17.0"
+
+"vscode-json-languageservice@^4.1.6":
+ "integrity" "sha512-IHliMEEYSY0tJjJt0ECb8ESx/nRXpoy9kN42WVQXgaqGyizFAf3jibSiezDQTrrY7f3kywXggCU+kkJEM+OLZQ== sha1-XVcp/E8+AvQVmeAQRSOhh3wl8Ps="
+ "resolved" "https://npm.apple.com/vscode-json-languageservice/-/vscode-json-languageservice-4.1.10.tgz"
+ "version" "4.1.10"
+ dependencies:
+ "jsonc-parser" "^3.0.0"
+ "vscode-languageserver-textdocument" "^1.0.1"
+ "vscode-languageserver-types" "^3.16.0"
+ "vscode-nls" "^5.0.0"
+ "vscode-uri" "^3.0.2"
+
+"vscode-languageserver-textdocument@^1.0.1":
+ "integrity" "sha512-ynEGytvgTb6HVSUwPJIAZgiHQmPCx8bZ8w5um5Lz+q5DjP0Zj8wTFhQpyg8xaMvefDytw2+HH5yzqS+FhsR28A== sha1-h58mSb+lpuB7yLOSwj7eLfv0Pv8="
+ "resolved" "https://npm.apple.com/vscode-languageserver-textdocument/-/vscode-languageserver-textdocument-1.0.3.tgz"
+ "version" "1.0.3"
+
+"vscode-languageserver-types@^3.16.0":
+ "integrity" "sha512-k8luDIWJWyenLc5ToFQQMaSrqCHiLwyKPHKPQZ5zz21vM+vIVUSvsRpcbiECH4WR88K2XZqc4ScRcZ7nk/jbeA== sha1-7POT/BIexpdLLaPvsxVWRMUU4kc="
+ "resolved" "https://npm.apple.com/vscode-languageserver-types/-/vscode-languageserver-types-3.16.0.tgz"
+ "version" "3.16.0"
+
+"vscode-nls@^5.0.0":
+ "integrity" "sha512-u0Lw+IYlgbEJFF6/qAqG2d1jQmJl0eyAGJHoAJqr2HT4M2BNuQYSEiSE75f52pXHSJm8AlTjnLLbBFPrdz2hpA== sha1-mfDaC9nqfNpE5WWnTFSx8rwleEA="
+ "resolved" "https://npm.apple.com/vscode-nls/-/vscode-nls-5.0.0.tgz"
+ "version" "5.0.0"
+
+"vscode-uri@^3.0.2":
+ "integrity" "sha512-EcswR2S8bpR7fD0YPeS7r2xXExrScVMxg4MedACaWHEtx9ftCF/qHG1xGkolzTPcEmjTavCQgbVzHUIdTMzFGA== sha1-qVwc4ub0G3VJ+GJ50Z9HlR5PTYQ="
+ "resolved" "https://npm.apple.com/vscode-uri/-/vscode-uri-3.0.3.tgz"
+ "version" "3.0.3"
+
+"w3c-hr-time@^1.0.2":
+ "integrity" "sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ=="
+ "resolved" "https://npm.apple.com/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz"
+ "version" "1.0.2"
+ dependencies:
+ "browser-process-hrtime" "^1.0.0"
+
+"w3c-xmlserializer@^2.0.0":
+ "integrity" "sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA=="
+ "resolved" "https://npm.apple.com/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz"
+ "version" "2.0.0"
+ dependencies:
+ "xml-name-validator" "^3.0.0"
+
+"walker@^1.0.7":
+ "integrity" "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ=="
+ "resolved" "https://npm.apple.com/walker/-/walker-1.0.8.tgz"
+ "version" "1.0.8"
+ dependencies:
+ "makeerror" "1.0.12"
+
+"webidl-conversions@^5.0.0":
+ "integrity" "sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA=="
+ "resolved" "https://npm.apple.com/webidl-conversions/-/webidl-conversions-5.0.0.tgz"
+ "version" "5.0.0"
+
+"webidl-conversions@^6.1.0":
+ "integrity" "sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w=="
+ "resolved" "https://npm.apple.com/webidl-conversions/-/webidl-conversions-6.1.0.tgz"
+ "version" "6.1.0"
+
+"whatwg-encoding@^1.0.5":
+ "integrity" "sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw=="
+ "resolved" "https://npm.apple.com/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz"
+ "version" "1.0.5"
+ dependencies:
+ "iconv-lite" "0.4.24"
+
+"whatwg-mimetype@^2.3.0":
+ "integrity" "sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g=="
+ "resolved" "https://npm.apple.com/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz"
+ "version" "2.3.0"
+
+"whatwg-url@^8.0.0", "whatwg-url@^8.5.0":
+ "integrity" "sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg=="
+ "resolved" "https://npm.apple.com/whatwg-url/-/whatwg-url-8.7.0.tgz"
+ "version" "8.7.0"
+ dependencies:
+ "lodash" "^4.7.0"
+ "tr46" "^2.1.0"
+ "webidl-conversions" "^6.1.0"
+
+"which-boxed-primitive@^1.0.2":
+ "integrity" "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg== sha1-E3V7yJsgmwSf5dhkMOIc9AqJqOY="
+ "resolved" "https://npm.apple.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz"
+ "version" "1.0.2"
+ dependencies:
+ "is-bigint" "^1.0.1"
+ "is-boolean-object" "^1.1.0"
+ "is-number-object" "^1.0.4"
+ "is-string" "^1.0.5"
+ "is-symbol" "^1.0.3"
+
+"which@^1.2.9":
+ "integrity" "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== sha1-pFBD1U9YBTFtqNYvn1CRjT2nCwo="
+ "resolved" "https://npm.apple.com/which/-/which-1.3.1.tgz"
+ "version" "1.3.1"
+ dependencies:
+ "isexe" "^2.0.0"
+
+"which@^2.0.1":
+ "integrity" "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== sha1-fGqN0KY2oDJ+ELWckobu6T8/UbE="
+ "resolved" "https://npm.apple.com/which/-/which-2.0.2.tgz"
+ "version" "2.0.2"
+ dependencies:
+ "isexe" "^2.0.0"
+
+"word-wrap@^1.2.3", "word-wrap@~1.2.3":
+ "integrity" "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== sha1-YQY29rH3A4kb00dxzLF/uTtHB5w="
+ "resolved" "https://npm.apple.com/word-wrap/-/word-wrap-1.2.3.tgz"
+ "version" "1.2.3"
+
+"wrap-ansi@^7.0.0":
+ "integrity" "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q=="
+ "resolved" "https://npm.apple.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz"
+ "version" "7.0.0"
+ dependencies:
+ "ansi-styles" "^4.0.0"
+ "string-width" "^4.1.0"
+ "strip-ansi" "^6.0.0"
+
+"wrappy@1":
+ "integrity" "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8="
+ "resolved" "https://npm.apple.com/wrappy/-/wrappy-1.0.2.tgz"
+ "version" "1.0.2"
+
+"write-file-atomic@^3.0.0":
+ "integrity" "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q=="
+ "resolved" "https://npm.apple.com/write-file-atomic/-/write-file-atomic-3.0.3.tgz"
+ "version" "3.0.3"
+ dependencies:
+ "imurmurhash" "^0.1.4"
+ "is-typedarray" "^1.0.0"
+ "signal-exit" "^3.0.2"
+ "typedarray-to-buffer" "^3.1.5"
+
+"ws@^7.4.3", "ws@^7.4.6":
+ "integrity" "sha512-6GLgCqo2cy2A2rjCNFlxQS6ZljG/coZfZXclldI8FB/1G3CCI36Zd8xy2HrFVACi8tfk5XrgLQEk+P0Tnz9UcA== sha1-5Z/FCfsV3ftlSH7pdlxaUd7F/ns="
+ "resolved" "https://npm.apple.com/ws/-/ws-7.5.6.tgz"
+ "version" "7.5.6"
+
+"xml-name-validator@^3.0.0":
+ "integrity" "sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw=="
+ "resolved" "https://npm.apple.com/xml-name-validator/-/xml-name-validator-3.0.0.tgz"
+ "version" "3.0.0"
+
+"xmlchars@^2.2.0":
+ "integrity" "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw=="
+ "resolved" "https://npm.apple.com/xmlchars/-/xmlchars-2.2.0.tgz"
+ "version" "2.2.0"
+
+"y18n@^5.0.5":
+ "integrity" "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA=="
+ "resolved" "https://npm.apple.com/y18n/-/y18n-5.0.8.tgz"
+ "version" "5.0.8"
+
+"yallist@^4.0.0":
+ "integrity" "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== sha1-m7knkNnA7/7GO+c1GeEaNQGaOnI="
+ "resolved" "https://npm.apple.com/yallist/-/yallist-4.0.0.tgz"
+ "version" "4.0.0"
+
+"yargs-parser@^20.2.2", "yargs-parser@20.x":
+ "integrity" "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w== sha1-LrfcOwKJcY/ClfNidThFxBoMlO4="
+ "resolved" "https://npm.apple.com/yargs-parser/-/yargs-parser-20.2.9.tgz"
+ "version" "20.2.9"
+
+"yargs@^16.2.0":
+ "integrity" "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw=="
+ "resolved" "https://npm.apple.com/yargs/-/yargs-16.2.0.tgz"
+ "version" "16.2.0"
+ dependencies:
+ "cliui" "^7.0.2"
+ "escalade" "^3.1.1"
+ "get-caller-file" "^2.0.5"
+ "require-directory" "^2.1.1"
+ "string-width" "^4.2.0"
+ "y18n" "^5.0.5"
+ "yargs-parser" "^20.2.2"